diff --git a/blocks/class-blockstrap-widget-contact.php b/blocks/class-blockstrap-widget-contact.php index cc55f4a..69eb9b1 100644 --- a/blocks/class-blockstrap-widget-contact.php +++ b/blocks/class-blockstrap-widget-contact.php @@ -53,7 +53,7 @@ className: '', 'groups' => array( __( 'Background', 'blockstrap-page-builder-blocks' ), __( 'Button', 'blockstrap-page-builder-blocks' ), - __( 'Field Styles', 'blockstrap-page-builder-blocks' ) + __( 'Field Styles', 'blockstrap-page-builder-blocks' ), ), 'tab' => array( 'title' => __( 'Styles', 'blockstrap-page-builder-blocks' ), @@ -208,8 +208,8 @@ public function set_arguments() { 'group' => __( 'Fields', 'blockstrap-page-builder-blocks' ), ); -// $keys = get_option('blockstrap_recaptcha_keys'); -// if() + // $keys = get_option('blockstrap_recaptcha_keys'); + // if() $arguments['recaptcha_notice'] = array( 'type' => 'notice', 'desc' => __( 'Set your keys under Appearances > Theme Setup > Recaptcha Keys', 'blockstrap-page-builder-blocks' ), @@ -255,6 +255,18 @@ public function set_arguments() { 'group' => __( 'Email', 'blockstrap-page-builder-blocks' ), ); + $arguments['newsletter'] = array( + 'type' => 'select', + 'title' => __( 'Newsletter Subscribe', 'blockstrap-page-builder-blocks' ), + 'options' => array( + '0' => __( 'No', 'blockstrap-page-builder-blocks' ), + 'noptin' => defined( 'NOPTIN_VERIFY_NONCE' ) ? __( 'Noptin', 'blockstrap-page-builder-blocks' ) : __( 'Noptin (plugin needs to be installed)', 'blockstrap-page-builder-blocks' ), + ), + 'default' => '0', + 'desc_tip' => true, + 'group' => __( 'Email', 'blockstrap-page-builder-blocks' ), + ); + $arguments['sent_message'] = array( 'type' => 'text', 'title' => __( 'Sent message', 'blockstrap-page-builder-blocks' ), @@ -287,12 +299,10 @@ public function set_arguments() { // 'element_require' => '[%icon_class%]!=""', // ); + // background + $arguments = $arguments + sd_get_background_inputs( 'bg' ); - // background - $arguments = $arguments + sd_get_background_inputs( 'bg' ); - - - // button styles + // button styles $arguments['link_type'] = array( 'type' => 'select', 'title' => __( 'Link style', 'blockstrap-page-builder-blocks' ), @@ -482,6 +492,19 @@ public function set_arguments() { 'group' => __( 'Field Styles', 'blockstrap-page-builder-blocks' ), ); + $arguments['field_layout'] = array( + 'type' => 'select', + 'title' => __( 'Layout', 'blockstrap-page-builder-blocks' ), + 'options' => array( + '' => __( 'Vertical', 'blockstrap-page-builder-blocks' ), + 'horizontal' => __( 'Horizontal (use with fewer fields)', 'blockstrap-page-builder-blocks' ), + ), + 'default' => '', + 'desc_tip' => true, + 'group' => __( 'Field Styles', 'blockstrap-page-builder-blocks' ), + 'element_require' => '[%display%]==""', + ); + // Typography // // custom font size // $arguments['font_size_custom'] = sd_get_font_custom_size_input(); @@ -606,8 +629,9 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) $link_text = __( 'Send', 'blockstrap-page-builder-blocks' ); // maybe set custom link text - $link_text = ! empty( $args['email_submit_text'] ) ? esc_attr( $args['email_submit_text'] ) : $link_text; - $is_lightbox = ! empty( $args['display'] ); + $link_text = ! empty( $args['email_submit_text'] ) ? esc_attr( $args['email_submit_text'] ) : $link_text; + $is_lightbox = ! empty( $args['display'] ); + $is_horizontal = ! empty( $args['field_layout'] ) && 'horizontal' === $args['field_layout']; // echo '###'.$link_text; @@ -732,6 +756,8 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) ), ); + $form_hz_col_class = ! $is_lightbox && $is_horizontal ? ' col' : ''; + foreach ( $field_types as $field_slug => $field ) { if ( 'hide' !== $args[ $field_slug ] ) { @@ -754,6 +780,7 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) 'placeholder' => empty( $args['display_labels'] ) ? $label . $required : '', 'size' => ! empty( $args['field_size'] ) ? $args['field_size'] : '', 'rows' => ! empty( $args['textarea_rows'] ) ? $args['textarea_rows'] : '4', + 'wrap_class' => $form_hz_col_class, ) ); } @@ -764,7 +791,7 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) if ( defined( 'BLOCKSTRAP_VERSION' ) && empty( $args['field_recaptcha'] ) ) { $keys = get_option( 'blockstrap_recaptcha_keys' ); if ( ! empty( $keys['site_key'] ) && ! empty( $keys['site_secret'] ) ) { - $field_content .= '
'; + $field_content .= '
'; $recaptcha_enabled = true; //if(!$is_lightbox){ add_action( 'wp_footer', array( $this, 'get_recaptcha_js' ) ); @@ -778,6 +805,7 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) $subject = esc_attr( $args['email_name'] ); $sent_message = ! empty( $args['sent_message'] ) ? esc_attr( $args['sent_message'] ) : __( 'Thanks for your email, we will get back to you shortly!', 'blockstrap-page-builder-blocks' ); $send_to = ! empty( $args['send_to'] ) ? esc_attr( $args['send_to'] ) : 'site'; + $newsletter = ! empty( $args['newsletter'] ) ? esc_attr( $args['newsletter'] ) : '0'; $send_bcc = esc_attr( $args['send_bcc'] ); $post_id = ! empty( $post->ID ) ? absint( $post->ID ) : 0; @@ -788,19 +816,22 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) (string) esc_attr( $subject ), (string) absint( $post_id ), (string) absint( $recaptcha_enabled ), + (string) esc_attr( $newsletter ), ); $lightbox_id = ! empty( $args['lightbox_id'] ) ? esc_attr( sanitize_title_with_dashes( $args['lightbox_id'] ) ) : 'contact-form'; $form_html = ''; + $lightbox_html = ''; + $button_html = ''; $preview_click = $this->is_preview() ? ' onclick="alert(\'' . esc_html__( 'This is a preview, please test on the frontend.', 'blockstrap-page-builder-blocks' ) . '\');return false;" ' : ''; if ( $is_lightbox ) { - $button_text = ! empty( $args['lightbox_button_text'] ) ? esc_attr( $args['lightbox_button_text'] ) : __( 'Contact form', 'blockstrap-page-builder-blocks' ); - $modal_title = ! empty( $args['lightbox_title'] ) ? esc_attr( $args['lightbox_title'] ) : __( 'Contact form', 'blockstrap-page-builder-blocks' ); - $form_html .= '
'; + $button_text = ! empty( $args['lightbox_button_text'] ) ? esc_attr( $args['lightbox_button_text'] ) : __( 'Contact form', 'blockstrap-page-builder-blocks' ); + $modal_title = ! empty( $args['lightbox_title'] ) ? esc_attr( $args['lightbox_title'] ) : __( 'Contact form', 'blockstrap-page-builder-blocks' ); + $button_html .= '
'; if ( 'lightbox-link' === $args['display'] ) { - $form_html .= $this->is_preview() ? aui()->alert( + $button_html .= $this->is_preview() ? aui()->alert( array( 'type' => 'info', 'content' => sprintf( __( 'This is a placeholder for the lightbox for contact form: %s', 'blockstrap-page-builder-blocks' ), esc_attr( $args['lightbox_id'] ) ), @@ -809,11 +840,12 @@ public function output( $args = array(), $widget_args = array(), $content = '' ) ) : ''; } else { - $form_html .= $preview_click ? '' : ''; + $button_html .= $preview_click ? '' : ''; } - $form_html .= '
'; + $button_html .= '
'; $recaptcha_class = $recaptcha_enabled ? 'bspbb-contact-form-recaptcha-lightbox' : ''; - $form_html .= '"),s=t.children()[0];j("body").append(t);e=s.offsetWidth;t.css("overflow","scroll");a=s.offsetWidth;if(e===a){a=t[0].clientWidth}t.remove();return r=e-a},getScrollInfo:function(e){var a=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),t=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),s=a==="scroll"||a==="auto"&&e.width0?"right":"center",vertical:r<0?"top":s>0?"bottom":"middle"};if(py(x(s),x(r))){i.important="horizontal"}else{i.important="vertical"}h.using.call(this,e,i)}}f.offset(j.extend(o,{using:e}))})};j.ui.pos={_trigger:function(e,a,t,s){if(a.elem){a.elem.trigger({type:t,position:e,positionData:a,triggered:s})}},fit:{left:function(e,a){j.ui.pos._trigger(e,a,"posCollide","fitLeft");var t=a.within,s=t.isWindow?t.scrollLeft:t.offset.left,r=t.width,i=e.left-a.collisionPosition.marginLeft,f=s-i,l=i+a.collisionWidth-r-s,c;if(a.collisionWidth>r){if(f>0&&l<=0){c=e.left+f+a.collisionWidth-r-s;e.left+=f-c}else if(l>0&&f<=0){e.left=s}else{if(f>l){e.left=s+r-a.collisionWidth}else{e.left=s}}}else if(f>0){e.left+=f}else if(l>0){e.left-=l}else{e.left=y(e.left-i,e.left)}j.ui.pos._trigger(e,a,"posCollided","fitLeft")},top:function(e,a){j.ui.pos._trigger(e,a,"posCollide","fitTop");var t=a.within,s=t.isWindow?t.scrollTop:t.offset.top,r=a.within.height,i=e.top-a.collisionPosition.marginTop,f=s-i,l=i+a.collisionHeight-r-s,c;if(a.collisionHeight>r){if(f>0&&l<=0){c=e.top+f+a.collisionHeight-r-s;e.top+=f-c}else if(l>0&&f<=0){e.top=s}else{if(f>l){e.top=s+r-a.collisionHeight}else{e.top=s}}}else if(f>0){e.top+=f}else if(l>0){e.top-=l}else{e.top=y(e.top-i,e.top)}j.ui.pos._trigger(e,a,"posCollided","fitTop")}},flip:{left:function(e,a){j.ui.pos._trigger(e,a,"posCollide","flipLeft");var t=a.within,s=t.offset.left+t.scrollLeft,r=t.width,i=t.isWindow?t.scrollLeft:t.offset.left,f=e.left-a.collisionPosition.marginLeft,l=f-i,c=f+a.collisionWidth-r-i,o=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,n=a.at[0]==="left"?a.targetWidth:a.at[0]==="right"?-a.targetWidth:0,h=-2*a.offset[0],m,p;if(l<0){m=e.left+o+n+h+a.collisionWidth-r-s;if(m<0||m0){p=e.left-a.collisionPosition.marginLeft+o+n+h-i;if(p>0||x(p)0){p=e.top-a.collisionPosition.marginTop+n+h+m-i;if(p>0||x(p)10&&s<11;e.innerHTML="";a.removeChild(e)})()})();var a=j.ui.position});(function(e){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],e)}else if(window.jQuery&&!window.jQuery.fn.iconpicker){e(window.jQuery)}})(function(c){"use strict";var f={isEmpty:function(e){return e===false||e===""||e===null||e===undefined},isEmptyObject:function(e){return this.isEmpty(e)===true||e.length===0},isElement:function(e){return c(e).length>0},isString:function(e){return typeof e==="string"||e instanceof String},isArray:function(e){return c.isArray(e)},inArray:function(e,a){return c.inArray(e,a)!==-1},throwError:function(e){throw"Font Awesome Icon Picker Exception: "+e}};var t=function(e,a){this._id=t._idCounter++;this.element=c(e).addClass("iconpicker-element");this._trigger("iconpickerCreate",{iconpickerValue:this.iconpickerValue});this.options=c.extend({},t.defaultOptions,this.element.data(),a);this.options.templates=c.extend({},t.defaultOptions.templates,this.options.templates);this.options.originalPlacement=this.options.placement;this.container=f.isElement(this.options.container)?c(this.options.container):false;if(this.container===false){if(this.element.is(".dropdown-toggle")){this.container=c("~ .dropdown-menu:first",this.element)}else{this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element}}this.container.addClass("iconpicker-container");if(this.isDropdownMenu()){this.options.placement="inline"}this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):false;if(this.input===false){this.input=this.container.find(this.options.input);if(!this.input.is("input,textarea")){this.input=false}}this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component);if(this.component.length===0){this.component=false}else{this.component.find("i").addClass("iconpicker-component")}this._createPopover();this._createIconpicker();if(this.getAcceptButton().length===0){this.options.mustAccept=false}if(this.isInputGroup()){this.container.parent().append(this.popover)}else{this.container.append(this.popover)}this._bindElementEvents();this._bindWindowEvents();this.update(this.options.selected);if(this.isInline()){this.show()}this._trigger("iconpickerCreated",{iconpickerValue:this.iconpickerValue})};t._idCounter=0;t.defaultOptions={title:false,selected:false,defaultValue:false,placement:"bottom",collision:"none",animation:true,hideOnSelect:false,showFooter:false,searchInFooter:false,mustAccept:false,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(e){return e},input:"input,.iconpicker-input",inputSearch:false,container:false,component:".input-group-addon,.iconpicker-component",templates:{popover:'
'+'
',footer:'',buttons:''+' ',search:'',iconpicker:'
',iconpickerItem:''}};t.batch=function(e,a){var t=Array.prototype.slice.call(arguments,2);return c(e).each(function(){var e=c(this).data("iconpicker");if(!!e){e[a].apply(e,t)}})};t.prototype={constructor:t,options:{},_id:0,_trigger:function(e,a){a=a||{};this.element.trigger(c.extend({type:e,iconpickerInstance:this},a))},_createPopover:function(){this.popover=c(this.options.templates.popover);var e=this.popover.find(".popover-title");if(!!this.options.title){e.append(c('
'+this.options.title+"
"))}if(this.hasSeparatedSearchInput()&&!this.options.searchInFooter){e.append(this.options.templates.search)}else if(!this.options.title){e.remove()}if(this.options.showFooter&&!f.isEmpty(this.options.templates.footer)){var a=c(this.options.templates.footer);if(this.hasSeparatedSearchInput()&&this.options.searchInFooter){a.append(c(this.options.templates.search))}if(!f.isEmpty(this.options.templates.buttons)){a.append(c(this.options.templates.buttons))}this.popover.append(a)}if(this.options.animation===true){this.popover.addClass("fade")}return this.popover},_createIconpicker:function(){var t=this;this.iconpicker=c(this.options.templates.iconpicker);var e=function(e){var a=c(this);if(a.is("i")){a=a.parent()}t._trigger("iconpickerSelect",{iconpickerItem:a,iconpickerValue:t.iconpickerValue});if(t.options.mustAccept===false){t.update(a.data("iconpickerValue"));t._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:t.iconpickerValue})}else{t.update(a.data("iconpickerValue"),true)}if(t.options.hideOnSelect&&t.options.mustAccept===false){t.hide()}};var a=c(this.options.templates.iconpickerItem);var s=[];for(var r in this.options.icons){if(typeof this.options.icons[r].title==="string"){var i=a.clone();i.find("i").addClass(this.options.fullClassFormatter(this.options.icons[r].title));i.data("iconpickerValue",this.options.icons[r].title).on("click.iconpicker",e);i.attr("title","."+this.options.icons[r].title);if(this.options.icons[r].searchTerms.length>0){var f="";for(var l=0;l0){e.attr("class",this.options.fullClassFormatter(this.iconpickerValue))}else{this.component.html(this.getHtml())}}},_updateFormGroupStatus:function(e){if(this.hasInput()){if(e!==false){this.input.parents(".form-group:first").removeClass("has-error")}else{this.input.parents(".form-group:first").addClass("has-error")}return true}return false},getValid:function(e){if(!f.isString(e)){e=""}var a=e==="";e=c.trim(e);var t=false;for(var s=0;s'},setSourceValue:function(e){e=this.setValue(e);if(e!==false&&e!==""){if(this.hasInput()){this.input.val(this.iconpickerValue)}else{this.element.data("iconpickerValue",this.iconpickerValue)}this._trigger("iconpickerSetSourceValue",{iconpickerValue:e})}return e},getSourceValue:function(e){e=e||this.options.defaultValue;var a=e;if(this.hasInput()){a=this.input.val()}else{a=this.element.data("iconpickerValue")}if(a===undefined||a===""||a===null||a===false){a=e}return a},hasInput:function(){return this.input!==false},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===true},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==false&&!this.isInputSearch()},hasComponent:function(){return this.component!==false},hasContainer:function(){return this.container!==false},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(r){if(f.isEmpty(r)){this.iconpicker.find(".iconpicker-item").show();return c(false)}else{var i=[];this.iconpicker.find(".iconpicker-item").each(function(){var e=c(this);var a=e.attr("title").toLowerCase();var t=e.attr("data-search-terms")?e.attr("data-search-terms").toLowerCase():"";a=a+" "+t;var s=false;try{s=new RegExp("(^|\\W)"+r,"g")}catch(e){s=false}if(s!==false&&a.match(s)){i.push(e);e.show()}else{e.hide()}});return i}},show:function(){if(this.popover.hasClass("in")){return false}c.iconpicker.batch(c(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide");this._trigger("iconpickerShow",{iconpickerValue:this.iconpickerValue});this.updatePlacement();this.popover.addClass("in");setTimeout(c.proxy(function(){this.popover.css("display",this.isInline()?"":"block");this._trigger("iconpickerShown",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},hide:function(){if(!this.popover.hasClass("in")){return false}this._trigger("iconpickerHide",{iconpickerValue:this.iconpickerValue});this.popover.removeClass("in");setTimeout(c.proxy(function(){this.popover.css("display","none");this.getSearchInput().val("");this.filter("");this._trigger("iconpickerHidden",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},toggle:function(){if(this.popover.is(":visible")){this.hide()}else{this.show(true)}},update:function(e,a){e=e?e:this.getSourceValue(this.iconpickerValue);this._trigger("iconpickerUpdate",{iconpickerValue:this.iconpickerValue});if(a===true){e=this.setValue(e)}else{e=this.setSourceValue(e);this._updateFormGroupStatus(e!==false)}if(e!==false){this._updateComponents()}this._trigger("iconpickerUpdated",{iconpickerValue:this.iconpickerValue});return e},destroy:function(){this._trigger("iconpickerDestroy",{iconpickerValue:this.iconpickerValue});this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");this._unbindElementEvents();this._unbindWindowEvents();c(this.popover).remove();this._trigger("iconpickerDestroyed",{iconpickerValue:this.iconpickerValue})},disable:function(){if(this.hasInput()){this.input.prop("disabled",true);return true}return false},enable:function(){if(this.hasInput()){this.input.prop("disabled",false);return true}return false},isDisabled:function(){if(this.hasInput()){return this.input.prop("disabled")===true}return false},isInline:function(){return this.options.placement==="inline"||this.popover.hasClass("inline")}};c.iconpicker=t;c.fn.iconpicker=function(a){return this.each(function(){var e=c(this);if(!e.data("iconpicker")){e.data("iconpicker",new t(this,typeof a==="object"?a:{}))}})};t.defaultOptions=c.extend(t.defaultOptions,{icons:[{title:"fab fa-500px",searchTerms:[]},{title:"fab fa-accessible-icon",searchTerms:["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{title:"fab fa-accusoft",searchTerms:[]},{title:"fab fa-acquisitions-incorporated",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-ad",searchTerms:[]},{title:"fas fa-address-book",searchTerms:[]},{title:"far fa-address-book",searchTerms:[]},{title:"fas fa-address-card",searchTerms:[]},{title:"far fa-address-card",searchTerms:[]},{title:"fas fa-adjust",searchTerms:["contrast"]},{title:"fab fa-adn",searchTerms:[]},{title:"fab fa-adversal",searchTerms:[]},{title:"fab fa-affiliatetheme",searchTerms:[]},{title:"fas fa-air-freshener",searchTerms:[]},{title:"fab fa-algolia",searchTerms:[]},{title:"fas fa-align-center",searchTerms:["middle","text"]},{title:"fas fa-align-justify",searchTerms:["text"]},{title:"fas fa-align-left",searchTerms:["text"]},{title:"fas fa-align-right",searchTerms:["text"]},{title:"fab fa-alipay",searchTerms:[]},{title:"fas fa-allergies",searchTerms:["freckles","hand","intolerances","pox","spots"]},{title:"fab fa-amazon",searchTerms:[]},{title:"fab fa-amazon-pay",searchTerms:[]},{title:"fas fa-ambulance",searchTerms:["help","machine","support","vehicle"]},{title:"fas fa-american-sign-language-interpreting",searchTerms:[]},{title:"fab fa-amilia",searchTerms:[]},{title:"fas fa-anchor",searchTerms:["link"]},{title:"fab fa-android",searchTerms:["robot"]},{title:"fab fa-angellist",searchTerms:[]},{title:"fas fa-angle-double-down",searchTerms:["arrows"]},{title:"fas fa-angle-double-left",searchTerms:["arrows","back","laquo","previous","quote"]},{title:"fas fa-angle-double-right",searchTerms:["arrows","forward","next","quote","raquo"]},{title:"fas fa-angle-double-up",searchTerms:["arrows"]},{title:"fas fa-angle-down",searchTerms:["arrow"]},{title:"fas fa-angle-left",searchTerms:["arrow","back","previous"]},{title:"fas fa-angle-right",searchTerms:["arrow","forward","next"]},{title:"fas fa-angle-up",searchTerms:["arrow"]},{title:"fas fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"far fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"fab fa-angrycreative",searchTerms:[]},{title:"fab fa-angular",searchTerms:[]},{title:"fas fa-ankh",searchTerms:["amulet","copper","coptic christianity","copts","crux ansata","egyptian","venus"]},{title:"fab fa-app-store",searchTerms:[]},{title:"fab fa-app-store-ios",searchTerms:[]},{title:"fab fa-apper",searchTerms:[]},{title:"fab fa-apple",searchTerms:["food","fruit","mac","osx"]},{title:"fas fa-apple-alt",searchTerms:["fall","food","fruit","fuji","macintosh","seasonal"]},{title:"fab fa-apple-pay",searchTerms:[]},{title:"fas fa-archive",searchTerms:["box","package","storage"]},{title:"fas fa-archway",searchTerms:["arc","monument","road","street"]},{title:"fas fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"far fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"fas fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"far fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"fas fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"far fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"fas fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"far fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fas fa-arrow-circle-down",searchTerms:["download"]},{title:"fas fa-arrow-circle-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-circle-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-circle-up",searchTerms:[]},{title:"fas fa-arrow-down",searchTerms:["download"]},{title:"fas fa-arrow-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-up",searchTerms:[]},{title:"fas fa-arrows-alt",searchTerms:["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{title:"fas fa-arrows-alt-h",searchTerms:["arrows-h","resize"]},{title:"fas fa-arrows-alt-v",searchTerms:["arrows-v","resize"]},{title:"fas fa-assistive-listening-systems",searchTerms:[]},{title:"fas fa-asterisk",searchTerms:["details"]},{title:"fab fa-asymmetrik",searchTerms:[]},{title:"fas fa-at",searchTerms:["e-mail","email"]},{title:"fas fa-atlas",searchTerms:["book","directions","geography","map","wayfinding"]},{title:"fas fa-atom",searchTerms:["atheism","chemistry","science"]},{title:"fab fa-audible",searchTerms:[]},{title:"fas fa-audio-description",searchTerms:[]},{title:"fab fa-autoprefixer",searchTerms:[]},{title:"fab fa-avianex",searchTerms:[]},{title:"fab fa-aviato",searchTerms:[]},{title:"fas fa-award",searchTerms:["honor","praise","prize","recognition","ribbon"]},{title:"fab fa-aws",searchTerms:[]},{title:"fas fa-backspace",searchTerms:["command","delete","keyboard","undo"]},{title:"fas fa-backward",searchTerms:["previous","rewind"]},{title:"fas fa-balance-scale",searchTerms:["balanced","justice","legal","measure","weight"]},{title:"fas fa-ban",searchTerms:["abort","ban","block","cancel","delete","hide","prohibit","remove","stop","trash"]},{title:"fas fa-band-aid",searchTerms:["bandage","boo boo","ouch"]},{title:"fab fa-bandcamp",searchTerms:[]},{title:"fas fa-barcode",searchTerms:["scan"]},{title:"fas fa-bars",searchTerms:["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{title:"fas fa-baseball-ball",searchTerms:[]},{title:"fas fa-basketball-ball",searchTerms:[]},{title:"fas fa-bath",searchTerms:[]},{title:"fas fa-battery-empty",searchTerms:["power","status"]},{title:"fas fa-battery-full",searchTerms:["power","status"]},{title:"fas fa-battery-half",searchTerms:["power","status"]},{title:"fas fa-battery-quarter",searchTerms:["power","status"]},{title:"fas fa-battery-three-quarters",searchTerms:["power","status"]},{title:"fas fa-bed",searchTerms:["lodging","sleep","travel"]},{title:"fas fa-beer",searchTerms:["alcohol","bar","beverage","drink","liquor","mug","stein"]},{title:"fab fa-behance",searchTerms:[]},{title:"fab fa-behance-square",searchTerms:[]},{title:"fas fa-bell",searchTerms:["alert","notification","reminder"]},{title:"far fa-bell",searchTerms:["alert","notification","reminder"]},{title:"fas fa-bell-slash",searchTerms:[]},{title:"far fa-bell-slash",searchTerms:[]},{title:"fas fa-bezier-curve",searchTerms:["curves","illustrator","lines","path","vector"]},{title:"fas fa-bible",searchTerms:["book","catholicism","christianity"]},{title:"fas fa-bicycle",searchTerms:["bike","gears","transportation","vehicle"]},{title:"fab fa-bimobject",searchTerms:[]},{title:"fas fa-binoculars",searchTerms:[]},{title:"fas fa-birthday-cake",searchTerms:[]},{title:"fab fa-bitbucket",searchTerms:["bitbucket-square","git"]},{title:"fab fa-bitcoin",searchTerms:[]},{title:"fab fa-bity",searchTerms:[]},{title:"fab fa-black-tie",searchTerms:[]},{title:"fab fa-blackberry",searchTerms:[]},{title:"fas fa-blender",searchTerms:[]},{title:"fas fa-blender-phone",searchTerms:["appliance","fantasy","silly"]},{title:"fas fa-blind",searchTerms:[]},{title:"fab fa-blogger",searchTerms:[]},{title:"fab fa-blogger-b",searchTerms:[]},{title:"fab fa-bluetooth",searchTerms:[]},{title:"fab fa-bluetooth-b",searchTerms:[]},{title:"fas fa-bold",searchTerms:[]},{title:"fas fa-bolt",searchTerms:["electricity","lightning","weather","zap"]},{title:"fas fa-bomb",searchTerms:[]},{title:"fas fa-bone",searchTerms:[]},{title:"fas fa-bong",searchTerms:["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{title:"fas fa-book",searchTerms:["documentation","read"]},{title:"fas fa-book-dead",searchTerms:["Dungeons & Dragons","crossbones","d&d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","read","skull","spell"]},{title:"fas fa-book-open",searchTerms:["flyer","notebook","open book","pamphlet","reading"]},{title:"fas fa-book-reader",searchTerms:["library"]},{title:"fas fa-bookmark",searchTerms:["save"]},{title:"far fa-bookmark",searchTerms:["save"]},{title:"fas fa-bowling-ball",searchTerms:[]},{title:"fas fa-box",searchTerms:["package"]},{title:"fas fa-box-open",searchTerms:[]},{title:"fas fa-boxes",searchTerms:[]},{title:"fas fa-braille",searchTerms:[]},{title:"fas fa-brain",searchTerms:["cerebellum","gray matter","intellect","medulla oblongata","mind","noodle","wit"]},{title:"fas fa-briefcase",searchTerms:["bag","business","luggage","office","work"]},{title:"fas fa-briefcase-medical",searchTerms:["health briefcase"]},{title:"fas fa-broadcast-tower",searchTerms:["airwaves","radio","waves"]},{title:"fas fa-broom",searchTerms:["clean","firebolt","fly","halloween","holiday","nimbus 2000","quidditch","sweep","witch"]},{title:"fas fa-brush",searchTerms:["bristles","color","handle","painting"]},{title:"fab fa-btc",searchTerms:[]},{title:"fas fa-bug",searchTerms:["insect","report"]},{title:"fas fa-building",searchTerms:["apartment","business","company","office","work"]},{title:"far fa-building",searchTerms:["apartment","business","company","office","work"]},{title:"fas fa-bullhorn",searchTerms:["announcement","broadcast","louder","megaphone","share"]},{title:"fas fa-bullseye",searchTerms:["target"]},{title:"fas fa-burn",searchTerms:["energy"]},{title:"fab fa-buromobelexperte",searchTerms:[]},{title:"fas fa-bus",searchTerms:["machine","public transportation","transportation","vehicle"]},{title:"fas fa-bus-alt",searchTerms:["machine","public transportation","transportation","vehicle"]},{title:"fas fa-business-time",searchTerms:["briefcase","business socks","clock","flight of the conchords","wednesday"]},{title:"fab fa-buysellads",searchTerms:[]},{title:"fas fa-calculator",searchTerms:[]},{title:"fas fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"far fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"fas fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"far fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"fas fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","done","ok","select","success","todo"]},{title:"far fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","done","ok","select","success","todo"]},{title:"fas fa-calendar-minus",searchTerms:["delete","negative","remove"]},{title:"far fa-calendar-minus",searchTerms:["delete","negative","remove"]},{title:"fas fa-calendar-plus",searchTerms:["add","create","new","positive"]},{title:"far fa-calendar-plus",searchTerms:["add","create","new","positive"]},{title:"fas fa-calendar-times",searchTerms:["archive","delete","remove","x"]},{title:"far fa-calendar-times",searchTerms:["archive","delete","remove","x"]},{title:"fas fa-camera",searchTerms:["photo","picture","record"]},{title:"fas fa-camera-retro",searchTerms:["photo","picture","record"]},{title:"fas fa-campground",searchTerms:["camping","fall","outdoors","seasonal","tent"]},{title:"fas fa-cannabis",searchTerms:["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{title:"fas fa-capsules",searchTerms:["drugs","medicine"]},{title:"fas fa-car",searchTerms:["machine","transportation","vehicle"]},{title:"fas fa-car-alt",searchTerms:[]},{title:"fas fa-car-battery",searchTerms:[]},{title:"fas fa-car-crash",searchTerms:[]},{title:"fas fa-car-side",searchTerms:[]},{title:"fas fa-caret-down",searchTerms:["arrow","dropdown","menu","more","triangle down"]},{title:"fas fa-caret-left",searchTerms:["arrow","back","previous","triangle left"]},{title:"fas fa-caret-right",searchTerms:["arrow","forward","next","triangle right"]},{title:"fas fa-caret-square-down",searchTerms:["caret-square-o-down","dropdown","menu","more"]},{title:"far fa-caret-square-down",searchTerms:["caret-square-o-down","dropdown","menu","more"]},{title:"fas fa-caret-square-left",searchTerms:["back","caret-square-o-left","previous"]},{title:"far fa-caret-square-left",searchTerms:["back","caret-square-o-left","previous"]},{title:"fas fa-caret-square-right",searchTerms:["caret-square-o-right","forward","next"]},{title:"far fa-caret-square-right",searchTerms:["caret-square-o-right","forward","next"]},{title:"fas fa-caret-square-up",searchTerms:["caret-square-o-up"]},{title:"far fa-caret-square-up",searchTerms:["caret-square-o-up"]},{title:"fas fa-caret-up",searchTerms:["arrow","triangle up"]},{title:"fas fa-cart-arrow-down",searchTerms:["shopping"]},{title:"fas fa-cart-plus",searchTerms:["add","create","new","positive","shopping"]},{title:"fas fa-cat",searchTerms:["feline","halloween","holiday","kitten","kitty","meow","pet"]},{title:"fab fa-cc-amazon-pay",searchTerms:[]},{title:"fab fa-cc-amex",searchTerms:["amex"]},{title:"fab fa-cc-apple-pay",searchTerms:[]},{title:"fab fa-cc-diners-club",searchTerms:[]},{title:"fab fa-cc-discover",searchTerms:[]},{title:"fab fa-cc-jcb",searchTerms:[]},{title:"fab fa-cc-mastercard",searchTerms:[]},{title:"fab fa-cc-paypal",searchTerms:[]},{title:"fab fa-cc-stripe",searchTerms:[]},{title:"fab fa-cc-visa",searchTerms:[]},{title:"fab fa-centercode",searchTerms:[]},{title:"fas fa-certificate",searchTerms:["badge","star"]},{title:"fas fa-chair",searchTerms:["furniture","seat"]},{title:"fas fa-chalkboard",searchTerms:["blackboard","learning","school","teaching","whiteboard","writing"]},{title:"fas fa-chalkboard-teacher",searchTerms:["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{title:"fas fa-charging-station",searchTerms:[]},{title:"fas fa-chart-area",searchTerms:["analytics","area-chart","graph"]},{title:"fas fa-chart-bar",searchTerms:["analytics","bar-chart","graph"]},{title:"far fa-chart-bar",searchTerms:["analytics","bar-chart","graph"]},{title:"fas fa-chart-line",searchTerms:["activity","analytics","dashboard","graph","line-chart"]},{title:"fas fa-chart-pie",searchTerms:["analytics","graph","pie-chart"]},{title:"fas fa-check",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo","yes"]},{title:"fas fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","todo","yes"]},{title:"far fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","todo","yes"]},{title:"fas fa-check-double",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{title:"fas fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","todo","yes"]},{title:"far fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","todo","yes"]},{title:"fas fa-chess",searchTerms:[]},{title:"fas fa-chess-bishop",searchTerms:[]},{title:"fas fa-chess-board",searchTerms:[]},{title:"fas fa-chess-king",searchTerms:[]},{title:"fas fa-chess-knight",searchTerms:[]},{title:"fas fa-chess-pawn",searchTerms:[]},{title:"fas fa-chess-queen",searchTerms:[]},{title:"fas fa-chess-rook",searchTerms:[]},{title:"fas fa-chevron-circle-down",searchTerms:["arrow","dropdown","menu","more"]},{title:"fas fa-chevron-circle-left",searchTerms:["arrow","back","previous"]},{title:"fas fa-chevron-circle-right",searchTerms:["arrow","forward","next"]},{title:"fas fa-chevron-circle-up",searchTerms:["arrow"]},{title:"fas fa-chevron-down",searchTerms:[]},{title:"fas fa-chevron-left",searchTerms:["back","bracket","previous"]},{title:"fas fa-chevron-right",searchTerms:["bracket","forward","next"]},{title:"fas fa-chevron-up",searchTerms:[]},{title:"fas fa-child",searchTerms:[]},{title:"fab fa-chrome",searchTerms:["browser"]},{title:"fas fa-church",searchTerms:["building","community","religion"]},{title:"fas fa-circle",searchTerms:["circle-thin","dot","notification"]},{title:"far fa-circle",searchTerms:["circle-thin","dot","notification"]},{title:"fas fa-circle-notch",searchTerms:["circle-o-notch"]},{title:"fas fa-city",searchTerms:["buildings","busy","skyscrapers","urban","windows"]},{title:"fas fa-clipboard",searchTerms:["paste"]},{title:"far fa-clipboard",searchTerms:["paste"]},{title:"fas fa-clipboard-check",searchTerms:["accept","agree","confirm","done","ok","select","success","todo","yes"]},{title:"fas fa-clipboard-list",searchTerms:["checklist","completed","done","finished","intinerary","ol","schedule","todo","ul"]},{title:"fas fa-clock",searchTerms:["date","late","schedule","timer","timestamp","watch"]},{title:"far fa-clock",searchTerms:["date","late","schedule","timer","timestamp","watch"]},{title:"fas fa-clone",searchTerms:["copy","duplicate"]},{title:"far fa-clone",searchTerms:["copy","duplicate"]},{title:"fas fa-closed-captioning",searchTerms:["cc"]},{title:"far fa-closed-captioning",searchTerms:["cc"]},{title:"fas fa-cloud",searchTerms:["save"]},{title:"fas fa-cloud-download-alt",searchTerms:["import"]},{title:"fas fa-cloud-meatball",searchTerms:[]},{title:"fas fa-cloud-moon",searchTerms:["crescent","evening","halloween","holiday","lunar","night","sky"]},{title:"fas fa-cloud-moon-rain",searchTerms:[]},{title:"fas fa-cloud-rain",searchTerms:["precipitation"]},{title:"fas fa-cloud-showers-heavy",searchTerms:["precipitation","rain","storm"]},{title:"fas fa-cloud-sun",searchTerms:["day","daytime","fall","outdoors","seasonal"]},{title:"fas fa-cloud-sun-rain",searchTerms:[]},{title:"fas fa-cloud-upload-alt",searchTerms:["cloud-upload"]},{title:"fab fa-cloudscale",searchTerms:[]},{title:"fab fa-cloudsmith",searchTerms:[]},{title:"fab fa-cloudversify",searchTerms:[]},{title:"fas fa-cocktail",searchTerms:["alcohol","beverage","drink"]},{title:"fas fa-code",searchTerms:["brackets","html"]},{title:"fas fa-code-branch",searchTerms:["branch","code-fork","fork","git","github","rebase","svn","vcs","version"]},{title:"fab fa-codepen",searchTerms:[]},{title:"fab fa-codiepie",searchTerms:[]},{title:"fas fa-coffee",searchTerms:["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{title:"fas fa-cog",searchTerms:["settings"]},{title:"fas fa-cogs",searchTerms:["gears","settings"]},{title:"fas fa-coins",searchTerms:[]},{title:"fas fa-columns",searchTerms:["dashboard","panes","split"]},{title:"fas fa-comment",searchTerms:["bubble","chat","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment",searchTerms:["bubble","chat","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-dollar",searchTerms:[]},{title:"fas fa-comment-dots",searchTerms:[]},{title:"far fa-comment-dots",searchTerms:[]},{title:"fas fa-comment-slash",searchTerms:[]},{title:"fas fa-comments",searchTerms:["bubble","chat","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comments",searchTerms:["bubble","chat","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comments-dollar",searchTerms:[]},{title:"fas fa-compact-disc",searchTerms:["bluray","cd","disc","media"]},{title:"fas fa-compass",searchTerms:["directory","location","menu","safari"]},{title:"far fa-compass",searchTerms:["directory","location","menu","safari"]},{title:"fas fa-compress",searchTerms:["collapse","combine","contract","merge","smaller"]},{title:"fas fa-concierge-bell",searchTerms:["attention","hotel","service","support"]},{title:"fab fa-connectdevelop",searchTerms:[]},{title:"fab fa-contao",searchTerms:[]},{title:"fas fa-cookie",searchTerms:["baked good","chips","food","snack","sweet","treat"]},{title:"fas fa-cookie-bite",searchTerms:["baked good","bitten","chips","eating","food","snack","sweet","treat"]},{title:"fas fa-copy",searchTerms:["clone","duplicate","file","files-o"]},{title:"far fa-copy",searchTerms:["clone","duplicate","file","files-o"]},{title:"fas fa-copyright",searchTerms:[]},{title:"far fa-copyright",searchTerms:[]},{title:"fas fa-couch",searchTerms:["furniture","sofa"]},{title:"fab fa-cpanel",searchTerms:[]},{title:"fab fa-creative-commons",searchTerms:[]},{title:"fab fa-creative-commons-by",searchTerms:[]},{title:"fab fa-creative-commons-nc",searchTerms:[]},{title:"fab fa-creative-commons-nc-eu",searchTerms:[]},{title:"fab fa-creative-commons-nc-jp",searchTerms:[]},{title:"fab fa-creative-commons-nd",searchTerms:[]},{title:"fab fa-creative-commons-pd",searchTerms:[]},{title:"fab fa-creative-commons-pd-alt",searchTerms:[]},{title:"fab fa-creative-commons-remix",searchTerms:[]},{title:"fab fa-creative-commons-sa",searchTerms:[]},{title:"fab fa-creative-commons-sampling",searchTerms:[]},{title:"fab fa-creative-commons-sampling-plus",searchTerms:[]},{title:"fab fa-creative-commons-share",searchTerms:[]},{title:"fab fa-creative-commons-zero",searchTerms:[]},{title:"fas fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"far fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"fab fa-critical-role",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-crop",searchTerms:["design"]},{title:"fas fa-crop-alt",searchTerms:[]},{title:"fas fa-cross",searchTerms:["catholicism","christianity"]},{title:"fas fa-crosshairs",searchTerms:["gpd","picker","position"]},{title:"fas fa-crow",searchTerms:["bird","bullfrog","fauna","halloween","holiday","toad"]},{title:"fas fa-crown",searchTerms:[]},{title:"fab fa-css3",searchTerms:["code"]},{title:"fab fa-css3-alt",searchTerms:[]},{title:"fas fa-cube",searchTerms:["package"]},{title:"fas fa-cubes",searchTerms:["packages"]},{title:"fas fa-cut",searchTerms:["scissors"]},{title:"fab fa-cuttlefish",searchTerms:[]},{title:"fab fa-d-and-d",searchTerms:[]},{title:"fab fa-d-and-d-beyond",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","gaming","tabletop"]},{title:"fab fa-dashcube",searchTerms:[]},{title:"fas fa-database",searchTerms:[]},{title:"fas fa-deaf",searchTerms:[]},{title:"fab fa-delicious",searchTerms:[]},{title:"fas fa-democrat",searchTerms:["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{title:"fab fa-deploydog",searchTerms:[]},{title:"fab fa-deskpro",searchTerms:[]},{title:"fas fa-desktop",searchTerms:["computer","cpu","demo","desktop","device","machine","monitor","pc","screen"]},{title:"fab fa-dev",searchTerms:[]},{title:"fab fa-deviantart",searchTerms:[]},{title:"fas fa-dharmachakra",searchTerms:["buddhism","buddhist","wheel of dharma"]},{title:"fas fa-diagnoses",searchTerms:[]},{title:"fas fa-dice",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-d20",searchTerms:["Dungeons & Dragons","chance","d&d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-d6",searchTerms:["Dungeons & Dragons","chance","d&d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-five",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-four",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-one",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-six",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-three",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-two",searchTerms:["chance","gambling","game","roll"]},{title:"fab fa-digg",searchTerms:[]},{title:"fab fa-digital-ocean",searchTerms:[]},{title:"fas fa-digital-tachograph",searchTerms:[]},{title:"fas fa-directions",searchTerms:[]},{title:"fab fa-discord",searchTerms:[]},{title:"fab fa-discourse",searchTerms:[]},{title:"fas fa-divide",searchTerms:[]},{title:"fas fa-dizzy",searchTerms:["dazed","disapprove","emoticon","face"]},{title:"far fa-dizzy",searchTerms:["dazed","disapprove","emoticon","face"]},{title:"fas fa-dna",searchTerms:["double helix","helix"]},{title:"fab fa-dochub",searchTerms:[]},{title:"fab fa-docker",searchTerms:[]},{title:"fas fa-dog",searchTerms:["canine","fauna","mammmal","pet","pooch","puppy","woof"]},{title:"fas fa-dollar-sign",searchTerms:["$","dollar-sign","money","price","usd"]},{title:"fas fa-dolly",searchTerms:[]},{title:"fas fa-dolly-flatbed",searchTerms:[]},{title:"fas fa-donate",searchTerms:["generosity","give"]},{title:"fas fa-door-closed",searchTerms:[]},{title:"fas fa-door-open",searchTerms:[]},{title:"fas fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"far fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"fas fa-dove",searchTerms:["bird","fauna","flying","peace"]},{title:"fas fa-download",searchTerms:["import"]},{title:"fab fa-draft2digital",searchTerms:[]},{title:"fas fa-drafting-compass",searchTerms:["mechanical drawing","plot","plotting"]},{title:"fas fa-dragon",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy"]},{title:"fas fa-draw-polygon",searchTerms:[]},{title:"fab fa-dribbble",searchTerms:[]},{title:"fab fa-dribbble-square",searchTerms:[]},{title:"fab fa-dropbox",searchTerms:[]},{title:"fas fa-drum",searchTerms:["instrument","music","percussion","snare","sound"]},{title:"fas fa-drum-steelpan",searchTerms:["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{title:"fas fa-drumstick-bite",searchTerms:[]},{title:"fab fa-drupal",searchTerms:[]},{title:"fas fa-dumbbell",searchTerms:["exercise","gym","strength","weight","weight-lifting"]},{title:"fas fa-dungeon",searchTerms:["Dungeons & Dragons","d&d","dnd","door","entrance","fantasy","gate"]},{title:"fab fa-dyalog",searchTerms:[]},{title:"fab fa-earlybirds",searchTerms:[]},{title:"fab fa-ebay",searchTerms:[]},{title:"fab fa-edge",searchTerms:["browser","ie"]},{title:"fas fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"far fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"fas fa-eject",searchTerms:[]},{title:"fab fa-elementor",searchTerms:[]},{title:"fas fa-ellipsis-h",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fas fa-ellipsis-v",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fab fa-ello",searchTerms:[]},{title:"fab fa-ember",searchTerms:[]},{title:"fab fa-empire",searchTerms:[]},{title:"fas fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open-text",searchTerms:[]},{title:"fas fa-envelope-square",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fab fa-envira",searchTerms:["leaf"]},{title:"fas fa-equals",searchTerms:[]},{title:"fas fa-eraser",searchTerms:["delete","remove"]},{title:"fab fa-erlang",searchTerms:[]},{title:"fab fa-ethereum",searchTerms:[]},{title:"fab fa-etsy",searchTerms:[]},{title:"fas fa-euro-sign",searchTerms:["eur"]},{title:"fas fa-exchange-alt",searchTerms:["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{title:"fas fa-exclamation",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-circle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-triangle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-expand",searchTerms:["bigger","enlarge","resize"]},{title:"fas fa-expand-arrows-alt",searchTerms:["arrows-alt","bigger","enlarge","move","resize"]},{title:"fab fa-expeditedssl",searchTerms:[]},{title:"fas fa-external-link-alt",searchTerms:["external-link","new","open"]},{title:"fas fa-external-link-square-alt",searchTerms:["external-link-square","new","open"]},{title:"fas fa-eye",searchTerms:["optic","see","seen","show","sight","views","visible"]},{title:"far fa-eye",searchTerms:["optic","see","seen","show","sight","views","visible"]},{title:"fas fa-eye-dropper",searchTerms:["eyedropper"]},{title:"fas fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"far fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"fab fa-facebook",searchTerms:["facebook-official","social network"]},{title:"fab fa-facebook-f",searchTerms:["facebook"]},{title:"fab fa-facebook-messenger",searchTerms:[]},{title:"fab fa-facebook-square",searchTerms:["social network"]},{title:"fab fa-fantasy-flight-games",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-fast-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-fast-forward",searchTerms:["end","last","next"]},{title:"fas fa-fax",searchTerms:[]},{title:"fas fa-feather",searchTerms:["bird","light","plucked","quill"]},{title:"fas fa-feather-alt",searchTerms:["bird","light","plucked","quill"]},{title:"fas fa-female",searchTerms:["human","person","profile","user","woman"]},{title:"fas fa-fighter-jet",searchTerms:["airplane","fast","fly","goose","maverick","plane","quick","top gun","transportation","travel"]},{title:"fas fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"far fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"fas fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"far fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"fas fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"far fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"fas fa-file-audio",searchTerms:[]},{title:"far fa-file-audio",searchTerms:[]},{title:"fas fa-file-code",searchTerms:[]},{title:"far fa-file-code",searchTerms:[]},{title:"fas fa-file-contract",searchTerms:["agreement","binding","document","legal","signature"]},{title:"fas fa-file-csv",searchTerms:["spreadsheets"]},{title:"fas fa-file-download",searchTerms:[]},{title:"fas fa-file-excel",searchTerms:[]},{title:"far fa-file-excel",searchTerms:[]},{title:"fas fa-file-export",searchTerms:[]},{title:"fas fa-file-image",searchTerms:[]},{title:"far fa-file-image",searchTerms:[]},{title:"fas fa-file-import",searchTerms:[]},{title:"fas fa-file-invoice",searchTerms:["bill","document","receipt"]},{title:"fas fa-file-invoice-dollar",searchTerms:["$","bill","document","dollar-sign","money","receipt","usd"]},{title:"fas fa-file-medical",searchTerms:[]},{title:"fas fa-file-medical-alt",searchTerms:[]},{title:"fas fa-file-pdf",searchTerms:[]},{title:"far fa-file-pdf",searchTerms:[]},{title:"fas fa-file-powerpoint",searchTerms:[]},{title:"far fa-file-powerpoint",searchTerms:[]},{title:"fas fa-file-prescription",searchTerms:["drugs","medical","medicine","rx"]},{title:"fas fa-file-signature",searchTerms:["John Hancock","contract","document","name"]},{title:"fas fa-file-upload",searchTerms:[]},{title:"fas fa-file-video",searchTerms:[]},{title:"far fa-file-video",searchTerms:[]},{title:"fas fa-file-word",searchTerms:[]},{title:"far fa-file-word",searchTerms:[]},{title:"fas fa-fill",searchTerms:["bucket","color","paint","paint bucket"]},{title:"fas fa-fill-drip",searchTerms:["bucket","color","drop","paint","paint bucket","spill"]},{title:"fas fa-film",searchTerms:["movie"]},{title:"fas fa-filter",searchTerms:["funnel","options"]},{title:"fas fa-fingerprint",searchTerms:["human","id","identification","lock","smudge","touch","unique","unlock"]},{title:"fas fa-fire",searchTerms:["caliente","flame","heat","hot","popular"]},{title:"fas fa-fire-extinguisher",searchTerms:[]},{title:"fab fa-firefox",searchTerms:["browser"]},{title:"fas fa-first-aid",searchTerms:[]},{title:"fab fa-first-order",searchTerms:[]},{title:"fab fa-first-order-alt",searchTerms:[]},{title:"fab fa-firstdraft",searchTerms:[]},{title:"fas fa-fish",searchTerms:["fauna","gold","swimming"]},{title:"fas fa-fist-raised",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","hand","ki","monk","resist","strength","unarmed combat"]},{title:"fas fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"far fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"fas fa-flag-checkered",searchTerms:["notice","notification","notify","pole","racing","report","symbol"]},{title:"fas fa-flag-usa",searchTerms:["betsy ross","country","old glory","stars","stripes","symbol"]},{title:"fas fa-flask",searchTerms:["beaker","experimental","labs","science"]},{title:"fab fa-flickr",searchTerms:[]},{title:"fab fa-flipboard",searchTerms:[]},{title:"fas fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"far fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"fab fa-fly",searchTerms:[]},{title:"fas fa-folder",searchTerms:[]},{title:"far fa-folder",searchTerms:[]},{title:"fas fa-folder-minus",searchTerms:["archive","delete","negative","remove"]},{title:"fas fa-folder-open",searchTerms:[]},{title:"far fa-folder-open",searchTerms:[]},{title:"fas fa-folder-plus",searchTerms:["add","create","new","positive"]},{title:"fas fa-font",searchTerms:["text"]},{title:"fab fa-font-awesome",searchTerms:["meanpath"]},{title:"fab fa-font-awesome-alt",searchTerms:[]},{title:"fab fa-font-awesome-flag",searchTerms:[]},{title:"far fa-font-awesome-logo-full",searchTerms:[]},{title:"fas fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-fonticons",searchTerms:[]},{title:"fab fa-fonticons-fi",searchTerms:[]},{title:"fas fa-football-ball",searchTerms:["fall","pigskin","seasonal"]},{title:"fab fa-fort-awesome",searchTerms:["castle"]},{title:"fab fa-fort-awesome-alt",searchTerms:["castle"]},{title:"fab fa-forumbee",searchTerms:[]},{title:"fas fa-forward",searchTerms:["forward","next"]},{title:"fab fa-foursquare",searchTerms:[]},{title:"fab fa-free-code-camp",searchTerms:[]},{title:"fab fa-freebsd",searchTerms:[]},{title:"fas fa-frog",searchTerms:["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{title:"fas fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fas fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fab fa-fulcrum",searchTerms:[]},{title:"fas fa-funnel-dollar",searchTerms:[]},{title:"fas fa-futbol",searchTerms:["ball","football","soccer"]},{title:"far fa-futbol",searchTerms:["ball","football","soccer"]},{title:"fab fa-galactic-republic",searchTerms:["politics","star wars"]},{title:"fab fa-galactic-senate",searchTerms:["star wars"]},{title:"fas fa-gamepad",searchTerms:["controller"]},{title:"fas fa-gas-pump",searchTerms:[]},{title:"fas fa-gavel",searchTerms:["hammer","judge","lawyer","opinion"]},{title:"fas fa-gem",searchTerms:["diamond"]},{title:"far fa-gem",searchTerms:["diamond"]},{title:"fas fa-genderless",searchTerms:[]},{title:"fab fa-get-pocket",searchTerms:[]},{title:"fab fa-gg",searchTerms:[]},{title:"fab fa-gg-circle",searchTerms:[]},{title:"fas fa-ghost",searchTerms:["apparition","blinky","clyde","floating","halloween","holiday","inky","pinky","spirit"]},{title:"fas fa-gift",searchTerms:["generosity","giving","party","present","wrapped"]},{title:"fab fa-git",searchTerms:[]},{title:"fab fa-git-square",searchTerms:[]},{title:"fab fa-github",searchTerms:["octocat"]},{title:"fab fa-github-alt",searchTerms:["octocat"]},{title:"fab fa-github-square",searchTerms:["octocat"]},{title:"fab fa-gitkraken",searchTerms:[]},{title:"fab fa-gitlab",searchTerms:["Axosoft"]},{title:"fab fa-gitter",searchTerms:[]},{title:"fas fa-glass-martini",searchTerms:["alcohol","bar","beverage","drink","glass","liquor","martini"]},{title:"fas fa-glass-martini-alt",searchTerms:[]},{title:"fas fa-glasses",searchTerms:["foureyes","hipster","nerd","reading","sight","spectacles"]},{title:"fab fa-glide",searchTerms:[]},{title:"fab fa-glide-g",searchTerms:[]},{title:"fas fa-globe",searchTerms:["all","coordinates","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-africa",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-americas",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-asia",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fab fa-gofore",searchTerms:[]},{title:"fas fa-golf-ball",searchTerms:[]},{title:"fab fa-goodreads",searchTerms:[]},{title:"fab fa-goodreads-g",searchTerms:[]},{title:"fab fa-google",searchTerms:[]},{title:"fab fa-google-drive",searchTerms:[]},{title:"fab fa-google-play",searchTerms:[]},{title:"fab fa-google-plus",searchTerms:["google-plus-circle","google-plus-official"]},{title:"fab fa-google-plus-g",searchTerms:["google-plus","social network"]},{title:"fab fa-google-plus-square",searchTerms:["social network"]},{title:"fab fa-google-wallet",searchTerms:[]},{title:"fas fa-gopuram",searchTerms:["building","entrance","hinduism","temple","tower"]},{title:"fas fa-graduation-cap",searchTerms:["learning","school","student"]},{title:"fab fa-gratipay",searchTerms:["favorite","heart","like","love"]},{title:"fab fa-grav",searchTerms:[]},{title:"fas fa-greater-than",searchTerms:[]},{title:"fas fa-greater-than-equal",searchTerms:[]},{title:"fas fa-grimace",searchTerms:["cringe","emoticon","face"]},{title:"far fa-grimace",searchTerms:["cringe","emoticon","face"]},{title:"fas fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam-sweat",searchTerms:["emoticon","face","smile"]},{title:"far fa-grin-beam-sweat",searchTerms:["emoticon","face","smile"]},{title:"fas fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"far fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"fas fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"far fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"fas fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"far fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"fas fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"far fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"fas fa-grip-horizontal",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fab fa-gripfire",searchTerms:[]},{title:"fab fa-grunt",searchTerms:[]},{title:"fab fa-gulp",searchTerms:[]},{title:"fas fa-h-square",searchTerms:["hospital","hotel"]},{title:"fab fa-hacker-news",searchTerms:[]},{title:"fab fa-hacker-news-square",searchTerms:[]},{title:"fab fa-hackerrank",searchTerms:[]},{title:"fas fa-hammer",searchTerms:["admin","fix","repair","settings","tool"]},{title:"fas fa-hamsa",searchTerms:["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{title:"fas fa-hand-holding",searchTerms:[]},{title:"fas fa-hand-holding-heart",searchTerms:[]},{title:"fas fa-hand-holding-usd",searchTerms:["$","dollar sign","donation","giving","money","price"]},{title:"fas fa-hand-lizard",searchTerms:[]},{title:"far fa-hand-lizard",searchTerms:[]},{title:"fas fa-hand-paper",searchTerms:["stop"]},{title:"far fa-hand-paper",searchTerms:["stop"]},{title:"fas fa-hand-peace",searchTerms:[]},{title:"far fa-hand-peace",searchTerms:[]},{title:"fas fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"far fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"fas fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"far fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"fas fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"far fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"fas fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"far fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"fas fa-hand-pointer",searchTerms:["select"]},{title:"far fa-hand-pointer",searchTerms:["select"]},{title:"fas fa-hand-rock",searchTerms:[]},{title:"far fa-hand-rock",searchTerms:[]},{title:"fas fa-hand-scissors",searchTerms:[]},{title:"far fa-hand-scissors",searchTerms:[]},{title:"fas fa-hand-spock",searchTerms:[]},{title:"far fa-hand-spock",searchTerms:[]},{title:"fas fa-hands",searchTerms:[]},{title:"fas fa-hands-helping",searchTerms:["aid","assistance","partnership","volunteering"]},{title:"fas fa-handshake",searchTerms:["greeting","partnership"]},{title:"far fa-handshake",searchTerms:["greeting","partnership"]},{title:"fas fa-hanukiah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-hashtag",searchTerms:[]},{title:"fas fa-hat-wizard",searchTerms:["Dungeons & Dragons","buckle","cloth","clothing","d&d","dnd","fantasy","halloween","holiday","mage","magic","pointy","witch"]},{title:"fas fa-haykal",searchTerms:["bahai","bahá'í","star"]},{title:"fas fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"far fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"fas fa-heading",searchTerms:["header"]},{title:"fas fa-headphones",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headphones-alt",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headset",searchTerms:["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{title:"fas fa-heart",searchTerms:["favorite","like","love"]},{title:"far fa-heart",searchTerms:["favorite","like","love"]},{title:"fas fa-heartbeat",searchTerms:["ekg","lifeline","vital signs"]},{title:"fas fa-helicopter",searchTerms:["airwolf","apache","chopper","flight","fly"]},{title:"fas fa-highlighter",searchTerms:["edit","marker","sharpie","update","write"]},{title:"fas fa-hiking",searchTerms:["activity","backpack","fall","fitness","outdoors","seasonal","walking"]},{title:"fas fa-hippo",searchTerms:["fauna","hungry","mammmal"]},{title:"fab fa-hips",searchTerms:[]},{title:"fab fa-hire-a-helper",searchTerms:[]},{title:"fas fa-history",searchTerms:[]},{title:"fas fa-hockey-puck",searchTerms:[]},{title:"fas fa-home",searchTerms:["house","main"]},{title:"fab fa-hooli",searchTerms:[]},{title:"fab fa-hornbill",searchTerms:[]},{title:"fas fa-horse",searchTerms:["equus","fauna","mammmal","neigh"]},{title:"fas fa-hospital",searchTerms:["building","emergency room","medical center"]},{title:"far fa-hospital",searchTerms:["building","emergency room","medical center"]},{title:"fas fa-hospital-alt",searchTerms:["building","emergency room","medical center"]},{title:"fas fa-hospital-symbol",searchTerms:[]},{title:"fas fa-hot-tub",searchTerms:[]},{title:"fas fa-hotel",searchTerms:["building","lodging"]},{title:"fab fa-hotjar",searchTerms:[]},{title:"fas fa-hourglass",searchTerms:[]},{title:"far fa-hourglass",searchTerms:[]},{title:"fas fa-hourglass-end",searchTerms:[]},{title:"fas fa-hourglass-half",searchTerms:[]},{title:"fas fa-hourglass-start",searchTerms:[]},{title:"fas fa-house-damage",searchTerms:["devastation","home"]},{title:"fab fa-houzz",searchTerms:[]},{title:"fas fa-hryvnia",searchTerms:["money"]},{title:"fab fa-html5",searchTerms:[]},{title:"fab fa-hubspot",searchTerms:[]},{title:"fas fa-i-cursor",searchTerms:[]},{title:"fas fa-id-badge",searchTerms:[]},{title:"far fa-id-badge",searchTerms:[]},{title:"fas fa-id-card",searchTerms:["document","identification","issued"]},{title:"far fa-id-card",searchTerms:["document","identification","issued"]},{title:"fas fa-id-card-alt",searchTerms:["demographics"]},{title:"fas fa-image",searchTerms:["album","photo","picture"]},{title:"far fa-image",searchTerms:["album","photo","picture"]},{title:"fas fa-images",searchTerms:["album","photo","picture"]},{title:"far fa-images",searchTerms:["album","photo","picture"]},{title:"fab fa-imdb",searchTerms:[]},{title:"fas fa-inbox",searchTerms:[]},{title:"fas fa-indent",searchTerms:[]},{title:"fas fa-industry",searchTerms:["factory","manufacturing"]},{title:"fas fa-infinity",searchTerms:[]},{title:"fas fa-info",searchTerms:["details","help","information","more"]},{title:"fas fa-info-circle",searchTerms:["details","help","information","more"]},{title:"fab fa-instagram",searchTerms:[]},{title:"fab fa-internet-explorer",searchTerms:["browser","ie"]},{title:"fab fa-ioxhost",searchTerms:[]},{title:"fas fa-italic",searchTerms:["italics"]},{title:"fab fa-itunes",searchTerms:[]},{title:"fab fa-itunes-note",searchTerms:[]},{title:"fab fa-java",searchTerms:[]},{title:"fas fa-jedi",searchTerms:["star wars"]},{title:"fab fa-jedi-order",searchTerms:["star wars"]},{title:"fab fa-jenkins",searchTerms:[]},{title:"fab fa-joget",searchTerms:[]},{title:"fas fa-joint",searchTerms:["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{title:"fab fa-joomla",searchTerms:[]},{title:"fas fa-journal-whills",searchTerms:["book","jedi","star wars","the force"]},{title:"fab fa-js",searchTerms:[]},{title:"fab fa-js-square",searchTerms:[]},{title:"fab fa-jsfiddle",searchTerms:[]},{title:"fas fa-kaaba",searchTerms:["building","cube","islam","muslim"]},{title:"fab fa-kaggle",searchTerms:[]},{title:"fas fa-key",searchTerms:["password","unlock"]},{title:"fab fa-keybase",searchTerms:[]},{title:"fas fa-keyboard",searchTerms:["input","type"]},{title:"far fa-keyboard",searchTerms:["input","type"]},{title:"fab fa-keycdn",searchTerms:[]},{title:"fas fa-khanda",searchTerms:["chakkar","sikh","sikhism","sword"]},{title:"fab fa-kickstarter",searchTerms:[]},{title:"fab fa-kickstarter-k",searchTerms:[]},{title:"fas fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiwi-bird",searchTerms:["bird","fauna"]},{title:"fab fa-korvue",searchTerms:[]},{title:"fas fa-landmark",searchTerms:["building","historic","memoroable","politics"]},{title:"fas fa-language",searchTerms:["dialect","idiom","localize","speech","translate","vernacular"]},{title:"fas fa-laptop",searchTerms:["computer","cpu","dell","demo","device","dude you're getting","mac","macbook","machine","pc"]},{title:"fas fa-laptop-code",searchTerms:[]},{title:"fab fa-laravel",searchTerms:[]},{title:"fab fa-lastfm",searchTerms:[]},{title:"fab fa-lastfm-square",searchTerms:[]},{title:"fas fa-laugh",searchTerms:["LOL","emoticon","face","laugh"]},{title:"far fa-laugh",searchTerms:["LOL","emoticon","face","laugh"]},{title:"fas fa-laugh-beam",searchTerms:["LOL","emoticon","face"]},{title:"far fa-laugh-beam",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-laugh-squint",searchTerms:["LOL","emoticon","face"]},{title:"far fa-laugh-squint",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-laugh-wink",searchTerms:["LOL","emoticon","face"]},{title:"far fa-laugh-wink",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-layer-group",searchTerms:["layers"]},{title:"fas fa-leaf",searchTerms:["eco","flora","nature","plant"]},{title:"fab fa-leanpub",searchTerms:[]},{title:"fas fa-lemon",searchTerms:["food"]},{title:"far fa-lemon",searchTerms:["food"]},{title:"fab fa-less",searchTerms:[]},{title:"fas fa-less-than",searchTerms:[]},{title:"fas fa-less-than-equal",searchTerms:[]},{title:"fas fa-level-down-alt",searchTerms:["level-down"]},{title:"fas fa-level-up-alt",searchTerms:["level-up"]},{title:"fas fa-life-ring",searchTerms:["support"]},{title:"far fa-life-ring",searchTerms:["support"]},{title:"fas fa-lightbulb",searchTerms:["idea","inspiration"]},{title:"far fa-lightbulb",searchTerms:["idea","inspiration"]},{title:"fab fa-line",searchTerms:[]},{title:"fas fa-link",searchTerms:["chain"]},{title:"fab fa-linkedin",searchTerms:["linkedin-square"]},{title:"fab fa-linkedin-in",searchTerms:["linkedin"]},{title:"fab fa-linode",searchTerms:[]},{title:"fab fa-linux",searchTerms:["tux"]},{title:"fas fa-lira-sign",searchTerms:["try","turkish"]},{title:"fas fa-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"far fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-ol",searchTerms:["checklist","list","numbers","ol","todo","ul"]},{title:"fas fa-list-ul",searchTerms:["checklist","list","ol","todo","ul"]},{title:"fas fa-location-arrow",searchTerms:["address","coordinates","gps","location","map","place","where"]},{title:"fas fa-lock",searchTerms:["admin","protect","security"]},{title:"fas fa-lock-open",searchTerms:["admin","lock","open","password","protect"]},{title:"fas fa-long-arrow-alt-down",searchTerms:["long-arrow-down"]},{title:"fas fa-long-arrow-alt-left",searchTerms:["back","long-arrow-left","previous"]},{title:"fas fa-long-arrow-alt-right",searchTerms:["long-arrow-right"]},{title:"fas fa-long-arrow-alt-up",searchTerms:["long-arrow-up"]},{title:"fas fa-low-vision",searchTerms:[]},{title:"fas fa-luggage-cart",searchTerms:[]},{title:"fab fa-lyft",searchTerms:[]},{title:"fab fa-magento",searchTerms:[]},{title:"fas fa-magic",searchTerms:["autocomplete","automatic","mage","magic","spell","witch","wizard"]},{title:"fas fa-magnet",searchTerms:[]},{title:"fas fa-mail-bulk",searchTerms:[]},{title:"fab fa-mailchimp",searchTerms:[]},{title:"fas fa-male",searchTerms:["human","man","person","profile","user"]},{title:"fab fa-mandalorian",searchTerms:[]},{title:"fas fa-map",searchTerms:["coordinates","location","paper","place","travel"]},{title:"far fa-map",searchTerms:["coordinates","location","paper","place","travel"]},{title:"fas fa-map-marked",searchTerms:["address","coordinates","destination","gps","localize","location","map","paper","pin","place","point of interest","position","route","travel","where"]},{title:"fas fa-map-marked-alt",searchTerms:["address","coordinates","destination","gps","localize","location","map","paper","pin","place","point of interest","position","route","travel","where"]},{title:"fas fa-map-marker",searchTerms:["address","coordinates","gps","localize","location","map","pin","place","position","travel","where"]},{title:"fas fa-map-marker-alt",searchTerms:["address","coordinates","gps","localize","location","map","pin","place","position","travel","where"]},{title:"fas fa-map-pin",searchTerms:["address","coordinates","gps","localize","location","map","marker","place","position","travel","where"]},{title:"fas fa-map-signs",searchTerms:[]},{title:"fab fa-markdown",searchTerms:[]},{title:"fas fa-marker",searchTerms:["edit","sharpie","update","write"]},{title:"fas fa-mars",searchTerms:["male"]},{title:"fas fa-mars-double",searchTerms:[]},{title:"fas fa-mars-stroke",searchTerms:[]},{title:"fas fa-mars-stroke-h",searchTerms:[]},{title:"fas fa-mars-stroke-v",searchTerms:[]},{title:"fas fa-mask",searchTerms:["costume","disguise","halloween","holiday","secret","super hero"]},{title:"fab fa-mastodon",searchTerms:[]},{title:"fab fa-maxcdn",searchTerms:[]},{title:"fas fa-medal",searchTerms:[]},{title:"fab fa-medapps",searchTerms:[]},{title:"fab fa-medium",searchTerms:[]},{title:"fab fa-medium-m",searchTerms:[]},{title:"fas fa-medkit",searchTerms:["first aid","firstaid","health","help","support"]},{title:"fab fa-medrt",searchTerms:[]},{title:"fab fa-meetup",searchTerms:[]},{title:"fab fa-megaport",searchTerms:[]},{title:"fas fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-memory",searchTerms:["DIMM","RAM"]},{title:"fas fa-menorah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-mercury",searchTerms:["transgender"]},{title:"fas fa-meteor",searchTerms:[]},{title:"fas fa-microchip",searchTerms:["cpu","processor"]},{title:"fas fa-microphone",searchTerms:["record","sound","voice"]},{title:"fas fa-microphone-alt",searchTerms:["record","sound","voice"]},{title:"fas fa-microphone-alt-slash",searchTerms:["disable","mute","record","sound","voice"]},{title:"fas fa-microphone-slash",searchTerms:["disable","mute","record","sound","voice"]},{title:"fas fa-microscope",searchTerms:[]},{title:"fab fa-microsoft",searchTerms:[]},{title:"fas fa-minus",searchTerms:["collapse","delete","hide","minify","negative","remove","trash"]},{title:"fas fa-minus-circle",searchTerms:["delete","hide","negative","remove","trash"]},{title:"fas fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","trash"]},{title:"far fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","trash"]},{title:"fab fa-mix",searchTerms:[]},{title:"fab fa-mixcloud",searchTerms:[]},{title:"fab fa-mizuni",searchTerms:[]},{title:"fas fa-mobile",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone","text"]},{title:"fas fa-mobile-alt",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone","text"]},{title:"fab fa-modx",searchTerms:[]},{title:"fab fa-monero",searchTerms:[]},{title:"fas fa-money-bill",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"far fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-wave",searchTerms:[]},{title:"fas fa-money-bill-wave-alt",searchTerms:[]},{title:"fas fa-money-check",searchTerms:["bank check","cheque"]},{title:"fas fa-money-check-alt",searchTerms:["bank check","cheque"]},{title:"fas fa-monument",searchTerms:["building","historic","memoroable"]},{title:"fas fa-moon",searchTerms:["contrast","crescent","darker","lunar","night"]},{title:"far fa-moon",searchTerms:["contrast","crescent","darker","lunar","night"]},{title:"fas fa-mortar-pestle",searchTerms:["crush","culinary","grind","medical","mix","spices"]},{title:"fas fa-mosque",searchTerms:["building","islam","muslim"]},{title:"fas fa-motorcycle",searchTerms:["bike","machine","transportation","vehicle"]},{title:"fas fa-mountain",searchTerms:[]},{title:"fas fa-mouse-pointer",searchTerms:["select"]},{title:"fas fa-music",searchTerms:["note","sound"]},{title:"fab fa-napster",searchTerms:[]},{title:"fab fa-neos",searchTerms:[]},{title:"fas fa-network-wired",searchTerms:[]},{title:"fas fa-neuter",searchTerms:[]},{title:"fas fa-newspaper",searchTerms:["article","press"]},{title:"far fa-newspaper",searchTerms:["article","press"]},{title:"fab fa-nimblr",searchTerms:[]},{title:"fab fa-nintendo-switch",searchTerms:[]},{title:"fab fa-node",searchTerms:[]},{title:"fab fa-node-js",searchTerms:[]},{title:"fas fa-not-equal",searchTerms:[]},{title:"fas fa-notes-medical",searchTerms:[]},{title:"fab fa-npm",searchTerms:[]},{title:"fab fa-ns8",searchTerms:[]},{title:"fab fa-nutritionix",searchTerms:[]},{title:"fas fa-object-group",searchTerms:["design"]},{title:"far fa-object-group",searchTerms:["design"]},{title:"fas fa-object-ungroup",searchTerms:["design"]},{title:"far fa-object-ungroup",searchTerms:["design"]},{title:"fab fa-odnoklassniki",searchTerms:[]},{title:"fab fa-odnoklassniki-square",searchTerms:[]},{title:"fas fa-oil-can",searchTerms:[]},{title:"fab fa-old-republic",searchTerms:["politics","star wars"]},{title:"fas fa-om",searchTerms:["buddhism","hinduism","jainism","mantra"]},{title:"fab fa-opencart",searchTerms:[]},{title:"fab fa-openid",searchTerms:[]},{title:"fab fa-opera",searchTerms:[]},{title:"fab fa-optin-monster",searchTerms:[]},{title:"fab fa-osi",searchTerms:[]},{title:"fas fa-otter",searchTerms:["fauna","mammmal"]},{title:"fas fa-outdent",searchTerms:[]},{title:"fab fa-page4",searchTerms:[]},{title:"fab fa-pagelines",searchTerms:["eco","flora","leaf","leaves","nature","plant","tree"]},{title:"fas fa-paint-brush",searchTerms:[]},{title:"fas fa-paint-roller",searchTerms:["brush","painting","tool"]},{title:"fas fa-palette",searchTerms:["colors","painting"]},{title:"fab fa-palfed",searchTerms:[]},{title:"fas fa-pallet",searchTerms:[]},{title:"fas fa-paper-plane",searchTerms:[]},{title:"far fa-paper-plane",searchTerms:[]},{title:"fas fa-paperclip",searchTerms:["attachment"]},{title:"fas fa-parachute-box",searchTerms:["aid","assistance","rescue","supplies"]},{title:"fas fa-paragraph",searchTerms:[]},{title:"fas fa-parking",searchTerms:[]},{title:"fas fa-passport",searchTerms:["document","identification","issued"]},{title:"fas fa-pastafarianism",searchTerms:["agnosticism","atheism","flying spaghetti monster","fsm"]},{title:"fas fa-paste",searchTerms:["clipboard","copy"]},{title:"fab fa-patreon",searchTerms:[]},{title:"fas fa-pause",searchTerms:["wait"]},{title:"fas fa-pause-circle",searchTerms:[]},{title:"far fa-pause-circle",searchTerms:[]},{title:"fas fa-paw",searchTerms:["animal","pet"]},{title:"fab fa-paypal",searchTerms:[]},{title:"fas fa-peace",searchTerms:[]},{title:"fas fa-pen",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-alt",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-fancy",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-nib",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-square",searchTerms:["edit","pencil-square","update","write"]},{title:"fas fa-pencil-alt",searchTerms:["design","edit","pencil","update","write"]},{title:"fas fa-pencil-ruler",searchTerms:[]},{title:"fab fa-penny-arcade",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","game","gaming","pax","tabletop"]},{title:"fas fa-people-carry",searchTerms:["movers"]},{title:"fas fa-percent",searchTerms:[]},{title:"fas fa-percentage",searchTerms:[]},{title:"fab fa-periscope",searchTerms:[]},{title:"fas fa-person-booth",searchTerms:["changing","changing room","election","human","person","vote","voting"]},{title:"fab fa-phabricator",searchTerms:[]},{title:"fab fa-phoenix-framework",searchTerms:[]},{title:"fab fa-phoenix-squadron",searchTerms:[]},{title:"fas fa-phone",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-slash",searchTerms:[]},{title:"fas fa-phone-square",searchTerms:["call","number","support","telephone","voice"]},{title:"fas fa-phone-volume",searchTerms:["telephone","volume-control-phone"]},{title:"fab fa-php",searchTerms:[]},{title:"fab fa-pied-piper",searchTerms:[]},{title:"fab fa-pied-piper-alt",searchTerms:[]},{title:"fab fa-pied-piper-hat",searchTerms:["clothing"]},{title:"fab fa-pied-piper-pp",searchTerms:[]},{title:"fas fa-piggy-bank",searchTerms:["save","savings"]},{title:"fas fa-pills",searchTerms:["drugs","medicine"]},{title:"fab fa-pinterest",searchTerms:[]},{title:"fab fa-pinterest-p",searchTerms:[]},{title:"fab fa-pinterest-square",searchTerms:[]},{title:"fas fa-place-of-worship",searchTerms:[]},{title:"fas fa-plane",searchTerms:["airplane","destination","fly","location","mode","travel","trip"]},{title:"fas fa-plane-arrival",searchTerms:["airplane","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{title:"fas fa-plane-departure",searchTerms:["airplane","departing","destination","fly","location","mode","take off","taking off","travel","trip"]},{title:"fas fa-play",searchTerms:["music","playing","sound","start"]},{title:"fas fa-play-circle",searchTerms:["playing","start"]},{title:"far fa-play-circle",searchTerms:["playing","start"]},{title:"fab fa-playstation",searchTerms:[]},{title:"fas fa-plug",searchTerms:["connect","online","power"]},{title:"fas fa-plus",searchTerms:["add","create","expand","new","positive"]},{title:"fas fa-plus-circle",searchTerms:["add","create","expand","new","positive"]},{title:"fas fa-plus-square",searchTerms:["add","create","expand","new","positive"]},{title:"far fa-plus-square",searchTerms:["add","create","expand","new","positive"]},{title:"fas fa-podcast",searchTerms:[]},{title:"fas fa-poll",searchTerms:["results","survey","vote","voting"]},{title:"fas fa-poll-h",searchTerms:["results","survey","vote","voting"]},{title:"fas fa-poo",searchTerms:[]},{title:"fas fa-poo-storm",searchTerms:["mess","poop","shit"]},{title:"fas fa-poop",searchTerms:[]},{title:"fas fa-portrait",searchTerms:[]},{title:"fas fa-pound-sign",searchTerms:["gbp"]},{title:"fas fa-power-off",searchTerms:["on","reboot","restart"]},{title:"fas fa-pray",searchTerms:[]},{title:"fas fa-praying-hands",searchTerms:[]},{title:"fas fa-prescription",searchTerms:["drugs","medical","medicine","rx"]},{title:"fas fa-prescription-bottle",searchTerms:["drugs","medical","medicine","rx"]},{title:"fas fa-prescription-bottle-alt",searchTerms:["drugs","medical","medicine","rx"]},{title:"fas fa-print",searchTerms:[]},{title:"fas fa-procedures",searchTerms:[]},{title:"fab fa-product-hunt",searchTerms:[]},{title:"fas fa-project-diagram",searchTerms:[]},{title:"fab fa-pushed",searchTerms:[]},{title:"fas fa-puzzle-piece",searchTerms:["add-on","addon","section"]},{title:"fab fa-python",searchTerms:[]},{title:"fab fa-qq",searchTerms:[]},{title:"fas fa-qrcode",searchTerms:["scan"]},{title:"fas fa-question",searchTerms:["help","information","support","unknown"]},{title:"fas fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"far fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"fas fa-quidditch",searchTerms:[]},{title:"fab fa-quinscape",searchTerms:[]},{title:"fab fa-quora",searchTerms:[]},{title:"fas fa-quote-left",searchTerms:[]},{title:"fas fa-quote-right",searchTerms:[]},{title:"fas fa-quran",searchTerms:["book","islam","muslim"]},{title:"fab fa-r-project",searchTerms:[]},{title:"fas fa-rainbow",searchTerms:[]},{title:"fas fa-random",searchTerms:["shuffle","sort"]},{title:"fab fa-ravelry",searchTerms:[]},{title:"fab fa-react",searchTerms:[]},{title:"fab fa-reacteurope",searchTerms:[]},{title:"fab fa-readme",searchTerms:[]},{title:"fab fa-rebel",searchTerms:[]},{title:"fas fa-receipt",searchTerms:["check","invoice","table"]},{title:"fas fa-recycle",searchTerms:[]},{title:"fab fa-red-river",searchTerms:[]},{title:"fab fa-reddit",searchTerms:[]},{title:"fab fa-reddit-alien",searchTerms:[]},{title:"fab fa-reddit-square",searchTerms:[]},{title:"fas fa-redo",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-redo-alt",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-registered",searchTerms:[]},{title:"far fa-registered",searchTerms:[]},{title:"fab fa-renren",searchTerms:[]},{title:"fas fa-reply",searchTerms:[]},{title:"fas fa-reply-all",searchTerms:[]},{title:"fab fa-replyd",searchTerms:[]},{title:"fas fa-republican",searchTerms:["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{title:"fab fa-researchgate",searchTerms:[]},{title:"fab fa-resolving",searchTerms:[]},{title:"fas fa-retweet",searchTerms:["refresh","reload","share","swap"]},{title:"fab fa-rev",searchTerms:[]},{title:"fas fa-ribbon",searchTerms:["badge","cause","lapel","pin"]},{title:"fas fa-ring",searchTerms:["Dungeons & Dragons","Gollum","band","binding","d&d","dnd","fantasy","jewelry","precious"]},{title:"fas fa-road",searchTerms:["street"]},{title:"fas fa-robot",searchTerms:[]},{title:"fas fa-rocket",searchTerms:["app"]},{title:"fab fa-rocketchat",searchTerms:[]},{title:"fab fa-rockrms",searchTerms:[]},{title:"fas fa-route",searchTerms:[]},{title:"fas fa-rss",searchTerms:["blog"]},{title:"fas fa-rss-square",searchTerms:["blog","feed"]},{title:"fas fa-ruble-sign",searchTerms:["rub"]},{title:"fas fa-ruler",searchTerms:[]},{title:"fas fa-ruler-combined",searchTerms:[]},{title:"fas fa-ruler-horizontal",searchTerms:[]},{title:"fas fa-ruler-vertical",searchTerms:[]},{title:"fas fa-running",searchTerms:["jog","sprint"]},{title:"fas fa-rupee-sign",searchTerms:["indian","inr"]},{title:"fas fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"fas fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"fab fa-safari",searchTerms:["browser"]},{title:"fab fa-sass",searchTerms:[]},{title:"fas fa-save",searchTerms:["floppy","floppy-o"]},{title:"far fa-save",searchTerms:["floppy","floppy-o"]},{title:"fab fa-schlix",searchTerms:[]},{title:"fas fa-school",searchTerms:[]},{title:"fas fa-screwdriver",searchTerms:["admin","fix","repair","settings","tool"]},{title:"fab fa-scribd",searchTerms:[]},{title:"fas fa-scroll",searchTerms:["Dungeons & Dragons","announcement","d&d","dnd","fantasy","paper"]},{title:"fas fa-search",searchTerms:["bigger","enlarge","magnify","preview","zoom"]},{title:"fas fa-search-dollar",searchTerms:[]},{title:"fas fa-search-location",searchTerms:[]},{title:"fas fa-search-minus",searchTerms:["minify","negative","smaller","zoom","zoom out"]},{title:"fas fa-search-plus",searchTerms:["bigger","enlarge","magnify","positive","zoom","zoom in"]},{title:"fab fa-searchengin",searchTerms:[]},{title:"fas fa-seedling",searchTerms:[]},{title:"fab fa-sellcast",searchTerms:["eercast"]},{title:"fab fa-sellsy",searchTerms:[]},{title:"fas fa-server",searchTerms:["cpu"]},{title:"fab fa-servicestack",searchTerms:[]},{title:"fas fa-shapes",searchTerms:["circle","square","triangle"]},{title:"fas fa-share",searchTerms:[]},{title:"fas fa-share-alt",searchTerms:[]},{title:"fas fa-share-alt-square",searchTerms:[]},{title:"fas fa-share-square",searchTerms:["send","social"]},{title:"far fa-share-square",searchTerms:["send","social"]},{title:"fas fa-shekel-sign",searchTerms:["ils"]},{title:"fas fa-shield-alt",searchTerms:["achievement","award","block","defend","security","winner"]},{title:"fas fa-ship",searchTerms:["boat","sea"]},{title:"fas fa-shipping-fast",searchTerms:[]},{title:"fab fa-shirtsinbulk",searchTerms:[]},{title:"fas fa-shoe-prints",searchTerms:["feet","footprints","steps"]},{title:"fas fa-shopping-bag",searchTerms:[]},{title:"fas fa-shopping-basket",searchTerms:[]},{title:"fas fa-shopping-cart",searchTerms:["buy","checkout","payment","purchase"]},{title:"fab fa-shopware",searchTerms:[]},{title:"fas fa-shower",searchTerms:[]},{title:"fas fa-shuttle-van",searchTerms:["machine","public-transportation","transportation","vehicle"]},{title:"fas fa-sign",searchTerms:[]},{title:"fas fa-sign-in-alt",searchTerms:["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{title:"fas fa-sign-language",searchTerms:[]},{title:"fas fa-sign-out-alt",searchTerms:["arrow","exit","leave","log out","logout","sign-out"]},{title:"fas fa-signal",searchTerms:["bars","graph","online","status"]},{title:"fas fa-signature",searchTerms:["John Hancock","cursive","name","writing"]},{title:"fab fa-simplybuilt",searchTerms:[]},{title:"fab fa-sistrix",searchTerms:[]},{title:"fas fa-sitemap",searchTerms:["directory","hierarchy","ia","information architecture","organization"]},{title:"fab fa-sith",searchTerms:[]},{title:"fas fa-skull",searchTerms:["bones","skeleton","yorick"]},{title:"fas fa-skull-crossbones",searchTerms:["Dungeons & Dragons","alert","bones","d&d","danger","dead","deadly","death","dnd","fantasy","halloween","holiday","jolly-roger","pirate","poison","skeleton","warning"]},{title:"fab fa-skyatlas",searchTerms:[]},{title:"fab fa-skype",searchTerms:[]},{title:"fab fa-slack",searchTerms:["anchor","hash","hashtag"]},{title:"fab fa-slack-hash",searchTerms:["anchor","hash","hashtag"]},{title:"fas fa-slash",searchTerms:[]},{title:"fas fa-sliders-h",searchTerms:["settings","sliders"]},{title:"fab fa-slideshare",searchTerms:[]},{title:"fas fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"far fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"fas fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"far fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"fas fa-smile-wink",searchTerms:["emoticon","face","happy"]},{title:"far fa-smile-wink",searchTerms:["emoticon","face","happy"]},{title:"fas fa-smog",searchTerms:["dragon"]},{title:"fas fa-smoking",searchTerms:["cigarette","nicotine","smoking status"]},{title:"fas fa-smoking-ban",searchTerms:["no smoking","non-smoking"]},{title:"fab fa-snapchat",searchTerms:[]},{title:"fab fa-snapchat-ghost",searchTerms:[]},{title:"fab fa-snapchat-square",searchTerms:[]},{title:"fas fa-snowflake",searchTerms:["precipitation","seasonal","winter"]},{title:"far fa-snowflake",searchTerms:["precipitation","seasonal","winter"]},{title:"fas fa-socks",searchTerms:["business socks","business time","flight of the conchords","wednesday"]},{title:"fas fa-solar-panel",searchTerms:["clean","eco-friendly","energy","green","sun"]},{title:"fas fa-sort",searchTerms:["order"]},{title:"fas fa-sort-alpha-down",searchTerms:["sort-alpha-asc"]},{title:"fas fa-sort-alpha-up",searchTerms:["sort-alpha-desc"]},{title:"fas fa-sort-amount-down",searchTerms:["sort-amount-asc"]},{title:"fas fa-sort-amount-up",searchTerms:["sort-amount-desc"]},{title:"fas fa-sort-down",searchTerms:["arrow","descending","sort-desc"]},{title:"fas fa-sort-numeric-down",searchTerms:["numbers","sort-numeric-asc"]},{title:"fas fa-sort-numeric-up",searchTerms:["numbers","sort-numeric-desc"]},{title:"fas fa-sort-up",searchTerms:["arrow","ascending","sort-asc"]},{title:"fab fa-soundcloud",searchTerms:[]},{title:"fas fa-spa",searchTerms:["flora","mindfullness","plant","wellness"]},{title:"fas fa-space-shuttle",searchTerms:["astronaut","machine","nasa","rocket","transportation"]},{title:"fab fa-speakap",searchTerms:[]},{title:"fas fa-spider",searchTerms:["arachnid","bug","charlotte","crawl","eight","halloween","holiday"]},{title:"fas fa-spinner",searchTerms:["loading","progress"]},{title:"fas fa-splotch",searchTerms:[]},{title:"fab fa-spotify",searchTerms:[]},{title:"fas fa-spray-can",searchTerms:[]},{title:"fas fa-square",searchTerms:["block","box"]},{title:"far fa-square",searchTerms:["block","box"]},{title:"fas fa-square-full",searchTerms:[]},{title:"fas fa-square-root-alt",searchTerms:[]},{title:"fab fa-squarespace",searchTerms:[]},{title:"fab fa-stack-exchange",searchTerms:[]},{title:"fab fa-stack-overflow",searchTerms:[]},{title:"fas fa-stamp",searchTerms:[]},{title:"fas fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"far fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"fas fa-star-and-crescent",searchTerms:["islam","muslim"]},{title:"fas fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"far fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-half-alt",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-of-david",searchTerms:["jewish","judaism"]},{title:"fas fa-star-of-life",searchTerms:[]},{title:"fab fa-staylinked",searchTerms:[]},{title:"fab fa-steam",searchTerms:[]},{title:"fab fa-steam-square",searchTerms:[]},{title:"fab fa-steam-symbol",searchTerms:[]},{title:"fas fa-step-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-step-forward",searchTerms:["end","last","next"]},{title:"fas fa-stethoscope",searchTerms:[]},{title:"fab fa-sticker-mule",searchTerms:[]},{title:"fas fa-sticky-note",searchTerms:[]},{title:"far fa-sticky-note",searchTerms:[]},{title:"fas fa-stop",searchTerms:["block","box","square"]},{title:"fas fa-stop-circle",searchTerms:[]},{title:"far fa-stop-circle",searchTerms:[]},{title:"fas fa-stopwatch",searchTerms:["time"]},{title:"fas fa-store",searchTerms:[]},{title:"fas fa-store-alt",searchTerms:[]},{title:"fab fa-strava",searchTerms:[]},{title:"fas fa-stream",searchTerms:[]},{title:"fas fa-street-view",searchTerms:["map"]},{title:"fas fa-strikethrough",searchTerms:[]},{title:"fab fa-stripe",searchTerms:[]},{title:"fab fa-stripe-s",searchTerms:[]},{title:"fas fa-stroopwafel",searchTerms:["dessert","food","sweets","waffle"]},{title:"fab fa-studiovinari",searchTerms:[]},{title:"fab fa-stumbleupon",searchTerms:[]},{title:"fab fa-stumbleupon-circle",searchTerms:[]},{title:"fas fa-subscript",searchTerms:[]},{title:"fas fa-subway",searchTerms:["machine","railway","train","transportation","vehicle"]},{title:"fas fa-suitcase",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fas fa-suitcase-rolling",searchTerms:[]},{title:"fas fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"far fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"fab fa-superpowers",searchTerms:[]},{title:"fas fa-superscript",searchTerms:["exponential"]},{title:"fab fa-supple",searchTerms:[]},{title:"fas fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"far fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"fas fa-swatchbook",searchTerms:[]},{title:"fas fa-swimmer",searchTerms:["athlete","head","man","person","water"]},{title:"fas fa-swimming-pool",searchTerms:["ladder","recreation","water"]},{title:"fas fa-synagogue",searchTerms:["building","jewish","judaism","star of david","temple"]},{title:"fas fa-sync",searchTerms:["exchange","refresh","reload","rotate","swap"]},{title:"fas fa-sync-alt",searchTerms:["refresh","reload","rotate"]},{title:"fas fa-syringe",searchTerms:["immunizations","needle"]},{title:"fas fa-table",searchTerms:["data","excel","spreadsheet"]},{title:"fas fa-table-tennis",searchTerms:[]},{title:"fas fa-tablet",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablet-alt",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablets",searchTerms:["drugs","medicine"]},{title:"fas fa-tachometer-alt",searchTerms:["dashboard","tachometer"]},{title:"fas fa-tag",searchTerms:["label"]},{title:"fas fa-tags",searchTerms:["labels"]},{title:"fas fa-tape",searchTerms:[]},{title:"fas fa-tasks",searchTerms:["downloading","downloads","loading","progress","settings"]},{title:"fas fa-taxi",searchTerms:["cab","cabbie","car","car service","lyft","machine","transportation","uber","vehicle"]},{title:"fab fa-teamspeak",searchTerms:[]},{title:"fas fa-teeth",searchTerms:[]},{title:"fas fa-teeth-open",searchTerms:[]},{title:"fab fa-telegram",searchTerms:[]},{title:"fab fa-telegram-plane",searchTerms:[]},{title:"fas fa-temperature-high",searchTerms:["mercury","thermometer","warm"]},{title:"fas fa-temperature-low",searchTerms:["cool","mercury","thermometer"]},{title:"fab fa-tencent-weibo",searchTerms:[]},{title:"fas fa-terminal",searchTerms:["code","command","console","prompt"]},{title:"fas fa-text-height",searchTerms:[]},{title:"fas fa-text-width",searchTerms:[]},{title:"fas fa-th",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-large",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fab fa-the-red-yeti",searchTerms:[]},{title:"fas fa-theater-masks",searchTerms:[]},{title:"fab fa-themeco",searchTerms:[]},{title:"fab fa-themeisle",searchTerms:[]},{title:"fas fa-thermometer",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-empty",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-full",searchTerms:["fever","mercury","status","temperature"]},{title:"fas fa-thermometer-half",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-quarter",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-three-quarters",searchTerms:["mercury","status","temperature"]},{title:"fab fa-think-peaks",searchTerms:[]},{title:"fas fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","thumbs-o-down"]},{title:"far fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","thumbs-o-down"]},{title:"fas fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","success","thumbs-o-up","yes","you got it dude"]},{title:"far fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","success","thumbs-o-up","yes","you got it dude"]},{title:"fas fa-thumbtack",searchTerms:["coordinates","location","marker","pin","thumb-tack"]},{title:"fas fa-ticket-alt",searchTerms:["ticket"]},{title:"fas fa-times",searchTerms:["close","cross","error","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"far fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-tint",searchTerms:["drop","droplet","raindrop","waterdrop"]},{title:"fas fa-tint-slash",searchTerms:[]},{title:"fas fa-tired",searchTerms:["emoticon","face","grumpy"]},{title:"far fa-tired",searchTerms:["emoticon","face","grumpy"]},{title:"fas fa-toggle-off",searchTerms:["switch"]},{title:"fas fa-toggle-on",searchTerms:["switch"]},{title:"fas fa-toilet-paper",searchTerms:["bathroom","halloween","holiday","lavatory","prank","restroom","roll"]},{title:"fas fa-toolbox",searchTerms:["admin","container","fix","repair","settings","tools"]},{title:"fas fa-tooth",searchTerms:["bicuspid","dental","molar","mouth","teeth"]},{title:"fas fa-torah",searchTerms:["book","jewish","judaism"]},{title:"fas fa-torii-gate",searchTerms:["building","shintoism"]},{title:"fas fa-tractor",searchTerms:[]},{title:"fab fa-trade-federation",searchTerms:[]},{title:"fas fa-trademark",searchTerms:[]},{title:"fas fa-traffic-light",searchTerms:[]},{title:"fas fa-train",searchTerms:["bullet","locomotive","railway"]},{title:"fas fa-transgender",searchTerms:["intersex"]},{title:"fas fa-transgender-alt",searchTerms:[]},{title:"fas fa-trash",searchTerms:["delete","garbage","hide","remove"]},{title:"fas fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash","trash-o"]},{title:"far fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash","trash-o"]},{title:"fas fa-tree",searchTerms:["bark","fall","flora","forest","nature","plant","seasonal"]},{title:"fab fa-trello",searchTerms:[]},{title:"fab fa-tripadvisor",searchTerms:[]},{title:"fas fa-trophy",searchTerms:["achievement","award","cup","game","winner"]},{title:"fas fa-truck",searchTerms:["delivery","shipping"]},{title:"fas fa-truck-loading",searchTerms:[]},{title:"fas fa-truck-monster",searchTerms:[]},{title:"fas fa-truck-moving",searchTerms:[]},{title:"fas fa-truck-pickup",searchTerms:[]},{title:"fas fa-tshirt",searchTerms:["cloth","clothing"]},{title:"fas fa-tty",searchTerms:[]},{title:"fab fa-tumblr",searchTerms:[]},{title:"fab fa-tumblr-square",searchTerms:[]},{title:"fas fa-tv",searchTerms:["computer","display","monitor","television"]},{title:"fab fa-twitch",searchTerms:[]},{title:"fab fa-twitter",searchTerms:["social network","tweet"]},{title:"fab fa-twitter-square",searchTerms:["social network","tweet"]},{title:"fab fa-typo3",searchTerms:[]},{title:"fab fa-uber",searchTerms:[]},{title:"fab fa-uikit",searchTerms:[]},{title:"fas fa-umbrella",searchTerms:["protection","rain"]},{title:"fas fa-umbrella-beach",searchTerms:["protection","recreation","sun"]},{title:"fas fa-underline",searchTerms:[]},{title:"fas fa-undo",searchTerms:["back","control z","exchange","oops","return","rotate","swap"]},{title:"fas fa-undo-alt",searchTerms:["back","control z","exchange","oops","return","swap"]},{title:"fab fa-uniregistry",searchTerms:[]},{title:"fas fa-universal-access",searchTerms:[]},{title:"fas fa-university",searchTerms:["bank","institution"]},{title:"fas fa-unlink",searchTerms:["chain","chain-broken","remove"]},{title:"fas fa-unlock",searchTerms:["admin","lock","password","protect"]},{title:"fas fa-unlock-alt",searchTerms:["admin","lock","password","protect"]},{title:"fab fa-untappd",searchTerms:[]},{title:"fas fa-upload",searchTerms:["export","publish"]},{title:"fab fa-usb",searchTerms:[]},{title:"fas fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt-slash",searchTerms:[]},{title:"fas fa-user-astronaut",searchTerms:["avatar","clothing","cosmonaut","space","suit"]},{title:"fas fa-user-check",searchTerms:[]},{title:"fas fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-clock",searchTerms:[]},{title:"fas fa-user-cog",searchTerms:[]},{title:"fas fa-user-edit",searchTerms:[]},{title:"fas fa-user-friends",searchTerms:[]},{title:"fas fa-user-graduate",searchTerms:["cap","clothing","commencement","gown","graduation","student"]},{title:"fas fa-user-injured",searchTerms:["cast","ouch","sling"]},{title:"fas fa-user-lock",searchTerms:[]},{title:"fas fa-user-md",searchTerms:["doctor","job","medical","nurse","occupation","profile"]},{title:"fas fa-user-minus",searchTerms:["delete","negative","remove"]},{title:"fas fa-user-ninja",searchTerms:["assassin","avatar","dangerous","deadly","sneaky"]},{title:"fas fa-user-plus",searchTerms:["positive","sign up","signup"]},{title:"fas fa-user-secret",searchTerms:["clothing","coat","hat","incognito","privacy","spy","whisper"]},{title:"fas fa-user-shield",searchTerms:[]},{title:"fas fa-user-slash",searchTerms:["ban","remove"]},{title:"fas fa-user-tag",searchTerms:[]},{title:"fas fa-user-tie",searchTerms:["avatar","business","clothing","formal"]},{title:"fas fa-user-times",searchTerms:["archive","delete","remove","x"]},{title:"fas fa-users",searchTerms:["people","persons","profiles"]},{title:"fas fa-users-cog",searchTerms:[]},{title:"fab fa-ussunnah",searchTerms:[]},{title:"fas fa-utensil-spoon",searchTerms:["spoon"]},{title:"fas fa-utensils",searchTerms:["cutlery","dinner","eat","food","knife","restaurant","spoon"]},{title:"fab fa-vaadin",searchTerms:[]},{title:"fas fa-vector-square",searchTerms:["anchors","lines","object"]},{title:"fas fa-venus",searchTerms:["female"]},{title:"fas fa-venus-double",searchTerms:[]},{title:"fas fa-venus-mars",searchTerms:[]},{title:"fab fa-viacoin",searchTerms:[]},{title:"fab fa-viadeo",searchTerms:[]},{title:"fab fa-viadeo-square",searchTerms:[]},{title:"fas fa-vial",searchTerms:["test tube"]},{title:"fas fa-vials",searchTerms:["lab results","test tubes"]},{title:"fab fa-viber",searchTerms:[]},{title:"fas fa-video",searchTerms:["camera","film","movie","record","video-camera"]},{title:"fas fa-video-slash",searchTerms:[]},{title:"fas fa-vihara",searchTerms:["buddhism","buddhist","building","monastery"]},{title:"fab fa-vimeo",searchTerms:[]},{title:"fab fa-vimeo-square",searchTerms:[]},{title:"fab fa-vimeo-v",searchTerms:["vimeo"]},{title:"fab fa-vine",searchTerms:[]},{title:"fab fa-vk",searchTerms:[]},{title:"fab fa-vnv",searchTerms:[]},{title:"fas fa-volleyball-ball",searchTerms:[]},{title:"fas fa-volume-down",searchTerms:["audio","lower","music","quieter","sound","speaker"]},{title:"fas fa-volume-mute",searchTerms:[]},{title:"fas fa-volume-off",searchTerms:["audio","music","mute","sound"]},{title:"fas fa-volume-up",searchTerms:["audio","higher","louder","music","sound","speaker"]},{title:"fas fa-vote-yea",searchTerms:["accept","cast","election","politics","positive","yes"]},{title:"fas fa-vr-cardboard",searchTerms:["google","reality","virtual"]},{title:"fab fa-vuejs",searchTerms:[]},{title:"fas fa-walking",searchTerms:[]},{title:"fas fa-wallet",searchTerms:[]},{title:"fas fa-warehouse",searchTerms:[]},{title:"fas fa-water",searchTerms:[]},{title:"fab fa-weebly",searchTerms:[]},{title:"fab fa-weibo",searchTerms:[]},{title:"fas fa-weight",searchTerms:["measurement","scale","weight"]},{title:"fas fa-weight-hanging",searchTerms:["anvil","heavy","measurement"]},{title:"fab fa-weixin",searchTerms:[]},{title:"fab fa-whatsapp",searchTerms:[]},{title:"fab fa-whatsapp-square",searchTerms:[]},{title:"fas fa-wheelchair",searchTerms:["handicap","person"]},{title:"fab fa-whmcs",searchTerms:[]},{title:"fas fa-wifi",searchTerms:[]},{title:"fab fa-wikipedia-w",searchTerms:[]},{title:"fas fa-wind",searchTerms:["air","blow","breeze","fall","seasonal"]},{title:"fas fa-window-close",searchTerms:[]},{title:"far fa-window-close",searchTerms:[]},{title:"fas fa-window-maximize",searchTerms:[]},{title:"far fa-window-maximize",searchTerms:[]},{title:"fas fa-window-minimize",searchTerms:[]},{title:"far fa-window-minimize",searchTerms:[]},{title:"fas fa-window-restore",searchTerms:[]},{title:"far fa-window-restore",searchTerms:[]},{title:"fab fa-windows",searchTerms:["microsoft"]},{title:"fas fa-wine-bottle",searchTerms:["alcohol","beverage","drink","glass","grapes"]},{title:"fas fa-wine-glass",searchTerms:["alcohol","beverage","drink","grapes"]},{title:"fas fa-wine-glass-alt",searchTerms:["alcohol","beverage","drink","grapes"]},{title:"fab fa-wix",searchTerms:[]},{title:"fab fa-wizards-of-the-coast",searchTerms:["Dungeons & Dragons","d&d","dnd","fantasy","game","gaming","tabletop"]},{title:"fab fa-wolf-pack-battalion",searchTerms:[]},{title:"fas fa-won-sign",searchTerms:["krw"]},{title:"fab fa-wordpress",searchTerms:[]},{title:"fab fa-wordpress-simple",searchTerms:[]},{title:"fab fa-wpbeginner",searchTerms:[]},{title:"fab fa-wpexplorer",searchTerms:[]},{title:"fab fa-wpforms",searchTerms:[]},{title:"fab fa-wpressr",searchTerms:["rendact"]},{title:"fas fa-wrench",searchTerms:["fix","settings","spanner","tool","update"]},{title:"fas fa-x-ray",searchTerms:["radiological images","radiology"]},{title:"fab fa-xbox",searchTerms:[]},{title:"fab fa-xing",searchTerms:[]},{title:"fab fa-xing-square",searchTerms:[]},{title:"fab fa-y-combinator",searchTerms:[]},{title:"fab fa-yahoo",searchTerms:[]},{title:"fab fa-yandex",searchTerms:[]},{title:"fab fa-yandex-international",searchTerms:[]},{title:"fab fa-yelp",searchTerms:[]},{title:"fas fa-yen-sign",searchTerms:["jpy","money"]},{title:"fas fa-yin-yang",searchTerms:["daoism","opposites","taoism"]},{title:"fab fa-yoast",searchTerms:[]},{title:"fab fa-youtube",searchTerms:["film","video","youtube-play","youtube-square"]},{title:"fab fa-youtube-square",searchTerms:[]},{title:"fab fa-zhihu",searchTerms:[]}]})}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets-v5/js/popper.min.min.js b/vendor/ayecode/wp-ayecode-ui/assets-v5/js/popper.min.min.js deleted file mode 100644 index 8779f15..0000000 --- a/vendor/ayecode/wp-ayecode-ui/assets-v5/js/popper.min.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?module.exports=factory():typeof define==="function"&&define.amd?define(factory):global.Popper=factory()})(this,function(){"use strict";var isBrowser=typeof window!=="undefined"&&typeof document!=="undefined";var longerTimeoutBrowsers=["Edge","Trident","Firefox"];var timeoutDuration=0;for(var i=0;i=0){timeoutDuration=1;break}}function microtaskDebounce(fn){var called=false;return function(){if(called){return}called=true;window.Promise.resolve().then(function(){called=false;fn()})}}function taskDebounce(fn){var scheduled=false;return function(){if(!scheduled){scheduled=true;setTimeout(function(){scheduled=false;fn()},timeoutDuration)}}}var supportsMicroTasks=isBrowser&&window.Promise;var debounce=supportsMicroTasks?microtaskDebounce:taskDebounce;function isFunction(functionToCheck){var getType={};return functionToCheck&&getType.toString.call(functionToCheck)==="[object Function]"}function getStyleComputedProperty(element,property){if(element.nodeType!==1){return[]}var window=element.ownerDocument.defaultView;var css=window.getComputedStyle(element,null);return property?css[property]:css}function getParentNode(element){if(element.nodeName==="HTML"){return element}return element.parentNode||element.host}function getScrollParent(element){if(!element){return document.body}switch(element.nodeName){case"HTML":case"BODY":return element.ownerDocument.body;case"#document":return element.body}var _getStyleComputedProp=getStyleComputedProperty(element),overflow=_getStyleComputedProp.overflow,overflowX=_getStyleComputedProp.overflowX,overflowY=_getStyleComputedProp.overflowY;if(/(auto|scroll|overlay)/.test(overflow+overflowY+overflowX)){return element}return getScrollParent(getParentNode(element))}var isIE11=isBrowser&&!!(window.MSInputMethodContext&&document.documentMode);var isIE10=isBrowser&&/MSIE 10/.test(navigator.userAgent);function isIE(version){if(version===11){return isIE11}if(version===10){return isIE10}return isIE11||isIE10}function getOffsetParent(element){if(!element){return document.documentElement}var noOffsetParent=isIE(10)?document.body:null;var offsetParent=element.offsetParent||null;while(offsetParent===noOffsetParent&&element.nextElementSibling){offsetParent=(element=element.nextElementSibling).offsetParent}var nodeName=offsetParent&&offsetParent.nodeName;if(!nodeName||nodeName==="BODY"||nodeName==="HTML"){return element?element.ownerDocument.documentElement:document.documentElement}if(["TH","TD","TABLE"].indexOf(offsetParent.nodeName)!==-1&&getStyleComputedProperty(offsetParent,"position")==="static"){return getOffsetParent(offsetParent)}return offsetParent}function isOffsetContainer(element){var nodeName=element.nodeName;if(nodeName==="BODY"){return false}return nodeName==="HTML"||getOffsetParent(element.firstElementChild)===element}function getRoot(node){if(node.parentNode!==null){return getRoot(node.parentNode)}return node}function findCommonOffsetParent(element1,element2){if(!element1||!element1.nodeType||!element2||!element2.nodeType){return document.documentElement}var order=element1.compareDocumentPosition(element2)&Node.DOCUMENT_POSITION_FOLLOWING;var start=order?element1:element2;var end=order?element2:element1;var range=document.createRange();range.setStart(start,0);range.setEnd(end,0);var commonAncestorContainer=range.commonAncestorContainer;if(element1!==commonAncestorContainer&&element2!==commonAncestorContainer||start.contains(end)){if(isOffsetContainer(commonAncestorContainer)){return commonAncestorContainer}return getOffsetParent(commonAncestorContainer)}var element1root=getRoot(element1);if(element1root.host){return findCommonOffsetParent(element1root.host,element2)}else{return findCommonOffsetParent(element1,getRoot(element2).host)}}function getScroll(element){var side=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"top";var upperSide=side==="top"?"scrollTop":"scrollLeft";var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){var html=element.ownerDocument.documentElement;var scrollingElement=element.ownerDocument.scrollingElement||html;return scrollingElement[upperSide]}return element[upperSide]}function includeScroll(rect,element){var subtract=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;var scrollTop=getScroll(element,"top");var scrollLeft=getScroll(element,"left");var modifier=subtract?-1:1;rect.top+=scrollTop*modifier;rect.bottom+=scrollTop*modifier;rect.left+=scrollLeft*modifier;rect.right+=scrollLeft*modifier;return rect}function getBordersSize(styles,axis){var sideA=axis==="x"?"Left":"Top";var sideB=sideA==="Left"?"Right":"Bottom";return parseFloat(styles["border"+sideA+"Width"],10)+parseFloat(styles["border"+sideB+"Width"],10)}function getSize(axis,body,html,computedStyle){return Math.max(body["offset"+axis],body["scroll"+axis],html["client"+axis],html["offset"+axis],html["scroll"+axis],isIE(10)?parseInt(html["offset"+axis])+parseInt(computedStyle["margin"+(axis==="Height"?"Top":"Left")])+parseInt(computedStyle["margin"+(axis==="Height"?"Bottom":"Right")]):0)}function getWindowSizes(document){var body=document.body;var html=document.documentElement;var computedStyle=isIE(10)&&getComputedStyle(html);return{height:getSize("Height",body,html,computedStyle),width:getSize("Width",body,html,computedStyle)}}var classCallCheck=function(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function")}};var createClass=function(){function defineProperties(target,props){for(var i=0;i2&&arguments[2]!==undefined?arguments[2]:false;var isIE10=isIE(10);var isHTML=parent.nodeName==="HTML";var childrenRect=getBoundingClientRect(children);var parentRect=getBoundingClientRect(parent);var scrollParent=getScrollParent(children);var styles=getStyleComputedProperty(parent);var borderTopWidth=parseFloat(styles.borderTopWidth,10);var borderLeftWidth=parseFloat(styles.borderLeftWidth,10);if(fixedPosition&&isHTML){parentRect.top=Math.max(parentRect.top,0);parentRect.left=Math.max(parentRect.left,0)}var offsets=getClientRect({top:childrenRect.top-parentRect.top-borderTopWidth,left:childrenRect.left-parentRect.left-borderLeftWidth,width:childrenRect.width,height:childrenRect.height});offsets.marginTop=0;offsets.marginLeft=0;if(!isIE10&&isHTML){var marginTop=parseFloat(styles.marginTop,10);var marginLeft=parseFloat(styles.marginLeft,10);offsets.top-=borderTopWidth-marginTop;offsets.bottom-=borderTopWidth-marginTop;offsets.left-=borderLeftWidth-marginLeft;offsets.right-=borderLeftWidth-marginLeft;offsets.marginTop=marginTop;offsets.marginLeft=marginLeft}if(isIE10&&!fixedPosition?parent.contains(scrollParent):parent===scrollParent&&scrollParent.nodeName!=="BODY"){offsets=includeScroll(offsets,parent)}return offsets}function getViewportOffsetRectRelativeToArtbitraryNode(element){var excludeScroll=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var html=element.ownerDocument.documentElement;var relativeOffset=getOffsetRectRelativeToArbitraryNode(element,html);var width=Math.max(html.clientWidth,window.innerWidth||0);var height=Math.max(html.clientHeight,window.innerHeight||0);var scrollTop=!excludeScroll?getScroll(html):0;var scrollLeft=!excludeScroll?getScroll(html,"left"):0;var offset={top:scrollTop-relativeOffset.top+relativeOffset.marginTop,left:scrollLeft-relativeOffset.left+relativeOffset.marginLeft,width:width,height:height};return getClientRect(offset)}function isFixed(element){var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){return false}if(getStyleComputedProperty(element,"position")==="fixed"){return true}var parentNode=getParentNode(element);if(!parentNode){return false}return isFixed(parentNode)}function getFixedPositionOffsetParent(element){if(!element||!element.parentElement||isIE()){return document.documentElement}var el=element.parentElement;while(el&&getStyleComputedProperty(el,"transform")==="none"){el=el.parentElement}return el||document.documentElement}function getBoundaries(popper,reference,padding,boundariesElement){var fixedPosition=arguments.length>4&&arguments[4]!==undefined?arguments[4]:false;var boundaries={top:0,left:0};var offsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);if(boundariesElement==="viewport"){boundaries=getViewportOffsetRectRelativeToArtbitraryNode(offsetParent,fixedPosition)}else{var boundariesNode=void 0;if(boundariesElement==="scrollParent"){boundariesNode=getScrollParent(getParentNode(reference));if(boundariesNode.nodeName==="BODY"){boundariesNode=popper.ownerDocument.documentElement}}else if(boundariesElement==="window"){boundariesNode=popper.ownerDocument.documentElement}else{boundariesNode=boundariesElement}var offsets=getOffsetRectRelativeToArbitraryNode(boundariesNode,offsetParent,fixedPosition);if(boundariesNode.nodeName==="HTML"&&!isFixed(offsetParent)){var _getWindowSizes=getWindowSizes(popper.ownerDocument),height=_getWindowSizes.height,width=_getWindowSizes.width;boundaries.top+=offsets.top-offsets.marginTop;boundaries.bottom=height+offsets.top;boundaries.left+=offsets.left-offsets.marginLeft;boundaries.right=width+offsets.left}else{boundaries=offsets}}padding=padding||0;var isPaddingNumber=typeof padding==="number";boundaries.left+=isPaddingNumber?padding:padding.left||0;boundaries.top+=isPaddingNumber?padding:padding.top||0;boundaries.right-=isPaddingNumber?padding:padding.right||0;boundaries.bottom-=isPaddingNumber?padding:padding.bottom||0;return boundaries}function getArea(_ref){var width=_ref.width,height=_ref.height;return width*height}function computeAutoPlacement(placement,refRect,popper,reference,boundariesElement){var padding=arguments.length>5&&arguments[5]!==undefined?arguments[5]:0;if(placement.indexOf("auto")===-1){return placement}var boundaries=getBoundaries(popper,reference,padding,boundariesElement);var rects={top:{width:boundaries.width,height:refRect.top-boundaries.top},right:{width:boundaries.right-refRect.right,height:boundaries.height},bottom:{width:boundaries.width,height:boundaries.bottom-refRect.bottom},left:{width:refRect.left-boundaries.left,height:boundaries.height}};var sortedAreas=Object.keys(rects).map(function(key){return _extends({key:key},rects[key],{area:getArea(rects[key])})}).sort(function(a,b){return b.area-a.area});var filteredAreas=sortedAreas.filter(function(_ref2){var width=_ref2.width,height=_ref2.height;return width>=popper.clientWidth&&height>=popper.clientHeight});var computedPlacement=filteredAreas.length>0?filteredAreas[0].key:sortedAreas[0].key;var variation=placement.split("-")[1];return computedPlacement+(variation?"-"+variation:"")}function getReferenceOffsets(state,popper,reference){var fixedPosition=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var commonOffsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);return getOffsetRectRelativeToArbitraryNode(reference,commonOffsetParent,fixedPosition)}function getOuterSizes(element){var window=element.ownerDocument.defaultView;var styles=window.getComputedStyle(element);var x=parseFloat(styles.marginTop||0)+parseFloat(styles.marginBottom||0);var y=parseFloat(styles.marginLeft||0)+parseFloat(styles.marginRight||0);var result={width:element.offsetWidth+y,height:element.offsetHeight+x};return result}function getOppositePlacement(placement){var hash={left:"right",right:"left",bottom:"top",top:"bottom"};return placement.replace(/left|right|bottom|top/g,function(matched){return hash[matched]})}function getPopperOffsets(popper,referenceOffsets,placement){placement=placement.split("-")[0];var popperRect=getOuterSizes(popper);var popperOffsets={width:popperRect.width,height:popperRect.height};var isHoriz=["right","left"].indexOf(placement)!==-1;var mainSide=isHoriz?"top":"left";var secondarySide=isHoriz?"left":"top";var measurement=isHoriz?"height":"width";var secondaryMeasurement=!isHoriz?"height":"width";popperOffsets[mainSide]=referenceOffsets[mainSide]+referenceOffsets[measurement]/2-popperRect[measurement]/2;if(placement===secondarySide){popperOffsets[secondarySide]=referenceOffsets[secondarySide]-popperRect[secondaryMeasurement]}else{popperOffsets[secondarySide]=referenceOffsets[getOppositePlacement(secondarySide)]}return popperOffsets}function find(arr,check){if(Array.prototype.find){return arr.find(check)}return arr.filter(check)[0]}function findIndex(arr,prop,value){if(Array.prototype.findIndex){return arr.findIndex(function(cur){return cur[prop]===value})}var match=find(arr,function(obj){return obj[prop]===value});return arr.indexOf(match)}function runModifiers(modifiers,data,ends){var modifiersToRun=ends===undefined?modifiers:modifiers.slice(0,findIndex(modifiers,"name",ends));modifiersToRun.forEach(function(modifier){if(modifier["function"]){console.warn("`modifier.function` is deprecated, use `modifier.fn`!")}var fn=modifier["function"]||modifier.fn;if(modifier.enabled&&isFunction(fn)){data.offsets.popper=getClientRect(data.offsets.popper);data.offsets.reference=getClientRect(data.offsets.reference);data=fn(data,modifier)}});return data}function update(){if(this.state.isDestroyed){return}var data={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:false,offsets:{}};data.offsets.reference=getReferenceOffsets(this.state,this.popper,this.reference,this.options.positionFixed);data.placement=computeAutoPlacement(this.options.placement,data.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding);data.originalPlacement=data.placement;data.positionFixed=this.options.positionFixed;data.offsets.popper=getPopperOffsets(this.popper,data.offsets.reference,data.placement);data.offsets.popper.position=this.options.positionFixed?"fixed":"absolute";data=runModifiers(this.modifiers,data);if(!this.state.isCreated){this.state.isCreated=true;this.options.onCreate(data)}else{this.options.onUpdate(data)}}function isModifierEnabled(modifiers,modifierName){return modifiers.some(function(_ref){var name=_ref.name,enabled=_ref.enabled;return enabled&&name===modifierName})}function getSupportedPropertyName(property){var prefixes=[false,"ms","Webkit","Moz","O"];var upperProp=property.charAt(0).toUpperCase()+property.slice(1);for(var i=0;ipopper[opSide]){data.offsets.popper[side]+=reference[side]+arrowElementSize-popper[opSide]}data.offsets.popper=getClientRect(data.offsets.popper);var center=reference[side]+reference[len]/2-arrowElementSize/2;var css=getStyleComputedProperty(data.instance.popper);var popperMarginSide=parseFloat(css["margin"+sideCapitalized],10);var popperBorderSide=parseFloat(css["border"+sideCapitalized+"Width"],10);var sideValue=center-data.offsets.popper[side]-popperMarginSide-popperBorderSide;sideValue=Math.max(Math.min(popper[len]-arrowElementSize,sideValue),0);data.arrowElement=arrowElement;data.offsets.arrow=(_data$offsets$arrow={},defineProperty(_data$offsets$arrow,side,Math.round(sideValue)),defineProperty(_data$offsets$arrow,altSide,""),_data$offsets$arrow);return data}function getOppositeVariation(variation){if(variation==="end"){return"start"}else if(variation==="start"){return"end"}return variation}var placements=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"];var validPlacements=placements.slice(3);function clockwise(placement){var counter=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var index=validPlacements.indexOf(placement);var arr=validPlacements.slice(index+1).concat(validPlacements.slice(0,index));return counter?arr.reverse():arr}var BEHAVIORS={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function flip(data,options){if(isModifierEnabled(data.instance.modifiers,"inner")){return data}if(data.flipped&&data.placement===data.originalPlacement){return data}var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,options.boundariesElement,data.positionFixed);var placement=data.placement.split("-")[0];var placementOpposite=getOppositePlacement(placement);var variation=data.placement.split("-")[1]||"";var flipOrder=[];switch(options.behavior){case BEHAVIORS.FLIP:flipOrder=[placement,placementOpposite];break;case BEHAVIORS.CLOCKWISE:flipOrder=clockwise(placement);break;case BEHAVIORS.COUNTERCLOCKWISE:flipOrder=clockwise(placement,true);break;default:flipOrder=options.behavior}flipOrder.forEach(function(step,index){if(placement!==step||flipOrder.length===index+1){return data}placement=data.placement.split("-")[0];placementOpposite=getOppositePlacement(placement);var popperOffsets=data.offsets.popper;var refOffsets=data.offsets.reference;var floor=Math.floor;var overlapsRef=placement==="left"&&floor(popperOffsets.right)>floor(refOffsets.left)||placement==="right"&&floor(popperOffsets.left)floor(refOffsets.top)||placement==="bottom"&&floor(popperOffsets.top)floor(boundaries.right);var overflowsTop=floor(popperOffsets.top)floor(boundaries.bottom);var overflowsBoundaries=placement==="left"&&overflowsLeft||placement==="right"&&overflowsRight||placement==="top"&&overflowsTop||placement==="bottom"&&overflowsBottom;var isVertical=["top","bottom"].indexOf(placement)!==-1;var flippedVariation=!!options.flipVariations&&(isVertical&&variation==="start"&&overflowsLeft||isVertical&&variation==="end"&&overflowsRight||!isVertical&&variation==="start"&&overflowsTop||!isVertical&&variation==="end"&&overflowsBottom);if(overlapsRef||overflowsBoundaries||flippedVariation){data.flipped=true;if(overlapsRef||overflowsBoundaries){placement=flipOrder[index+1]}if(flippedVariation){variation=getOppositeVariation(variation)}data.placement=placement+(variation?"-"+variation:"");data.offsets.popper=_extends({},data.offsets.popper,getPopperOffsets(data.instance.popper,data.offsets.reference,data.placement));data=runModifiers(data.instance.modifiers,data,"flip")}});return data}function keepTogether(data){var _data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var placement=data.placement.split("-")[0];var floor=Math.floor;var isVertical=["top","bottom"].indexOf(placement)!==-1;var side=isVertical?"right":"bottom";var opSide=isVertical?"left":"top";var measurement=isVertical?"width":"height";if(popper[side]floor(reference[side])){data.offsets.popper[opSide]=floor(reference[side])}return data}function toValue(str,measurement,popperOffsets,referenceOffsets){var split=str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/);var value=+split[1];var unit=split[2];if(!value){return str}if(unit.indexOf("%")===0){var element=void 0;switch(unit){case"%p":element=popperOffsets;break;case"%":case"%r":default:element=referenceOffsets}var rect=getClientRect(element);return rect[measurement]/100*value}else if(unit==="vh"||unit==="vw"){var size=void 0;if(unit==="vh"){size=Math.max(document.documentElement.clientHeight,window.innerHeight||0)}else{size=Math.max(document.documentElement.clientWidth,window.innerWidth||0)}return size/100*value}else{return value}}function parseOffset(offset,popperOffsets,referenceOffsets,basePlacement){var offsets=[0,0];var useHeight=["right","left"].indexOf(basePlacement)!==-1;var fragments=offset.split(/(\+|\-)/).map(function(frag){return frag.trim()});var divider=fragments.indexOf(find(fragments,function(frag){return frag.search(/,|\s/)!==-1}));if(fragments[divider]&&fragments[divider].indexOf(",")===-1){console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.")}var splitRegex=/\s*,\s*|\s+/;var ops=divider!==-1?[fragments.slice(0,divider).concat([fragments[divider].split(splitRegex)[0]]),[fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider+1))]:[fragments];ops=ops.map(function(op,index){var measurement=(index===1?!useHeight:useHeight)?"height":"width";var mergeWithPrevious=false;return op.reduce(function(a,b){if(a[a.length-1]===""&&["+","-"].indexOf(b)!==-1){a[a.length-1]=b;mergeWithPrevious=true;return a}else if(mergeWithPrevious){a[a.length-1]+=b;mergeWithPrevious=false;return a}else{return a.concat(b)}},[]).map(function(str){return toValue(str,measurement,popperOffsets,referenceOffsets)})});ops.forEach(function(op,index){op.forEach(function(frag,index2){if(isNumeric(frag)){offsets[index]+=frag*(op[index2-1]==="-"?-1:1)}})});return offsets}function offset(data,_ref){var offset=_ref.offset;var placement=data.placement,_data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var basePlacement=placement.split("-")[0];var offsets=void 0;if(isNumeric(+offset)){offsets=[+offset,0]}else{offsets=parseOffset(offset,popper,reference,basePlacement)}if(basePlacement==="left"){popper.top+=offsets[0];popper.left-=offsets[1]}else if(basePlacement==="right"){popper.top+=offsets[0];popper.left+=offsets[1]}else if(basePlacement==="top"){popper.left+=offsets[0];popper.top-=offsets[1]}else if(basePlacement==="bottom"){popper.left+=offsets[0];popper.top+=offsets[1]}data.popper=popper;return data}function preventOverflow(data,options){var boundariesElement=options.boundariesElement||getOffsetParent(data.instance.popper);if(data.instance.reference===boundariesElement){boundariesElement=getOffsetParent(boundariesElement)}var transformProp=getSupportedPropertyName("transform");var popperStyles=data.instance.popper.style;var top=popperStyles.top,left=popperStyles.left,transform=popperStyles[transformProp];popperStyles.top="";popperStyles.left="";popperStyles[transformProp]="";var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,boundariesElement,data.positionFixed);popperStyles.top=top;popperStyles.left=left;popperStyles[transformProp]=transform;options.boundaries=boundaries;var order=options.priority;var popper=data.offsets.popper;var check={primary:function primary(placement){var value=popper[placement];if(popper[placement]boundaries[placement]&&!options.escapeWithReference){value=Math.min(popper[mainSide],boundaries[placement]-(placement==="right"?popper.width:popper.height))}return defineProperty({},mainSide,value)}};order.forEach(function(placement){var side=["left","top"].indexOf(placement)!==-1?"primary":"secondary";popper=_extends({},popper,check[side](placement))});data.offsets.popper=popper;return data}function shift(data){var placement=data.placement;var basePlacement=placement.split("-")[0];var shiftvariation=placement.split("-")[1];if(shiftvariation){var _data$offsets=data.offsets,reference=_data$offsets.reference,popper=_data$offsets.popper;var isVertical=["bottom","top"].indexOf(basePlacement)!==-1;var side=isVertical?"left":"top";var measurement=isVertical?"width":"height";var shiftOffsets={start:defineProperty({},side,reference[side]),end:defineProperty({},side,reference[side]+reference[measurement]-popper[measurement])};data.offsets.popper=_extends({},popper,shiftOffsets[shiftvariation])}return data}function hide(data){if(!isModifierRequired(data.instance.modifiers,"hide","preventOverflow")){return data}var refRect=data.offsets.reference;var bound=find(data.instance.modifiers,function(modifier){return modifier.name==="preventOverflow"}).boundaries;if(refRect.bottombound.right||refRect.top>bound.bottom||refRect.right2&&arguments[2]!==undefined?arguments[2]:{};classCallCheck(this,Popper);this.scheduleUpdate=function(){return requestAnimationFrame(_this.update)};this.update=debounce(this.update.bind(this));this.options=_extends({},Popper.Defaults,options);this.state={isDestroyed:false,isCreated:false,scrollParents:[]};this.reference=reference&&reference.jquery?reference[0]:reference;this.popper=popper&&popper.jquery?popper[0]:popper;this.options.modifiers={};Object.keys(_extends({},Popper.Defaults.modifiers,options.modifiers)).forEach(function(name){_this.options.modifiers[name]=_extends({},Popper.Defaults.modifiers[name]||{},options.modifiers?options.modifiers[name]:{})});this.modifiers=Object.keys(this.options.modifiers).map(function(name){return _extends({name:name},_this.options.modifiers[name])}).sort(function(a,b){return a.order-b.order});this.modifiers.forEach(function(modifierOptions){if(modifierOptions.enabled&&isFunction(modifierOptions.onLoad)){modifierOptions.onLoad(_this.reference,_this.popper,_this.options,modifierOptions,_this.state)}});this.update();var eventsEnabled=this.options.eventsEnabled;if(eventsEnabled){this.enableEventListeners()}this.state.eventsEnabled=eventsEnabled}createClass(Popper,[{key:"update",value:function update$$1(){return update.call(this)}},{key:"destroy",value:function destroy$$1(){return destroy.call(this)}},{key:"enableEventListeners",value:function enableEventListeners$$1(){return enableEventListeners.call(this)}},{key:"disableEventListeners",value:function disableEventListeners$$1(){return disableEventListeners.call(this)}}]);return Popper}();Popper.Utils=(typeof window!=="undefined"?window:global).PopperUtils;Popper.placements=placements;Popper.Defaults=Defaults;return Popper}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets-v5/js/select2.min.min.js b/vendor/ayecode/wp-ayecode-ui/assets-v5/js/select2.min.min.js deleted file mode 100644 index 1915d34..0000000 --- a/vendor/ayecode/wp-ayecode-ui/assets-v5/js/select2.min.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof module==="object"&&module.exports){module.exports=function(root,jQuery){if(jQuery===undefined){if(typeof window!=="undefined"){jQuery=require("jquery")}else{jQuery=require("jquery")(root)}}factory(jQuery);return jQuery}}else{factory(jQuery)}})(function(jQuery){var S2=function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd){var S2=jQuery.fn.select2.amd}var S2;(function(){if(!S2||!S2.requirejs){if(!S2){S2={}}else{require=S2}var requirejs,require,define;(function(undef){var main,req,makeMap,handlers,defined={},waiting={},config={},defining={},hasOwn=Object.prototype.hasOwnProperty,aps=[].slice,jsSuffixRegExp=/\.js$/;function hasProp(obj,prop){return hasOwn.call(obj,prop)}function normalize(name,baseName){var nameParts,nameSegment,mapValue,foundMap,lastIndex,foundI,foundStarMap,starI,i,j,part,normalizedBaseParts,baseParts=baseName&&baseName.split("/"),map=config.map,starMap=map&&map["*"]||{};if(name){name=name.split("/");lastIndex=name.length-1;if(config.nodeIdCompat&&jsSuffixRegExp.test(name[lastIndex])){name[lastIndex]=name[lastIndex].replace(jsSuffixRegExp,"")}if(name[0].charAt(0)==="."&&baseParts){normalizedBaseParts=baseParts.slice(0,baseParts.length-1);name=normalizedBaseParts.concat(name)}for(i=0;i0){name.splice(i-1,2);i-=2}}}name=name.join("/")}if((baseParts||starMap)&&map){nameParts=name.split("/");for(i=nameParts.length;i>0;i-=1){nameSegment=nameParts.slice(0,i).join("/");if(baseParts){for(j=baseParts.length;j>0;j-=1){mapValue=map[baseParts.slice(0,j).join("/")];if(mapValue){mapValue=mapValue[nameSegment];if(mapValue){foundMap=mapValue;foundI=i;break}}}}if(foundMap){break}if(!foundStarMap&&starMap&&starMap[nameSegment]){foundStarMap=starMap[nameSegment];starI=i}}if(!foundMap&&foundStarMap){foundMap=foundStarMap;foundI=starI}if(foundMap){nameParts.splice(0,foundI,foundMap);name=nameParts.join("/")}}return name}function makeRequire(relName,forceSync){return function(){var args=aps.call(arguments,0);if(typeof args[0]!=="string"&&args.length===1){args.push(null)}return req.apply(undef,args.concat([relName,forceSync]))}}function makeNormalize(relName){return function(name){return normalize(name,relName)}}function makeLoad(depName){return function(value){defined[depName]=value}}function callDep(name){if(hasProp(waiting,name)){var args=waiting[name];delete waiting[name];defining[name]=true;main.apply(undef,args)}if(!hasProp(defined,name)&&!hasProp(defining,name)){throw new Error("No "+name)}return defined[name]}function splitPrefix(name){var prefix,index=name?name.indexOf("!"):-1;if(index>-1){prefix=name.substring(0,index);name=name.substring(index+1,name.length)}return[prefix,name]}function makeRelParts(relName){return relName?splitPrefix(relName):[]}makeMap=function(name,relParts){var plugin,parts=splitPrefix(name),prefix=parts[0],relResourceName=relParts[1];name=parts[1];if(prefix){prefix=normalize(prefix,relResourceName);plugin=callDep(prefix)}if(prefix){if(plugin&&plugin.normalize){name=plugin.normalize(name,makeNormalize(relResourceName))}else{name=normalize(name,relResourceName)}}else{name=normalize(name,relResourceName);parts=splitPrefix(name);prefix=parts[0];name=parts[1];if(prefix){plugin=callDep(prefix)}}return{f:prefix?prefix+"!"+name:name,n:name,pr:prefix,p:plugin}};function makeConfig(name){return function(){return config&&config.config&&config.config[name]||{}}}handlers={require:function(name){return makeRequire(name)},exports:function(name){var e=defined[name];if(typeof e!=="undefined"){return e}else{return defined[name]={}}},module:function(name){return{id:name,uri:"",exports:defined[name],config:makeConfig(name)}}};main=function(name,deps,callback,relName){var cjsModule,depName,ret,map,i,relParts,args=[],callbackType=typeof callback,usingExports;relName=relName||name;relParts=makeRelParts(relName);if(callbackType==="undefined"||callbackType==="function"){deps=!deps.length&&callback.length?["require","exports","module"]:deps;for(i=0;i0){unshift.call(arguments,SuperClass.prototype.constructor);calledConstructor=DecoratorClass.prototype.constructor}calledConstructor.apply(this,arguments)}DecoratorClass.displayName=SuperClass.displayName;function ctr(){this.constructor=DecoratedClass}DecoratedClass.prototype=new ctr;for(var m=0;m":">",'"':""","'":"'","/":"/"};if(typeof markup!=="string"){return markup}return String(markup).replace(/[&<>"'\/\\]/g,function(match){return replaceMap[match]})};Utils.appendMany=function($element,$nodes){if($.fn.jquery.substr(0,3)==="1.7"){var $jqNodes=$();$.map($nodes,function(node){$jqNodes=$jqNodes.add(node)});$nodes=$jqNodes}$element.append($nodes)};Utils.__cache={};var id=0;Utils.GetUniqueElementId=function(element){var select2Id=element.getAttribute("data-select2-id");if(select2Id==null){if(element.id){select2Id=element.id;element.setAttribute("data-select2-id",select2Id)}else{element.setAttribute("data-select2-id",++id);select2Id=id.toString()}}return select2Id};Utils.StoreData=function(element,name,value){var id=Utils.GetUniqueElementId(element);if(!Utils.__cache[id]){Utils.__cache[id]={}}Utils.__cache[id][name]=value};Utils.GetData=function(element,name){var id=Utils.GetUniqueElementId(element);if(name){if(Utils.__cache[id]){if(Utils.__cache[id][name]!=null){return Utils.__cache[id][name]}return $(element).data(name)}return $(element).data(name)}else{return Utils.__cache[id]}};Utils.RemoveData=function(element){var id=Utils.GetUniqueElementId(element);if(Utils.__cache[id]!=null){delete Utils.__cache[id]}element.removeAttribute("data-select2-id")};return Utils});S2.define("select2/results",["jquery","./utils"],function($,Utils){function Results($element,options,dataAdapter){this.$element=$element;this.data=dataAdapter;this.options=options;Results.__super__.constructor.call(this)}Utils.Extend(Results,Utils.Observable);Results.prototype.render=function(){var $results=$('
    ');if(this.options.get("multiple")){$results.attr("aria-multiselectable","true")}this.$results=$results;return $results};Results.prototype.clear=function(){this.$results.empty()};Results.prototype.displayMessage=function(params){var escapeMarkup=this.options.get("escapeMarkup");this.clear();this.hideLoading();var $message=$('');var message=this.options.get("translations").get(params.message);$message.append(escapeMarkup(message(params.args)));$message[0].className+=" select2-results__message";this.$results.append($message)};Results.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()};Results.prototype.append=function(data){this.hideLoading();var $options=[];if(data.results==null||data.results.length===0){if(this.$results.children().length===0){this.trigger("results:message",{message:"noResults"})}return}data.results=this.sort(data.results);for(var d=0;d0){$selected.first().trigger("mouseenter")}else{$options.first().trigger("mouseenter")}this.ensureHighlightVisible()};Results.prototype.setClasses=function(){var self=this;this.data.current(function(selected){var selectedIds=$.map(selected,function(s){return s.id.toString()});var $options=self.$results.find(".select2-results__option[aria-selected]");$options.each(function(){var $option=$(this);var item=Utils.GetData(this,"data");var id=""+item.id;if(item.element!=null&&item.element.selected||item.element==null&&$.inArray(id,selectedIds)>-1){$option.attr("aria-selected","true")}else{$option.attr("aria-selected","false")}})})};Results.prototype.showLoading=function(params){this.hideLoading();var loadingMore=this.options.get("translations").get("searching");var loading={disabled:true,loading:true,text:loadingMore(params)};var $loading=this.option(loading);$loading.className+=" loading-results";this.$results.prepend($loading)};Results.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()};Results.prototype.option=function(data){var option=document.createElement("li");option.className="select2-results__option";var attrs={role:"option","aria-selected":"false"};var matches=window.Element.prototype.matches||window.Element.prototype.msMatchesSelector||window.Element.prototype.webkitMatchesSelector;if(data.element!=null&&matches.call(data.element,":disabled")||data.element==null&&data.disabled){delete attrs["aria-selected"];attrs["aria-disabled"]="true"}if(data.id==null){delete attrs["aria-selected"]}if(data._resultId!=null){option.id=data._resultId}if(data.title){option.title=data.title}if(data.children){attrs.role="group";attrs["aria-label"]=data.text;delete attrs["aria-selected"]}for(var attr in attrs){var val=attrs[attr];option.setAttribute(attr,val)}if(data.children){var $option=$(option);var label=document.createElement("strong");label.className="select2-results__group";var $label=$(label);this.template(data,label);var $children=[];for(var c=0;c",{class:"select2-results__options select2-results__options--nested"});$childrenContainer.append($children);$option.append(label);$option.append($childrenContainer)}else{this.template(data,option)}Utils.StoreData(option,"data",data);return option};Results.prototype.bind=function(container,$container){var self=this;var id=container.id+"-results";this.$results.attr("id",id);container.on("results:all",function(params){self.clear();self.append(params.data);if(container.isOpen()){self.setClasses();self.highlightFirstItem()}});container.on("results:append",function(params){self.append(params.data);if(container.isOpen()){self.setClasses()}});container.on("query",function(params){self.hideMessages();self.showLoading(params)});container.on("select",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("unselect",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("open",function(){self.$results.attr("aria-expanded","true");self.$results.attr("aria-hidden","false");self.setClasses();self.ensureHighlightVisible()});container.on("close",function(){self.$results.attr("aria-expanded","false");self.$results.attr("aria-hidden","true");self.$results.removeAttr("aria-activedescendant")});container.on("results:toggle",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}$highlighted.trigger("mouseup")});container.on("results:select",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}var data=Utils.GetData($highlighted[0],"data");if($highlighted.attr("aria-selected")=="true"){self.trigger("close",{})}else{self.trigger("select",{data:data})}});container.on("results:previous",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);if(currentIndex<=0){return}var nextIndex=currentIndex-1;if($highlighted.length===0){nextIndex=0}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top;var nextTop=$next.offset().top;var nextOffset=self.$results.scrollTop()+(nextTop-currentOffset);if(nextIndex===0){self.$results.scrollTop(0)}else if(nextTop-currentOffset<0){self.$results.scrollTop(nextOffset)}});container.on("results:next",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var nextIndex=currentIndex+1;if(nextIndex>=$options.length){return}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top+self.$results.outerHeight(false);var nextBottom=$next.offset().top+$next.outerHeight(false);var nextOffset=self.$results.scrollTop()+nextBottom-currentOffset;if(nextIndex===0){self.$results.scrollTop(0)}else if(nextBottom>currentOffset){self.$results.scrollTop(nextOffset)}});container.on("results:focus",function(params){params.element.addClass("select2-results__option--highlighted")});container.on("results:message",function(params){self.displayMessage(params)});if($.fn.mousewheel){this.$results.on("mousewheel",function(e){var top=self.$results.scrollTop();var bottom=self.$results.get(0).scrollHeight-top+e.deltaY;var isAtTop=e.deltaY>0&&top-e.deltaY<=0;var isAtBottom=e.deltaY<0&&bottom<=self.$results.height();if(isAtTop){self.$results.scrollTop(0);e.preventDefault();e.stopPropagation()}else if(isAtBottom){self.$results.scrollTop(self.$results.get(0).scrollHeight-self.$results.height());e.preventDefault();e.stopPropagation()}})}this.$results.on("mouseup",".select2-results__option[aria-selected]",function(evt){var $this=$(this);var data=Utils.GetData(this,"data");if($this.attr("aria-selected")==="true"){if(self.options.get("multiple")){self.trigger("unselect",{originalEvent:evt,data:data})}else{self.trigger("close",{})}return}self.trigger("select",{originalEvent:evt,data:data})});this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(evt){var data=Utils.GetData(this,"data");self.getHighlightedResults().removeClass("select2-results__option--highlighted");self.trigger("results:focus",{data:data,element:$(this)})})};Results.prototype.getHighlightedResults=function(){var $highlighted=this.$results.find(".select2-results__option--highlighted");return $highlighted};Results.prototype.destroy=function(){this.$results.remove()};Results.prototype.ensureHighlightVisible=function(){var $highlighted=this.getHighlightedResults();if($highlighted.length===0){return}var $options=this.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var currentOffset=this.$results.offset().top;var nextTop=$highlighted.offset().top;var nextOffset=this.$results.scrollTop()+(nextTop-currentOffset);var offsetDelta=nextTop-currentOffset;nextOffset-=$highlighted.outerHeight(false)*2;if(currentIndex<=2){this.$results.scrollTop(0)}else if(offsetDelta>this.$results.outerHeight()||offsetDelta<0){this.$results.scrollTop(nextOffset)}};Results.prototype.template=function(result,container){var template=this.options.get("templateResult");var escapeMarkup=this.options.get("escapeMarkup");var content=template(result,container);if(content==null){container.style.display="none"}else if(typeof content==="string"){container.innerHTML=escapeMarkup(content)}else{$(container).append(content)}};return Results});S2.define("select2/keys",[],function(){var KEYS={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return KEYS});S2.define("select2/selection/base",["jquery","../utils","../keys"],function($,Utils,KEYS){function BaseSelection($element,options){this.$element=$element;this.options=options;BaseSelection.__super__.constructor.call(this)}Utils.Extend(BaseSelection,Utils.Observable);BaseSelection.prototype.render=function(){var $selection=$('");this._tabindex=0;if(Utils.GetData(this.$element[0],"old-tabindex")!=null){this._tabindex=Utils.GetData(this.$element[0],"old-tabindex")}else if(this.$element.attr("tabindex")!=null){this._tabindex=this.$element.attr("tabindex")}$selection.attr("title",this.$element.attr("title"));$selection.attr("tabindex",this._tabindex);$selection.attr("aria-disabled","false");this.$selection=$selection;return $selection};BaseSelection.prototype.bind=function(container,$container){var self=this;var resultsId=container.id+"-results";this.container=container;this.$selection.on("focus",function(evt){self.trigger("focus",evt)});this.$selection.on("blur",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",function(evt){self.trigger("keypress",evt);if(evt.which===KEYS.SPACE){evt.preventDefault()}});container.on("results:focus",function(params){self.$selection.attr("aria-activedescendant",params.data._resultId)});container.on("selection:update",function(params){self.update(params.data)});container.on("open",function(){self.$selection.attr("aria-expanded","true");self.$selection.attr("aria-owns",resultsId);self._attachCloseHandler(container)});container.on("close",function(){self.$selection.attr("aria-expanded","false");self.$selection.removeAttr("aria-activedescendant");self.$selection.removeAttr("aria-owns");self.$selection.trigger("focus");self._detachCloseHandler(container)});container.on("enable",function(){self.$selection.attr("tabindex",self._tabindex);self.$selection.attr("aria-disabled","false")});container.on("disable",function(){self.$selection.attr("tabindex","-1");self.$selection.attr("aria-disabled","true")})};BaseSelection.prototype._handleBlur=function(evt){var self=this;window.setTimeout(function(){if(document.activeElement==self.$selection[0]||$.contains(self.$selection[0],document.activeElement)){return}self.trigger("blur",evt)},1)};BaseSelection.prototype._attachCloseHandler=function(container){$(document.body).on("mousedown.select2."+container.id,function(e){var $target=$(e.target);var $select=$target.closest(".select2");var $all=$(".select2.select2-container--open");$all.each(function(){if(this==$select[0]){return}var $element=Utils.GetData(this,"element");$element.select2("close")})})};BaseSelection.prototype._detachCloseHandler=function(container){$(document.body).off("mousedown.select2."+container.id)};BaseSelection.prototype.position=function($selection,$container){var $selectionContainer=$container.find(".selection");$selectionContainer.append($selection)};BaseSelection.prototype.destroy=function(){this._detachCloseHandler(this.container)};BaseSelection.prototype.update=function(data){throw new Error("The `update` method must be defined in child classes.")};return BaseSelection});S2.define("select2/selection/single",["jquery","./base","../utils","../keys"],function($,BaseSelection,Utils,KEYS){function SingleSelection(){SingleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(SingleSelection,BaseSelection);SingleSelection.prototype.render=function(){var $selection=SingleSelection.__super__.render.call(this);$selection.addClass("select2-selection--single");$selection.html(''+''+''+"");return $selection};SingleSelection.prototype.bind=function(container,$container){var self=this;SingleSelection.__super__.bind.apply(this,arguments);var id=container.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",id).attr("role","textbox").attr("aria-readonly","true");this.$selection.attr("aria-labelledby",id);this.$selection.on("mousedown",function(evt){if(evt.which!==1){return}self.trigger("toggle",{originalEvent:evt})});this.$selection.on("focus",function(evt){});this.$selection.on("blur",function(evt){});container.on("focus",function(evt){if(!container.isOpen()){self.$selection.trigger("focus")}})};SingleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};SingleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};SingleSelection.prototype.selectionContainer=function(){return $("")};SingleSelection.prototype.update=function(data){if(data.length===0){this.clear();return}var selection=data[0];var $rendered=this.$selection.find(".select2-selection__rendered");var formatted=this.display(selection,$rendered);$rendered.empty().append(formatted);var title=selection.title||selection.text;if(title){$rendered.attr("title",title)}else{$rendered.removeAttr("title")}};return SingleSelection});S2.define("select2/selection/multiple",["jquery","./base","../utils"],function($,BaseSelection,Utils){function MultipleSelection($element,options){MultipleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(MultipleSelection,BaseSelection);MultipleSelection.prototype.render=function(){var $selection=MultipleSelection.__super__.render.call(this);$selection.addClass("select2-selection--multiple");$selection.html('
      ');return $selection};MultipleSelection.prototype.bind=function(container,$container){var self=this;MultipleSelection.__super__.bind.apply(this,arguments);this.$selection.on("click",function(evt){self.trigger("toggle",{originalEvent:evt})});this.$selection.on("click",".select2-selection__choice__remove",function(evt){if(self.options.get("disabled")){return}var $remove=$(this);var $selection=$remove.parent();var data=Utils.GetData($selection[0],"data");self.trigger("unselect",{originalEvent:evt,data:data})})};MultipleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};MultipleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};MultipleSelection.prototype.selectionContainer=function(){var $container=$('
    • '+''+"×"+""+"
    • ");return $container};MultipleSelection.prototype.update=function(data){this.clear();if(data.length===0){return}var $selections=[];for(var d=0;d1;if(multipleSelections||singlePlaceholder){return decorated.call(this,data)}this.clear();var $placeholder=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append($placeholder)};return Placeholder});S2.define("select2/selection/allowClear",["jquery","../keys","../utils"],function($,KEYS,Utils){function AllowClear(){}AllowClear.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);if(this.placeholder==null){if(this.options.get("debug")&&window.console&&console.error){console.error("Select2: The `allowClear` option should be used in combination "+"with the `placeholder` option.")}}this.$selection.on("mousedown",".select2-selection__clear",function(evt){self._handleClear(evt)});container.on("keypress",function(evt){self._handleKeyboardClear(evt,container)})};AllowClear.prototype._handleClear=function(_,evt){if(this.options.get("disabled")){return}var $clear=this.$selection.find(".select2-selection__clear");if($clear.length===0){return}evt.stopPropagation();var data=Utils.GetData($clear[0],"data");var previousVal=this.$element.val();this.$element.val(this.placeholder.id);var unselectData={data:data};this.trigger("clear",unselectData);if(unselectData.prevented){this.$element.val(previousVal);return}for(var d=0;d0||data.length===0){return}var removeAll=this.options.get("translations").get("removeAllItems");var $remove=$(''+"×"+"");Utils.StoreData($remove[0],"data",data);this.$selection.find(".select2-selection__rendered").prepend($remove)};return AllowClear});S2.define("select2/selection/search",["jquery","../utils","../keys"],function($,Utils,KEYS){function Search(decorated,$element,options){decorated.call(this,$element,options)}Search.prototype.render=function(decorated){var $search=$('");this.$searchContainer=$search;this.$search=$search.find("input");var $rendered=decorated.call(this);this._transferTabIndex();return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);container.on("open",function(){self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus")});container.on("close",function(){self.$search.val("");self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.trigger("focus")});container.on("enable",function(){self.$search.prop("disabled",false);self._transferTabIndex()});container.on("disable",function(){self.$search.prop("disabled",true)});container.on("focus",function(evt){self.$search.trigger("focus")});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}});this.$selection.on("focusin",".select2-search--inline",function(evt){self.trigger("focus",evt)});this.$selection.on("focusout",".select2-search--inline",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",".select2-search--inline",function(evt){evt.stopPropagation();self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented();var key=evt.which;if(key===KEYS.BACKSPACE&&self.$search.val()===""){var $previousChoice=self.$searchContainer.prev(".select2-selection__choice");if($previousChoice.length>0){var item=Utils.GetData($previousChoice[0],"data");self.searchRemoveChoice(item);evt.preventDefault()}}});this.$selection.on("click",".select2-search--inline",function(evt){if(self.$search.val()){evt.stopPropagation()}});var msie=document.documentMode;var disableInputEvents=msie&&msie<=11;this.$selection.on("input.searchcheck",".select2-search--inline",function(evt){if(disableInputEvents){self.$selection.off("input.search input.searchcheck");return}self.$selection.off("keyup.search")});this.$selection.on("keyup.search input.search",".select2-search--inline",function(evt){if(disableInputEvents&&evt.type==="input"){self.$selection.off("input.search input.searchcheck");return}var key=evt.which;if(key==KEYS.SHIFT||key==KEYS.CTRL||key==KEYS.ALT){return}if(key==KEYS.TAB){return}self.handleSearch(evt)})};Search.prototype._transferTabIndex=function(decorated){this.$search.attr("tabindex",this.$selection.attr("tabindex"));this.$selection.attr("tabindex","-1")};Search.prototype.createPlaceholder=function(decorated,placeholder){this.$search.attr("placeholder",placeholder.text)};Search.prototype.update=function(decorated,data){var searchHadFocus=this.$search[0]==document.activeElement;this.$search.attr("placeholder","");decorated.call(this,data);this.$selection.find(".select2-selection__rendered").append(this.$searchContainer);this.resizeSearch();if(searchHadFocus){this.$search.trigger("focus")}};Search.prototype.handleSearch=function(){this.resizeSearch();if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.searchRemoveChoice=function(decorated,item){this.trigger("unselect",{data:item});this.$search.val(item.text);this.handleSearch()};Search.prototype.resizeSearch=function(){this.$search.css("width","25px");var width="";if(this.$search.attr("placeholder")!==""){width=this.$selection.find(".select2-selection__rendered").width()}else{var minimumWidth=this.$search.val().length+1;width=minimumWidth*.75+"em"}this.$search.css("width",width)};return Search});S2.define("select2/selection/eventRelay",["jquery"],function($){function EventRelay(){}EventRelay.prototype.bind=function(decorated,container,$container){var self=this;var relayEvents=["open","opening","close","closing","select","selecting","unselect","unselecting","clear","clearing"];var preventableEvents=["opening","closing","selecting","unselecting","clearing"];decorated.call(this,container,$container);container.on("*",function(name,params){if($.inArray(name,relayEvents)===-1){return}params=params||{};var evt=$.Event("select2:"+name,{params:params});self.$element.trigger(evt);if($.inArray(name,preventableEvents)===-1){return}params.prevented=evt.isDefaultPrevented()})};return EventRelay});S2.define("select2/translation",["jquery","require"],function($,require){function Translation(dict){this.dict=dict||{}}Translation.prototype.all=function(){return this.dict};Translation.prototype.get=function(key){return this.dict[key]};Translation.prototype.extend=function(translation){this.dict=$.extend({},translation.all(),this.dict)};Translation._cache={};Translation.loadPath=function(path){if(!(path in Translation._cache)){var translations=require(path);Translation._cache[path]=translations}return new Translation(Translation._cache[path])};return Translation});S2.define("select2/diacritics",[],function(){var diacritics={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Œ":"OE","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","œ":"oe","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ώ":"ω","ς":"σ","’":"'"};return diacritics});S2.define("select2/data/base",["../utils"],function(Utils){function BaseAdapter($element,options){BaseAdapter.__super__.constructor.call(this)}Utils.Extend(BaseAdapter,Utils.Observable);BaseAdapter.prototype.current=function(callback){throw new Error("The `current` method must be defined in child classes.")};BaseAdapter.prototype.query=function(params,callback){throw new Error("The `query` method must be defined in child classes.")};BaseAdapter.prototype.bind=function(container,$container){};BaseAdapter.prototype.destroy=function(){};BaseAdapter.prototype.generateResultId=function(container,data){var id=container.id+"-result-";id+=Utils.generateChars(4);if(data.id!=null){id+="-"+data.id.toString()}else{id+="-"+Utils.generateChars(4)}return id};return BaseAdapter});S2.define("select2/data/select",["./base","../utils","jquery"],function(BaseAdapter,Utils,$){function SelectAdapter($element,options){this.$element=$element;this.options=options;SelectAdapter.__super__.constructor.call(this)}Utils.Extend(SelectAdapter,BaseAdapter);SelectAdapter.prototype.current=function(callback){var data=[];var self=this;this.$element.find(":selected").each(function(){var $option=$(this);var option=self.item($option);data.push(option)});callback(data)};SelectAdapter.prototype.select=function(data){var self=this;data.selected=true;if($(data.element).is("option")){data.element.selected=true;this.$element.trigger("change");return}if(this.$element.prop("multiple")){this.current(function(currentData){var val=[];data=[data];data.push.apply(data,currentData);for(var d=0;d=0){var $existingOption=$existing.filter(onlyItem(item));var existingData=this.item($existingOption);var newData=$.extend(true,{},item,existingData);var $newOption=this.option(newData);$existingOption.replaceWith($newOption);continue}var $option=this.option(item);if(item.children){var $children=this.convertToOptions(item.children);Utils.appendMany($option,$children)}$options.push($option)}return $options};return ArrayAdapter});S2.define("select2/data/ajax",["./array","../utils","jquery"],function(ArrayAdapter,Utils,$){function AjaxAdapter($element,options){this.ajaxOptions=this._applyDefaults(options.get("ajax"));if(this.ajaxOptions.processResults!=null){this.processResults=this.ajaxOptions.processResults}AjaxAdapter.__super__.constructor.call(this,$element,options)}Utils.Extend(AjaxAdapter,ArrayAdapter);AjaxAdapter.prototype._applyDefaults=function(options){var defaults={data:function(params){return $.extend({},params,{q:params.term})},transport:function(params,success,failure){var $request=$.ajax(params);$request.then(success);$request.fail(failure);return $request}};return $.extend({},defaults,options,true)};AjaxAdapter.prototype.processResults=function(results){return results};AjaxAdapter.prototype.query=function(params,callback){var matches=[];var self=this;if(this._request!=null){if($.isFunction(this._request.abort)){this._request.abort()}this._request=null}var options=$.extend({type:"GET"},this.ajaxOptions);if(typeof options.url==="function"){options.url=options.url.call(this.$element,params)}if(typeof options.data==="function"){options.data=options.data.call(this.$element,params)}function request(){var $request=options.transport(options,function(data){var results=self.processResults(data,params);if(self.options.get("debug")&&window.console&&console.error){if(!results||!results.results||!$.isArray(results.results)){console.error("Select2: The AJAX results did not return an array in the "+"`results` key of the response.")}}callback(results)},function(){if("status"in $request&&($request.status===0||$request.status==="0")){return}self.trigger("results:message",{message:"errorLoading"})});self._request=$request}if(this.ajaxOptions.delay&¶ms.term!=null){if(this._queryTimeout){window.clearTimeout(this._queryTimeout)}this._queryTimeout=window.setTimeout(request,this.ajaxOptions.delay)}else{request()}};return AjaxAdapter});S2.define("select2/data/tags",["jquery"],function($){function Tags(decorated,$element,options){var tags=options.get("tags");var createTag=options.get("createTag");if(createTag!==undefined){this.createTag=createTag}var insertTag=options.get("insertTag");if(insertTag!==undefined){this.insertTag=insertTag}decorated.call(this,$element,options);if($.isArray(tags)){for(var t=0;t0&¶ms.term.length>this.maximumInputLength){this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:params.term,params:params}});return}decorated.call(this,params,callback)};return MaximumInputLength});S2.define("select2/data/maximumSelectionLength",[],function(){function MaximumSelectionLength(decorated,$e,options){this.maximumSelectionLength=options.get("maximumSelectionLength");decorated.call(this,$e,options)}MaximumSelectionLength.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("select",function(){self._checkIfMaximumSelected()})};MaximumSelectionLength.prototype.query=function(decorated,params,callback){var self=this;this._checkIfMaximumSelected(function(){decorated.call(self,params,callback)})};MaximumSelectionLength.prototype._checkIfMaximumSelected=function(_,successCallback){var self=this;this.current(function(currentData){var count=currentData!=null?currentData.length:0;if(self.maximumSelectionLength>0&&count>=self.maximumSelectionLength){self.trigger("results:message",{message:"maximumSelected",args:{maximum:self.maximumSelectionLength}});return}if(successCallback){successCallback()}})};return MaximumSelectionLength});S2.define("select2/dropdown",["jquery","./utils"],function($,Utils){function Dropdown($element,options){this.$element=$element;this.options=options;Dropdown.__super__.constructor.call(this)}Utils.Extend(Dropdown,Utils.Observable);Dropdown.prototype.render=function(){var $dropdown=$(''+''+"");$dropdown.attr("dir",this.options.get("dir"));this.$dropdown=$dropdown;return $dropdown};Dropdown.prototype.bind=function(){};Dropdown.prototype.position=function($dropdown,$container){};Dropdown.prototype.destroy=function(){this.$dropdown.remove()};return Dropdown});S2.define("select2/dropdown/search",["jquery","../utils"],function($,Utils){function Search(){}Search.prototype.render=function(decorated){var $rendered=decorated.call(this);var $search=$(''+''+"");this.$searchContainer=$search;this.$search=$search.find("input");$rendered.prepend($search);return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);this.$search.on("keydown",function(evt){self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented()});this.$search.on("input",function(evt){$(this).off("keyup")});this.$search.on("keyup input",function(evt){self.handleSearch(evt)});container.on("open",function(){self.$search.attr("tabindex",0);self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus");window.setTimeout(function(){self.$search.trigger("focus")},0)});container.on("close",function(){self.$search.attr("tabindex",-1);self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.val("");self.$search.trigger("blur")});container.on("focus",function(){if(!container.isOpen()){self.$search.trigger("focus")}});container.on("results:all",function(params){if(params.query.term==null||params.query.term===""){var showSearch=self.showSearch(params);if(showSearch){self.$searchContainer.removeClass("select2-search--hide")}else{self.$searchContainer.addClass("select2-search--hide")}}});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}})};Search.prototype.handleSearch=function(evt){if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.showSearch=function(_,params){return true};return Search});S2.define("select2/dropdown/hidePlaceholder",[],function(){function HidePlaceholder(decorated,$element,options,dataAdapter){this.placeholder=this.normalizePlaceholder(options.get("placeholder"));decorated.call(this,$element,options,dataAdapter)}HidePlaceholder.prototype.append=function(decorated,data){data.results=this.removePlaceholder(data.results);decorated.call(this,data)};HidePlaceholder.prototype.normalizePlaceholder=function(_,placeholder){if(typeof placeholder==="string"){placeholder={id:"",text:placeholder}}return placeholder};HidePlaceholder.prototype.removePlaceholder=function(_,data){var modifiedData=data.slice(0);for(var d=data.length-1;d>=0;d--){var item=data[d];if(this.placeholder.id===item.id){modifiedData.splice(d,1)}}return modifiedData};return HidePlaceholder});S2.define("select2/dropdown/infiniteScroll",["jquery"],function($){function InfiniteScroll(decorated,$element,options,dataAdapter){this.lastParams={};decorated.call(this,$element,options,dataAdapter);this.$loadingMore=this.createLoadingMore();this.loading=false}InfiniteScroll.prototype.append=function(decorated,data){this.$loadingMore.remove();this.loading=false;decorated.call(this,data);if(this.showLoadingMore(data)){this.$results.append(this.$loadingMore);this.loadMoreIfNeeded()}};InfiniteScroll.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("query",function(params){self.lastParams=params;self.loading=true});container.on("query:append",function(params){self.lastParams=params;self.loading=true});this.$results.on("scroll",this.loadMoreIfNeeded.bind(this))};InfiniteScroll.prototype.loadMoreIfNeeded=function(){var isLoadMoreVisible=$.contains(document.documentElement,this.$loadingMore[0]);if(this.loading||!isLoadMoreVisible){return}var currentOffset=this.$results.offset().top+this.$results.outerHeight(false);var loadingMoreOffset=this.$loadingMore.offset().top+this.$loadingMore.outerHeight(false);if(currentOffset+50>=loadingMoreOffset){this.loadMore()}};InfiniteScroll.prototype.loadMore=function(){this.loading=true;var params=$.extend({},{page:1},this.lastParams);params.page++;this.trigger("query:append",params)};InfiniteScroll.prototype.showLoadingMore=function(_,data){return data.pagination&&data.pagination.more};InfiniteScroll.prototype.createLoadingMore=function(){var $option=$("
    • ');var message=this.options.get("translations").get("loadingMore");$option.html(message(this.lastParams));return $option};return InfiniteScroll});S2.define("select2/dropdown/attachBody",["jquery","../utils"],function($,Utils){function AttachBody(decorated,$element,options){this.$dropdownParent=$(options.get("dropdownParent")||document.body);decorated.call(this,$element,options)}AttachBody.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("open",function(){self._showDropdown();self._attachPositioningHandler(container);self._bindContainerResultHandlers(container)});container.on("close",function(){self._hideDropdown();self._detachPositioningHandler(container)});this.$dropdownContainer.on("mousedown",function(evt){evt.stopPropagation()})};AttachBody.prototype.destroy=function(decorated){decorated.call(this);this.$dropdownContainer.remove()};AttachBody.prototype.position=function(decorated,$dropdown,$container){$dropdown.attr("class",$container.attr("class"));$dropdown.removeClass("select2");$dropdown.addClass("select2-container--open");$dropdown.css({position:"absolute",top:-999999});this.$container=$container};AttachBody.prototype.render=function(decorated){var $container=$("");var $dropdown=decorated.call(this);$container.append($dropdown);this.$dropdownContainer=$container;return $container};AttachBody.prototype._hideDropdown=function(decorated){this.$dropdownContainer.detach()};AttachBody.prototype._bindContainerResultHandlers=function(decorated,container){if(this._containerResultsHandlersBound){return}var self=this;container.on("results:all",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:append",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:message",function(){self._positionDropdown();self._resizeDropdown()});container.on("select",function(){self._positionDropdown();self._resizeDropdown()});container.on("unselect",function(){self._positionDropdown();self._resizeDropdown()});this._containerResultsHandlersBound=true};AttachBody.prototype._attachPositioningHandler=function(decorated,container){var self=this;var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.each(function(){Utils.StoreData(this,"select2-scroll-position",{x:$(this).scrollLeft(),y:$(this).scrollTop()})});$watchers.on(scrollEvent,function(ev){var position=Utils.GetData(this,"select2-scroll-position");$(this).scrollTop(position.y)});$(window).on(scrollEvent+" "+resizeEvent+" "+orientationEvent,function(e){self._positionDropdown();self._resizeDropdown()})};AttachBody.prototype._detachPositioningHandler=function(decorated,container){var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.off(scrollEvent);$(window).off(scrollEvent+" "+resizeEvent+" "+orientationEvent)};AttachBody.prototype._positionDropdown=function(){var $window=$(window);var isCurrentlyAbove=this.$dropdown.hasClass("select2-dropdown--above");var isCurrentlyBelow=this.$dropdown.hasClass("select2-dropdown--below");var newDirection=null;var offset=this.$container.offset();offset.bottom=offset.top+this.$container.outerHeight(false);var container={height:this.$container.outerHeight(false)};container.top=offset.top;container.bottom=offset.top+container.height;var dropdown={height:this.$dropdown.outerHeight(false)};var viewport={top:$window.scrollTop(),bottom:$window.scrollTop()+$window.height()};var enoughRoomAbove=viewport.topoffset.bottom+dropdown.height;var css={left:offset.left,top:container.bottom};var $offsetParent=this.$dropdownParent;if($offsetParent.css("position")==="static"){$offsetParent=$offsetParent.offsetParent()}var parentOffset={top:0,left:0};if($.contains(document.body,$offsetParent[0])){parentOffset=$offsetParent.offset()}css.top-=parentOffset.top;css.left-=parentOffset.left;if(!isCurrentlyAbove&&!isCurrentlyBelow){newDirection="below"}if(!enoughRoomBelow&&enoughRoomAbove&&!isCurrentlyAbove){newDirection="above"}else if(!enoughRoomAbove&&enoughRoomBelow&&isCurrentlyAbove){newDirection="below"}if(newDirection=="above"||isCurrentlyAbove&&newDirection!=="below"){css.top=container.top-parentOffset.top-dropdown.height}if(newDirection!=null){this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+newDirection);this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+newDirection)}this.$dropdownContainer.css(css)};AttachBody.prototype._resizeDropdown=function(){var css={width:this.$container.outerWidth(false)+"px"};if(this.options.get("dropdownAutoWidth")){css.minWidth=css.width;css.position="relative";css.width="auto"}this.$dropdown.css(css)};AttachBody.prototype._showDropdown=function(decorated){this.$dropdownContainer.appendTo(this.$dropdownParent);this._positionDropdown();this._resizeDropdown()};return AttachBody});S2.define("select2/dropdown/minimumResultsForSearch",[],function(){function countResults(data){var count=0;for(var d=0;d0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MinimumInputLength)}if(options.maximumInputLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumInputLength)}if(options.maximumSelectionLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumSelectionLength)}if(options.tags){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tags)}if(options.tokenSeparators!=null||options.tokenizer!=null){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tokenizer)}if(options.query!=null){var Query=require(options.amdBase+"compat/query");options.dataAdapter=Utils.Decorate(options.dataAdapter,Query)}if(options.initSelection!=null){var InitSelection=require(options.amdBase+"compat/initSelection");options.dataAdapter=Utils.Decorate(options.dataAdapter,InitSelection)}}if(options.resultsAdapter==null){options.resultsAdapter=ResultsList;if(options.ajax!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,InfiniteScroll)}if(options.placeholder!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,HidePlaceholder)}if(options.selectOnClose){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,SelectOnClose)}}if(options.dropdownAdapter==null){if(options.multiple){options.dropdownAdapter=Dropdown}else{var SearchableDropdown=Utils.Decorate(Dropdown,DropdownSearch);options.dropdownAdapter=SearchableDropdown}if(options.minimumResultsForSearch!==0){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,MinimumResultsForSearch)}if(options.closeOnSelect){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,CloseOnSelect)}if(options.dropdownCssClass!=null||options.dropdownCss!=null||options.adaptDropdownCssClass!=null){var DropdownCSS=require(options.amdBase+"compat/dropdownCss");options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,DropdownCSS)}options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,AttachBody)}if(options.selectionAdapter==null){if(options.multiple){options.selectionAdapter=MultipleSelection}else{options.selectionAdapter=SingleSelection}if(options.placeholder!=null){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,Placeholder)}if(options.allowClear){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,AllowClear)}if(options.multiple){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,SelectionSearch)}if(options.containerCssClass!=null||options.containerCss!=null||options.adaptContainerCssClass!=null){var ContainerCSS=require(options.amdBase+"compat/containerCss");options.selectionAdapter=Utils.Decorate(options.selectionAdapter,ContainerCSS)}options.selectionAdapter=Utils.Decorate(options.selectionAdapter,EventRelay)}options.language=this._resolveLanguage(options.language);options.language.push("en");var uniqueLanguages=[];for(var l=0;l0){var match=$.extend(true,{},data);for(var c=data.children.length-1;c>=0;c--){var child=data.children[c];var matches=matcher(params,child);if(matches==null){match.children.splice(c,1)}}if(match.children.length>0){return match}return matcher(params,match)}var original=stripDiacritics(data.text).toUpperCase();var term=stripDiacritics(params.term).toUpperCase();if(original.indexOf(term)>-1){return data}return null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:true,debug:false,dropdownAutoWidth:false,escapeMarkup:Utils.escapeMarkup,language:{},matcher:matcher,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:false,scrollAfterSelect:false,sorter:function(data){return data},templateResult:function(result){return result.text},templateSelection:function(selection){return selection.text},theme:"default",width:"resolve"}};Defaults.prototype.applyFromElement=function(options,$element){var optionLanguage=options.language;var defaultLanguage=this.defaults.language;var elementLanguage=$element.prop("lang");var parentLanguage=$element.closest("[lang]").prop("lang");var languages=Array.prototype.concat.call(this._resolveLanguage(elementLanguage),this._resolveLanguage(optionLanguage),this._resolveLanguage(defaultLanguage),this._resolveLanguage(parentLanguage));options.language=languages;return options};Defaults.prototype._resolveLanguage=function(language){if(!language){return[]}if($.isEmptyObject(language)){return[]}if($.isPlainObject(language)){return[language]}var languages;if(!$.isArray(language)){languages=[language]}else{languages=language}var resolvedLanguages=[];for(var l=0;l0){var languageParts=languages[l].split("-");var baseLanguage=languageParts[0];resolvedLanguages.push(baseLanguage)}}return resolvedLanguages};Defaults.prototype._processTranslations=function(languages,debug){var translations=new Translation;for(var l=0;l-1){continue}if($.isPlainObject(this.options[key])){$.extend(this.options[key],data[key])}else{this.options[key]=data[key]}}return this};Options.prototype.get=function(key){return this.options[key]};Options.prototype.set=function(key,val){this.options[key]=val};return Options});S2.define("select2/core",["jquery","./options","./utils","./keys"],function($,Options,Utils,KEYS){var Select2=function($element,options){if(Utils.GetData($element[0],"select2")!=null){Utils.GetData($element[0],"select2").destroy()}this.$element=$element;this.id=this._generateId($element);options=options||{};this.options=new Options(options,$element);Select2.__super__.constructor.call(this);var tabindex=$element.attr("tabindex")||0;Utils.StoreData($element[0],"old-tabindex",tabindex);$element.attr("tabindex","-1");var DataAdapter=this.options.get("dataAdapter");this.dataAdapter=new DataAdapter($element,this.options);var $container=this.render();this._placeContainer($container);var SelectionAdapter=this.options.get("selectionAdapter");this.selection=new SelectionAdapter($element,this.options);this.$selection=this.selection.render();this.selection.position(this.$selection,$container);var DropdownAdapter=this.options.get("dropdownAdapter");this.dropdown=new DropdownAdapter($element,this.options);this.$dropdown=this.dropdown.render();this.dropdown.position(this.$dropdown,$container);var ResultsAdapter=this.options.get("resultsAdapter");this.results=new ResultsAdapter($element,this.options,this.dataAdapter);this.$results=this.results.render();this.results.position(this.$results,this.$dropdown);var self=this;this._bindAdapters();this._registerDomEvents();this._registerDataEvents();this._registerSelectionEvents();this._registerDropdownEvents();this._registerResultsEvents();this._registerEvents();this.dataAdapter.current(function(initialData){self.trigger("selection:update",{data:initialData})});$element.addClass("select2-hidden-accessible");$element.attr("aria-hidden","true");this._syncAttributes();Utils.StoreData($element[0],"select2",this);$element.data("select2",this)};Utils.Extend(Select2,Utils.Observable);Select2.prototype._generateId=function($element){var id="";if($element.attr("id")!=null){id=$element.attr("id")}else if($element.attr("name")!=null){id=$element.attr("name")+"-"+Utils.generateChars(2)}else{id=Utils.generateChars(4)}id=id.replace(/(:|\.|\[|\]|,)/g,"");id="select2-"+id;return id};Select2.prototype._placeContainer=function($container){$container.insertAfter(this.$element);var width=this._resolveWidth(this.$element,this.options.get("width"));if(width!=null){$container.css("width",width)}};Select2.prototype._resolveWidth=function($element,method){var WIDTH=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if(method=="resolve"){var styleWidth=this._resolveWidth($element,"style");if(styleWidth!=null){return styleWidth}return this._resolveWidth($element,"element")}if(method=="element"){var elementWidth=$element.outerWidth(false);if(elementWidth<=0){return"auto"}return elementWidth+"px"}if(method=="style"){var style=$element.attr("style");if(typeof style!=="string"){return null}var attrs=style.split(";");for(var i=0,l=attrs.length;i=1){return matches[1]}}return null}if(method=="computedstyle"){var computedStyle=window.getComputedStyle($element[0]);return computedStyle.width}return method};Select2.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container);this.selection.bind(this,this.$container);this.dropdown.bind(this,this.$container);this.results.bind(this,this.$container)};Select2.prototype._registerDomEvents=function(){var self=this;this.$element.on("change.select2",function(){self.dataAdapter.current(function(data){self.trigger("selection:update",{data:data})})});this.$element.on("focus.select2",function(evt){self.trigger("focus",evt)});this._syncA=Utils.bind(this._syncAttributes,this);this._syncS=Utils.bind(this._syncSubtree,this);if(this.$element[0].attachEvent){this.$element[0].attachEvent("onpropertychange",this._syncA)}var observer=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;if(observer!=null){this._observer=new observer(function(mutations){$.each(mutations,self._syncA);$.each(mutations,self._syncS)});this._observer.observe(this.$element[0],{attributes:true,childList:true,subtree:false})}else if(this.$element[0].addEventListener){this.$element[0].addEventListener("DOMAttrModified",self._syncA,false);this.$element[0].addEventListener("DOMNodeInserted",self._syncS,false);this.$element[0].addEventListener("DOMNodeRemoved",self._syncS,false)}};Select2.prototype._registerDataEvents=function(){var self=this;this.dataAdapter.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerSelectionEvents=function(){var self=this;var nonRelayEvents=["toggle","focus"];this.selection.on("toggle",function(){self.toggleDropdown()});this.selection.on("focus",function(params){self.focus(params)});this.selection.on("*",function(name,params){if($.inArray(name,nonRelayEvents)!==-1){return}self.trigger(name,params)})};Select2.prototype._registerDropdownEvents=function(){var self=this;this.dropdown.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerResultsEvents=function(){var self=this;this.results.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerEvents=function(){var self=this;this.on("open",function(){self.$container.addClass("select2-container--open")});this.on("close",function(){self.$container.removeClass("select2-container--open")});this.on("enable",function(){self.$container.removeClass("select2-container--disabled")});this.on("disable",function(){self.$container.addClass("select2-container--disabled")});this.on("blur",function(){self.$container.removeClass("select2-container--focus")});this.on("query",function(params){if(!self.isOpen()){self.trigger("open",{})}this.dataAdapter.query(params,function(data){self.trigger("results:all",{data:data,query:params})})});this.on("query:append",function(params){this.dataAdapter.query(params,function(data){self.trigger("results:append",{data:data,query:params})})});this.on("keypress",function(evt){var key=evt.which;if(self.isOpen()){if(key===KEYS.ESC||key===KEYS.TAB||key===KEYS.UP&&evt.altKey){self.close();evt.preventDefault()}else if(key===KEYS.ENTER){self.trigger("results:select",{});evt.preventDefault()}else if(key===KEYS.SPACE&&evt.ctrlKey){self.trigger("results:toggle",{});evt.preventDefault()}else if(key===KEYS.UP){self.trigger("results:previous",{});evt.preventDefault()}else if(key===KEYS.DOWN){self.trigger("results:next",{});evt.preventDefault()}}else{if(key===KEYS.ENTER||key===KEYS.SPACE||key===KEYS.DOWN&&evt.altKey){self.open();evt.preventDefault()}}})};Select2.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled"));if(this.options.get("disabled")){if(this.isOpen()){this.close()}this.trigger("disable",{})}else{this.trigger("enable",{})}};Select2.prototype._syncSubtree=function(evt,mutations){var changed=false;var self=this;if(evt&&evt.target&&(evt.target.nodeName!=="OPTION"&&evt.target.nodeName!=="OPTGROUP")){return}if(!mutations){changed=true}else if(mutations.addedNodes&&mutations.addedNodes.length>0){for(var n=0;n0){changed=true}if(changed){this.dataAdapter.current(function(currentData){self.trigger("selection:update",{data:currentData})})}};Select2.prototype.trigger=function(name,args){var actualTrigger=Select2.__super__.trigger;var preTriggerMap={open:"opening",close:"closing",select:"selecting",unselect:"unselecting",clear:"clearing"};if(args===undefined){args={}}if(name in preTriggerMap){var preTriggerName=preTriggerMap[name];var preTriggerArgs={prevented:false,name:name,args:args};actualTrigger.call(this,preTriggerName,preTriggerArgs);if(preTriggerArgs.prevented){args.prevented=true;return}}actualTrigger.call(this,name,args)};Select2.prototype.toggleDropdown=function(){if(this.options.get("disabled")){return}if(this.isOpen()){this.close()}else{this.open()}};Select2.prototype.open=function(){if(this.isOpen()){return}this.trigger("query",{})};Select2.prototype.close=function(){if(!this.isOpen()){return}this.trigger("close",{})};Select2.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")};Select2.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")};Select2.prototype.focus=function(data){if(this.hasFocus()){return}this.$container.addClass("select2-container--focus");this.trigger("focus",{})};Select2.prototype.enable=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("enable")` method has been deprecated and will'+' be removed in later Select2 versions. Use $element.prop("disabled")'+" instead.")}if(args==null||args.length===0){args=[true]}var disabled=!args[0];this.$element.prop("disabled",disabled)};Select2.prototype.data=function(){if(this.options.get("debug")&&arguments.length>0&&window.console&&console.warn){console.warn('Select2: Data can no longer be set using `select2("data")`. You '+"should consider setting the value instead using `$element.val()`.")}var data=[];this.dataAdapter.current(function(currentData){data=currentData});return data};Select2.prototype.val=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("val")` method has been deprecated and will be'+" removed in later Select2 versions. Use $element.val() instead.")}if(args==null||args.length===0){return this.$element.val()}var newVal=args[0];if($.isArray(newVal)){newVal=$.map(newVal,function(obj){return obj.toString()})}this.$element.val(newVal).trigger("change")};Select2.prototype.destroy=function(){this.$container.remove();if(this.$element[0].detachEvent){this.$element[0].detachEvent("onpropertychange",this._syncA)}if(this._observer!=null){this._observer.disconnect();this._observer=null}else if(this.$element[0].removeEventListener){this.$element[0].removeEventListener("DOMAttrModified",this._syncA,false);this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,false);this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,false)}this._syncA=null;this._syncS=null;this.$element.off(".select2");this.$element.attr("tabindex",Utils.GetData(this.$element[0],"old-tabindex"));this.$element.removeClass("select2-hidden-accessible");this.$element.attr("aria-hidden","false");Utils.RemoveData(this.$element[0]);this.$element.removeData("select2");this.dataAdapter.destroy();this.selection.destroy();this.dropdown.destroy();this.results.destroy();this.dataAdapter=null;this.selection=null;this.dropdown=null;this.results=null};Select2.prototype.render=function(){var $container=$(''+''+''+"");$container.attr("dir",this.options.get("dir"));this.$container=$container;this.$container.addClass("select2-container--"+this.options.get("theme"));Utils.StoreData($container[0],"element",this.$element);return $container};return Select2});S2.define("jquery-mousewheel",["jquery"],function($){return $});S2.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults","./select2/utils"],function($,_,Select2,Defaults,Utils){if($.fn.select2==null){var thisMethods=["open","close","destroy"];$.fn.select2=function(options){options=options||{};if(typeof options==="object"){this.each(function(){var instanceOptions=$.extend(true,{},options);var instance=new Select2($(this),instanceOptions)});return this}else if(typeof options==="string"){var ret;var args=Array.prototype.slice.call(arguments,1);this.each(function(){var instance=Utils.GetData(this,"select2");if(instance==null&&window.console&&console.error){console.error("The select2('"+options+"') method was called on an "+"element that is not using Select2.")}ret=instance[options].apply(instance,args)});if($.inArray(options,thisMethods)>-1){return this}return ret}else{throw new Error("Invalid arguments for Select2: "+options)}}}if($.fn.select2.defaults==null){$.fn.select2.defaults=Defaults}return Select2});return{define:S2.define,require:S2.require}}();var select2=S2.require("jquery.select2");jQuery.fn.select2.amd=S2;return select2}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/_main.scss b/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/_main.scss index 55b7c04..d28c3b2 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/_main.scss +++ b/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/_main.scss @@ -333,3 +333,10 @@ a[class^='bg-'], a[class*='bg-'] { transition: background-color .25s ease; } + + +// Uploader in safari button overflowing +.geodir-add-files .moxie-shim { + position: initial !important; + background: transparent; // this is for divi theme that does background position stuff and breaks it. +} \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_wp_core.scss b/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_wp_core.scss index d629701..ac273dd 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_wp_core.scss +++ b/vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_wp_core.scss @@ -148,4 +148,12 @@ body.modal-open .modal{ .zi-7 { z-index: 1000000 !important -} \ No newline at end of file +} + + +// Uploader in safari button overflowing +.geodir-add-files .moxie-shim { + position: initial !important; + background: transparent; // this is for divi theme that does background position stuff and breaks it. +} + diff --git a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility-rtl.css b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility-rtl.css index 1077636..5d4cb31 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility-rtl.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility-rtl.css @@ -13,4 +13,4 @@ * Licensed under the MIT License * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE * - */}.bsui :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.bsui *,.bsui *::before,.bsui *::after{box-sizing:border-box}.bsui html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent;direction:rtl}.bsui article,.bsui aside,.bsui figcaption,.bsui figure,.bsui footer,.bsui header,.bsui hgroup,.bsui main,.bsui nav,.bsui section{display:block}.bsui body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:right;background-color:#fff}.bsui [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.bsui hr{box-sizing:content-box;height:0;overflow:visible}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6{margin-top:0;margin-bottom:.5rem}.bsui p{margin-top:0;margin-bottom:1rem}.bsui abbr[title],.bsui abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.bsui address{margin-bottom:1rem;font-style:normal;line-height:inherit}.bsui ol,.bsui ul,.bsui dl{margin-top:0;margin-bottom:1rem}.bsui ol ol,.bsui ul ul,.bsui ol ul,.bsui ul ol{margin-bottom:0}.bsui dt{font-weight:700}.bsui dd{margin-right:0;margin-bottom:.5rem}.bsui blockquote{margin:0 0 1rem}.bsui b,.bsui strong{font-weight:bolder}.bsui small{font-size:80%}.bsui sub,.bsui sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.bsui sub{bottom:-.25em}.bsui sup{top:-.5em}.bsui a{color:#1e73be;text-decoration:none;background-color:transparent}.bsui a:hover{color:#144b7c;text-decoration:underline}.bsui a:not([href]):not([class]){color:inherit;text-decoration:none}.bsui a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.bsui pre,.bsui code,.bsui kbd,.bsui samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.bsui pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.bsui figure{margin:0 0 1rem}.bsui img{vertical-align:middle;border-style:none}.bsui svg{overflow:hidden;vertical-align:middle}.bsui table{border-collapse:collapse}.bsui caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:right;caption-side:bottom}.bsui th{text-align:inherit;text-align:-webkit-match-parent}.bsui label{display:inline-block;margin-bottom:.5rem}.bsui button{border-radius:0}.bsui button:focus:not(:focus-visible){outline:0}.bsui input,.bsui button,.bsui select,.bsui optgroup,.bsui textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.bsui button,.bsui input{overflow:visible}.bsui button,.bsui select{text-transform:none}.bsui [role="button"]{cursor:pointer}.bsui select{word-wrap:normal}.bsui button,.bsui [type="button"],.bsui [type="reset"],.bsui [type="submit"]{-webkit-appearance:button}.bsui button:not(:disabled),.bsui [type="button"]:not(:disabled),.bsui [type="reset"]:not(:disabled),.bsui [type="submit"]:not(:disabled){cursor:pointer}.bsui button::-moz-focus-inner,.bsui [type="button"]::-moz-focus-inner,.bsui [type="reset"]::-moz-focus-inner,.bsui [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.bsui input[type="radio"],.bsui input[type="checkbox"]{box-sizing:border-box;padding:0}.bsui textarea{overflow:auto;resize:vertical}.bsui fieldset{min-width:0;padding:0;margin:0;border:0}.bsui legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.bsui progress{vertical-align:baseline}.bsui [type="number"]::-webkit-inner-spin-button,.bsui [type="number"]::-webkit-outer-spin-button{height:auto}.bsui [type="search"]{outline-offset:-2px;-webkit-appearance:none}.bsui [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.bsui ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.bsui output{display:inline-block}.bsui summary{display:list-item;cursor:pointer}.bsui template{display:none}.bsui [hidden]{display:none !important}.bsui code,.bsui samp,.bsui var,.bsui [type="email"],.bsui [type="file"],.bsui [type="number"],.bsui [type="password"],.bsui [type="tel"],.bsui [type="url"]{text-align:left;direction:ltr}.bsui kbd{display:inline-block}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6,.bsui .h1,.bsui .h2,.bsui .h3,.bsui .h4,.bsui .h5,.bsui .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.bsui h1,.bsui .h1{font-size:2.5rem}.bsui h2,.bsui .h2{font-size:2rem}.bsui h3,.bsui .h3{font-size:1.75rem}.bsui h4,.bsui .h4{font-size:1.5rem}.bsui h5,.bsui .h5{font-size:1.25rem}.bsui h6,.bsui .h6{font-size:1rem}.bsui .lead{font-size:1.25rem;font-weight:300}.bsui .display-1{font-size:6rem;font-weight:300;line-height:1.2}.bsui .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.bsui .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.bsui .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.bsui hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.bsui small,.bsui .small{font-size:85%;font-weight:400}.bsui mark,.bsui .mark{padding:.2em;background-color:#fcf8e3}.bsui .list-unstyled{padding-right:0;list-style:none}.bsui .list-inline{padding-right:0;list-style:none}.bsui .list-inline-item{display:inline-block}.bsui .list-inline-item:not(:last-child){margin-left:.5rem}.bsui .initialism{font-size:90%;text-transform:uppercase}.bsui .blockquote{margin-bottom:1rem;font-size:1.25rem}.bsui .blockquote-footer{display:block;font-size:85%;color:#6c757d}.bsui .blockquote-footer::before{content:"\2014\00A0"}.bsui .img-fluid{max-width:100%;height:auto}.bsui .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.bsui .figure{display:inline-block}.bsui .figure-img{margin-bottom:.5rem;line-height:1}.bsui .figure-caption{font-size:90%;color:#6c757d}.bsui code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.bsui code{color:inherit}.bsui kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.bsui kbd kbd{padding:0;font-size:100%;font-weight:700}.bsui pre{display:block;font-size:100%;color:#212529}.bsui pre code{font-size:inherit;color:inherit;word-break:normal}.bsui .pre-scrollable{max-height:340px;overflow-y:scroll}.bsui .container,.bsui .container-fluid,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.bsui .container,.bsui .container-sm{max-width:540px}}@media (min-width: 768px){.bsui .container,.bsui .container-sm,.bsui .container-md{max-width:720px}}@media (min-width: 992px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg{max-width:960px}}@media (min-width: 1200px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl{max-width:1140px}}@media (min-width: 1400px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{max-width:1320px}}.bsui .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.bsui .no-gutters{margin-right:0;margin-left:0}.bsui .no-gutters>.col,.bsui .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.bsui .col-1,.bsui .col-2,.bsui .col-3,.bsui .col-4,.bsui .col-5,.bsui .col-6,.bsui .col-7,.bsui .col-8,.bsui .col-9,.bsui .col-10,.bsui .col-11,.bsui .col-12,.bsui .col,.bsui .col-auto,.bsui .col-sm-1,.bsui .col-sm-2,.bsui .col-sm-3,.bsui .col-sm-4,.bsui .col-sm-5,.bsui .col-sm-6,.bsui .col-sm-7,.bsui .col-sm-8,.bsui .col-sm-9,.bsui .col-sm-10,.bsui .col-sm-11,.bsui .col-sm-12,.bsui .col-sm,.bsui .col-sm-auto,.bsui .col-md-1,.bsui .col-md-2,.bsui .col-md-3,.bsui .col-md-4,.bsui .col-md-5,.bsui .col-md-6,.bsui .col-md-7,.bsui .col-md-8,.bsui .col-md-9,.bsui .col-md-10,.bsui .col-md-11,.bsui .col-md-12,.bsui .col-md,.bsui .col-md-auto,.bsui .col-lg-1,.bsui .col-lg-2,.bsui .col-lg-3,.bsui .col-lg-4,.bsui .col-lg-5,.bsui .col-lg-6,.bsui .col-lg-7,.bsui .col-lg-8,.bsui .col-lg-9,.bsui .col-lg-10,.bsui .col-lg-11,.bsui .col-lg-12,.bsui .col-lg,.bsui .col-lg-auto,.bsui .col-xl-1,.bsui .col-xl-2,.bsui .col-xl-3,.bsui .col-xl-4,.bsui .col-xl-5,.bsui .col-xl-6,.bsui .col-xl-7,.bsui .col-xl-8,.bsui .col-xl-9,.bsui .col-xl-10,.bsui .col-xl-11,.bsui .col-xl-12,.bsui .col-xl,.bsui .col-xl-auto,.bsui .col-xxl-1,.bsui .col-xxl-2,.bsui .col-xxl-3,.bsui .col-xxl-4,.bsui .col-xxl-5,.bsui .col-xxl-6,.bsui .col-xxl-7,.bsui .col-xxl-8,.bsui .col-xxl-9,.bsui .col-xxl-10,.bsui .col-xxl-11,.bsui .col-xxl-12,.bsui .col-xxl,.bsui .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.bsui .col{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-3{flex:0 0 25%;max-width:25%}.bsui .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-6{flex:0 0 50%;max-width:50%}.bsui .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-9{flex:0 0 75%;max-width:75%}.bsui .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-12{flex:0 0 100%;max-width:100%}.bsui .order-first{order:-1}.bsui .order-last{order:13}.bsui .order-0{order:0}.bsui .order-1{order:1}.bsui .order-2{order:2}.bsui .order-3{order:3}.bsui .order-4{order:4}.bsui .order-5{order:5}.bsui .order-6{order:6}.bsui .order-7{order:7}.bsui .order-8{order:8}.bsui .order-9{order:9}.bsui .order-10{order:10}.bsui .order-11{order:11}.bsui .order-12{order:12}.bsui .offset-1{margin-right:8.33333333%}.bsui .offset-2{margin-right:16.66666667%}.bsui .offset-3{margin-right:25%}.bsui .offset-4{margin-right:33.33333333%}.bsui .offset-5{margin-right:41.66666667%}.bsui .offset-6{margin-right:50%}.bsui .offset-7{margin-right:58.33333333%}.bsui .offset-8{margin-right:66.66666667%}.bsui .offset-9{margin-right:75%}.bsui .offset-10{margin-right:83.33333333%}.bsui .offset-11{margin-right:91.66666667%}@media (min-width: 576px){.bsui .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-sm-3{flex:0 0 25%;max-width:25%}.bsui .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-sm-6{flex:0 0 50%;max-width:50%}.bsui .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-sm-9{flex:0 0 75%;max-width:75%}.bsui .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-sm-12{flex:0 0 100%;max-width:100%}.bsui .order-sm-first{order:-1}.bsui .order-sm-last{order:13}.bsui .order-sm-0{order:0}.bsui .order-sm-1{order:1}.bsui .order-sm-2{order:2}.bsui .order-sm-3{order:3}.bsui .order-sm-4{order:4}.bsui .order-sm-5{order:5}.bsui .order-sm-6{order:6}.bsui .order-sm-7{order:7}.bsui .order-sm-8{order:8}.bsui .order-sm-9{order:9}.bsui .order-sm-10{order:10}.bsui .order-sm-11{order:11}.bsui .order-sm-12{order:12}.bsui .offset-sm-0{margin-right:0}.bsui .offset-sm-1{margin-right:8.33333333%}.bsui .offset-sm-2{margin-right:16.66666667%}.bsui .offset-sm-3{margin-right:25%}.bsui .offset-sm-4{margin-right:33.33333333%}.bsui .offset-sm-5{margin-right:41.66666667%}.bsui .offset-sm-6{margin-right:50%}.bsui .offset-sm-7{margin-right:58.33333333%}.bsui .offset-sm-8{margin-right:66.66666667%}.bsui .offset-sm-9{margin-right:75%}.bsui .offset-sm-10{margin-right:83.33333333%}.bsui .offset-sm-11{margin-right:91.66666667%}}@media (min-width: 768px){.bsui .col-md{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-md-3{flex:0 0 25%;max-width:25%}.bsui .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-md-6{flex:0 0 50%;max-width:50%}.bsui .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-md-9{flex:0 0 75%;max-width:75%}.bsui .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-md-12{flex:0 0 100%;max-width:100%}.bsui .order-md-first{order:-1}.bsui .order-md-last{order:13}.bsui .order-md-0{order:0}.bsui .order-md-1{order:1}.bsui .order-md-2{order:2}.bsui .order-md-3{order:3}.bsui .order-md-4{order:4}.bsui .order-md-5{order:5}.bsui .order-md-6{order:6}.bsui .order-md-7{order:7}.bsui .order-md-8{order:8}.bsui .order-md-9{order:9}.bsui .order-md-10{order:10}.bsui .order-md-11{order:11}.bsui .order-md-12{order:12}.bsui .offset-md-0{margin-right:0}.bsui .offset-md-1{margin-right:8.33333333%}.bsui .offset-md-2{margin-right:16.66666667%}.bsui .offset-md-3{margin-right:25%}.bsui .offset-md-4{margin-right:33.33333333%}.bsui .offset-md-5{margin-right:41.66666667%}.bsui .offset-md-6{margin-right:50%}.bsui .offset-md-7{margin-right:58.33333333%}.bsui .offset-md-8{margin-right:66.66666667%}.bsui .offset-md-9{margin-right:75%}.bsui .offset-md-10{margin-right:83.33333333%}.bsui .offset-md-11{margin-right:91.66666667%}}@media (min-width: 992px){.bsui .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-lg-3{flex:0 0 25%;max-width:25%}.bsui .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-lg-6{flex:0 0 50%;max-width:50%}.bsui .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-lg-9{flex:0 0 75%;max-width:75%}.bsui .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-lg-12{flex:0 0 100%;max-width:100%}.bsui .order-lg-first{order:-1}.bsui .order-lg-last{order:13}.bsui .order-lg-0{order:0}.bsui .order-lg-1{order:1}.bsui .order-lg-2{order:2}.bsui .order-lg-3{order:3}.bsui .order-lg-4{order:4}.bsui .order-lg-5{order:5}.bsui .order-lg-6{order:6}.bsui .order-lg-7{order:7}.bsui .order-lg-8{order:8}.bsui .order-lg-9{order:9}.bsui .order-lg-10{order:10}.bsui .order-lg-11{order:11}.bsui .order-lg-12{order:12}.bsui .offset-lg-0{margin-right:0}.bsui .offset-lg-1{margin-right:8.33333333%}.bsui .offset-lg-2{margin-right:16.66666667%}.bsui .offset-lg-3{margin-right:25%}.bsui .offset-lg-4{margin-right:33.33333333%}.bsui .offset-lg-5{margin-right:41.66666667%}.bsui .offset-lg-6{margin-right:50%}.bsui .offset-lg-7{margin-right:58.33333333%}.bsui .offset-lg-8{margin-right:66.66666667%}.bsui .offset-lg-9{margin-right:75%}.bsui .offset-lg-10{margin-right:83.33333333%}.bsui .offset-lg-11{margin-right:91.66666667%}}@media (min-width: 1200px){.bsui .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xl-3{flex:0 0 25%;max-width:25%}.bsui .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xl-6{flex:0 0 50%;max-width:50%}.bsui .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xl-9{flex:0 0 75%;max-width:75%}.bsui .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xl-12{flex:0 0 100%;max-width:100%}.bsui .order-xl-first{order:-1}.bsui .order-xl-last{order:13}.bsui .order-xl-0{order:0}.bsui .order-xl-1{order:1}.bsui .order-xl-2{order:2}.bsui .order-xl-3{order:3}.bsui .order-xl-4{order:4}.bsui .order-xl-5{order:5}.bsui .order-xl-6{order:6}.bsui .order-xl-7{order:7}.bsui .order-xl-8{order:8}.bsui .order-xl-9{order:9}.bsui .order-xl-10{order:10}.bsui .order-xl-11{order:11}.bsui .order-xl-12{order:12}.bsui .offset-xl-0{margin-right:0}.bsui .offset-xl-1{margin-right:8.33333333%}.bsui .offset-xl-2{margin-right:16.66666667%}.bsui .offset-xl-3{margin-right:25%}.bsui .offset-xl-4{margin-right:33.33333333%}.bsui .offset-xl-5{margin-right:41.66666667%}.bsui .offset-xl-6{margin-right:50%}.bsui .offset-xl-7{margin-right:58.33333333%}.bsui .offset-xl-8{margin-right:66.66666667%}.bsui .offset-xl-9{margin-right:75%}.bsui .offset-xl-10{margin-right:83.33333333%}.bsui .offset-xl-11{margin-right:91.66666667%}}@media (min-width: 1400px){.bsui .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xxl-3{flex:0 0 25%;max-width:25%}.bsui .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xxl-6{flex:0 0 50%;max-width:50%}.bsui .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xxl-9{flex:0 0 75%;max-width:75%}.bsui .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xxl-12{flex:0 0 100%;max-width:100%}.bsui .order-xxl-first{order:-1}.bsui .order-xxl-last{order:13}.bsui .order-xxl-0{order:0}.bsui .order-xxl-1{order:1}.bsui .order-xxl-2{order:2}.bsui .order-xxl-3{order:3}.bsui .order-xxl-4{order:4}.bsui .order-xxl-5{order:5}.bsui .order-xxl-6{order:6}.bsui .order-xxl-7{order:7}.bsui .order-xxl-8{order:8}.bsui .order-xxl-9{order:9}.bsui .order-xxl-10{order:10}.bsui .order-xxl-11{order:11}.bsui .order-xxl-12{order:12}.bsui .offset-xxl-0{margin-right:0}.bsui .offset-xxl-1{margin-right:8.33333333%}.bsui .offset-xxl-2{margin-right:16.66666667%}.bsui .offset-xxl-3{margin-right:25%}.bsui .offset-xxl-4{margin-right:33.33333333%}.bsui .offset-xxl-5{margin-right:41.66666667%}.bsui .offset-xxl-6{margin-right:50%}.bsui .offset-xxl-7{margin-right:58.33333333%}.bsui .offset-xxl-8{margin-right:66.66666667%}.bsui .offset-xxl-9{margin-right:75%}.bsui .offset-xxl-10{margin-right:83.33333333%}.bsui .offset-xxl-11{margin-right:91.66666667%}}.bsui .table{width:100%;margin-bottom:1rem;color:#212529}.bsui .table th,.bsui .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.bsui .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.bsui .table tbody+tbody{border-top:2px solid #dee2e6}.bsui .table-sm th,.bsui .table-sm td{padding:.3rem}.bsui .table-bordered{border:1px solid #dee2e6}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6}.bsui .table-bordered thead th,.bsui .table-bordered thead td{border-bottom-width:2px}.bsui .table-borderless th,.bsui .table-borderless td,.bsui .table-borderless thead th,.bsui .table-borderless tbody+tbody{border:0}.bsui .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.bsui .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.bsui .table-primary,.bsui .table-primary>th,.bsui .table-primary>td{background-color:#c0d8ed}.bsui .table-primary th,.bsui .table-primary td,.bsui .table-primary thead th,.bsui .table-primary tbody+tbody{border-color:#8ab6dd}.bsui .table-hover .table-primary:hover{background-color:#accce7}.bsui .table-hover .table-primary:hover>td,.bsui .table-hover .table-primary:hover>th{background-color:#accce7}.bsui .table-secondary,.bsui .table-secondary>th,.bsui .table-secondary>td{background-color:#d6d8db}.bsui .table-secondary th,.bsui .table-secondary td,.bsui .table-secondary thead th,.bsui .table-secondary tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-secondary:hover{background-color:#c8cbcf}.bsui .table-hover .table-secondary:hover>td,.bsui .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.bsui .table-success,.bsui .table-success>th,.bsui .table-success>td{background-color:#cbefcf}.bsui .table-success th,.bsui .table-success td,.bsui .table-success thead th,.bsui .table-success tbody+tbody{border-color:#9ee1a6}.bsui .table-hover .table-success:hover{background-color:#b8e9bd}.bsui .table-hover .table-success:hover>td,.bsui .table-hover .table-success:hover>th{background-color:#b8e9bd}.bsui .table-info,.bsui .table-info>th,.bsui .table-info>td{background-color:#bee5eb}.bsui .table-info th,.bsui .table-info td,.bsui .table-info thead th,.bsui .table-info tbody+tbody{border-color:#86cfda}.bsui .table-hover .table-info:hover{background-color:#abdde5}.bsui .table-hover .table-info:hover>td,.bsui .table-hover .table-info:hover>th{background-color:#abdde5}.bsui .table-warning,.bsui .table-warning>th,.bsui .table-warning>td{background-color:#ffeeba}.bsui .table-warning th,.bsui .table-warning td,.bsui .table-warning thead th,.bsui .table-warning tbody+tbody{border-color:#ffdf7e}.bsui .table-hover .table-warning:hover{background-color:#ffe8a1}.bsui .table-hover .table-warning:hover>td,.bsui .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bsui .table-danger,.bsui .table-danger>th,.bsui .table-danger>td{background-color:#f5c6cb}.bsui .table-danger th,.bsui .table-danger td,.bsui .table-danger thead th,.bsui .table-danger tbody+tbody{border-color:#ed969e}.bsui .table-hover .table-danger:hover{background-color:#f1b0b7}.bsui .table-hover .table-danger:hover>td,.bsui .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bsui .table-light,.bsui .table-light>th,.bsui .table-light>td{background-color:#fdfdfe}.bsui .table-light th,.bsui .table-light td,.bsui .table-light thead th,.bsui .table-light tbody+tbody{border-color:#fbfcfc}.bsui .table-hover .table-light:hover{background-color:#ececf6}.bsui .table-hover .table-light:hover>td,.bsui .table-hover .table-light:hover>th{background-color:#ececf6}.bsui .table-dark,.bsui .table-dark>th,.bsui .table-dark>td{background-color:#c6c8ca}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#95999c}.bsui .table-hover .table-dark:hover{background-color:#b9bbbe}.bsui .table-hover .table-dark:hover>td,.bsui .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bsui .table-white,.bsui .table-white>th,.bsui .table-white>td{background-color:#fff}.bsui .table-white th,.bsui .table-white td,.bsui .table-white thead th,.bsui .table-white tbody+tbody{border-color:#fff}.bsui .table-hover .table-white:hover{background-color:#f2f2f2}.bsui .table-hover .table-white:hover>td,.bsui .table-hover .table-white:hover>th{background-color:#f2f2f2}.bsui .table-purple,.bsui .table-purple>th,.bsui .table-purple>td{background-color:#e8d6f5}.bsui .table-purple th,.bsui .table-purple td,.bsui .table-purple thead th,.bsui .table-purple tbody+tbody{border-color:#d4b4ed}.bsui .table-hover .table-purple:hover{background-color:#ddc2f0}.bsui .table-hover .table-purple:hover>td,.bsui .table-hover .table-purple:hover>th{background-color:#ddc2f0}.bsui .table-salmon,.bsui .table-salmon>th,.bsui .table-salmon>td{background-color:#ffe2da}.bsui .table-salmon th,.bsui .table-salmon td,.bsui .table-salmon thead th,.bsui .table-salmon tbody+tbody{border-color:#ffc9ba}.bsui .table-hover .table-salmon:hover{background-color:#ffcec1}.bsui .table-hover .table-salmon:hover>td,.bsui .table-hover .table-salmon:hover>th{background-color:#ffcec1}.bsui .table-cyan,.bsui .table-cyan>th,.bsui .table-cyan>td{background-color:#c6edff}.bsui .table-cyan th,.bsui .table-cyan td,.bsui .table-cyan thead th,.bsui .table-cyan tbody+tbody{border-color:#96ddff}.bsui .table-hover .table-cyan:hover{background-color:#ade5ff}.bsui .table-hover .table-cyan:hover>td,.bsui .table-hover .table-cyan:hover>th{background-color:#ade5ff}.bsui .table-gray,.bsui .table-gray>th,.bsui .table-gray>td{background-color:#f1f3f5}.bsui .table-gray th,.bsui .table-gray td,.bsui .table-gray thead th,.bsui .table-gray tbody+tbody{border-color:#e6e9ec}.bsui .table-hover .table-gray:hover{background-color:#e2e6ea}.bsui .table-hover .table-gray:hover>td,.bsui .table-hover .table-gray:hover>th{background-color:#e2e6ea}.bsui .table-gray-dark,.bsui .table-gray-dark>th,.bsui .table-gray-dark>td{background-color:#d6d8db}.bsui .table-gray-dark th,.bsui .table-gray-dark td,.bsui .table-gray-dark thead th,.bsui .table-gray-dark tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.bsui .table-hover .table-gray-dark:hover>td,.bsui .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.bsui .table-indigo,.bsui .table-indigo>th,.bsui .table-indigo>td{background-color:#cec4d6}.bsui .table-indigo th,.bsui .table-indigo td,.bsui .table-indigo thead th,.bsui .table-indigo tbody+tbody{border-color:#a491b3}.bsui .table-hover .table-indigo:hover{background-color:#c2b5cc}.bsui .table-hover .table-indigo:hover>td,.bsui .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.bsui .table-orange,.bsui .table-orange>th,.bsui .table-orange>td{background-color:#feeab8}.bsui .table-orange th,.bsui .table-orange td,.bsui .table-orange thead th,.bsui .table-orange tbody+tbody{border-color:#fdd97a}.bsui .table-hover .table-orange:hover{background-color:#fee39f}.bsui .table-hover .table-orange:hover>td,.bsui .table-hover .table-orange:hover>th{background-color:#fee39f}.bsui .table-active,.bsui .table-active>th,.bsui .table-active>td{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover>td,.bsui .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.bsui .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.bsui .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.bsui .table-dark{color:#fff;background-color:#343a40}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th{border-color:#454d55}.bsui .table-dark.table-bordered{border:0}.bsui .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.bsui .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.bsui .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.bsui .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.bsui .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.bsui .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.bsui .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xxl>.table-bordered{border:0}}.bsui .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive>.table-bordered{border:0}.bsui .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .form-control{transition:none}}.bsui .form-control::-ms-expand{background-color:transparent;border:0}.bsui .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .form-control::placeholder{color:#6c757d;opacity:1}.bsui .form-control:disabled,.bsui .form-control[readonly]{background-color:#e9ecef;opacity:1}.bsui input[type="date"].form-control,.bsui input[type="time"].form-control,.bsui input[type="datetime-local"].form-control,.bsui input[type="month"].form-control{appearance:none}.bsui select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.bsui .form-control-file,.bsui .form-control-range{display:block;width:100%}.bsui .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.bsui .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.bsui .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.bsui .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.bsui .form-control-plaintext.form-control-sm,.bsui .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.bsui .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui select.form-control[size],.bsui select.form-control[multiple]{height:auto}.bsui textarea.form-control{height:auto}.bsui .form-group{margin-bottom:1rem}.bsui .form-text{display:block;margin-top:.25rem}.bsui .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.bsui .form-row>.col,.bsui .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.bsui .form-check{position:relative;display:block;padding-right:1.25rem}.bsui .form-check-input{position:absolute;margin-top:.3rem;margin-right:-1.25rem}.bsui .form-check-input[disabled] ~ .form-check-label,.bsui .form-check-input:disabled ~ .form-check-label{color:#6c757d}.bsui .form-check-label{margin-bottom:0}.bsui .form-check-inline{display:inline-flex;align-items:center;padding-right:0;margin-left:.75rem}.bsui .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0;margin-left:.3125rem}.bsui .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.bsui .valid-tooltip{position:absolute;top:100%;right:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.bsui .valid-tooltip,.form-row>[class*="col-"]>.bsui .valid-tooltip{right:5px}.was-validated .bsui:valid ~ .valid-feedback,.was-validated .bsui:valid ~ .valid-tooltip,.bsui.is-valid ~ .valid-feedback,.bsui.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .form-control:valid,.bsui .form-control.is-valid{border-color:#44c553;padding-left:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:valid:focus,.bsui .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui select.form-control:valid,.bsui select.form-control.is-valid{padding-left:4.8rem !important;background-position:left 2.4rem center}.was-validated .bsui textarea.form-control:valid,.bsui textarea.form-control.is-valid{padding-left:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) left calc(.4em + .225rem)}.was-validated .bsui .custom-select:valid,.bsui .custom-select.is-valid{border-color:#44c553;padding-left:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center left 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:valid:focus,.bsui .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .form-check-input:valid ~ .form-check-label,.bsui .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .bsui .form-check-input:valid ~ .valid-feedback,.was-validated .bsui .form-check-input:valid ~ .valid-tooltip,.bsui .form-check-input.is-valid ~ .valid-feedback,.bsui .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label,.bsui .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label::before,.bsui .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-control-input:valid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .bsui .custom-control-input:valid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-file-input:valid ~ .custom-file-label,.bsui .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .bsui .custom-file-input:valid:focus ~ .custom-file-label,.bsui .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.bsui .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.bsui .invalid-tooltip{position:absolute;top:100%;right:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.bsui .invalid-tooltip,.form-row>[class*="col-"]>.bsui .invalid-tooltip{right:5px}.was-validated .bsui:invalid ~ .invalid-feedback,.was-validated .bsui:invalid ~ .invalid-tooltip,.bsui.is-invalid ~ .invalid-feedback,.bsui.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .form-control:invalid,.bsui .form-control.is-invalid{border-color:#dc3545;padding-left:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:invalid:focus,.bsui .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui select.form-control:invalid,.bsui select.form-control.is-invalid{padding-left:4.8rem !important;background-position:left 2.4rem center}.was-validated .bsui textarea.form-control:invalid,.bsui textarea.form-control.is-invalid{padding-left:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) left calc(.4em + .225rem)}.was-validated .bsui .custom-select:invalid,.bsui .custom-select.is-invalid{border-color:#dc3545;padding-left:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center left 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:invalid:focus,.bsui .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .form-check-input:invalid ~ .form-check-label,.bsui .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .bsui .form-check-input:invalid ~ .invalid-feedback,.was-validated .bsui .form-check-input:invalid ~ .invalid-tooltip,.bsui .form-check-input.is-invalid ~ .invalid-feedback,.bsui .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label,.bsui .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-control-input:invalid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .bsui .custom-control-input:invalid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid ~ .custom-file-label,.bsui .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid:focus ~ .custom-file-label,.bsui .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.bsui .form-inline{display:flex;flex-flow:row wrap;align-items:center}.bsui .form-inline .form-check{width:100%}@media (min-width: 576px){.bsui .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.bsui .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.bsui .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.bsui .form-inline .form-control-plaintext{display:inline-block}.bsui .form-inline .input-group,.bsui .form-inline .custom-select{width:auto}.bsui .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-right:0}.bsui .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:0;margin-left:.25rem}.bsui .form-inline .custom-control{align-items:center;justify-content:center}.bsui .form-inline .custom-control-label{margin-bottom:0}}.bsui .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .btn{transition:none}}.bsui .btn:hover{color:#212529;text-decoration:none}.bsui .btn:focus,.bsui .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .btn.disabled,.bsui .btn:disabled{opacity:.65}.bsui .btn:not(:disabled):not(.disabled){cursor:pointer}.bsui a.btn.disabled,.bsui fieldset:disabled a.btn{pointer-events:none}.bsui .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.bsui .btn-primary:focus,.bsui .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-primary.disabled,.bsui .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:not(:disabled):not(.disabled):active,.bsui .btn-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.bsui .btn-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-secondary:focus,.bsui .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-secondary.disabled,.bsui .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:not(:disabled):not(.disabled):active,.bsui .btn-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.bsui .btn-success:focus,.bsui .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-success.disabled,.bsui .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:not(:disabled):not(.disabled):active,.bsui .btn-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.bsui .btn-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.bsui .btn-info:focus,.bsui .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-info.disabled,.bsui .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:not(:disabled):not(.disabled):active,.bsui .btn-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.bsui .btn-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.bsui .btn-warning:focus,.bsui .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-warning.disabled,.bsui .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:not(:disabled):not(.disabled):active,.bsui .btn-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.bsui .btn-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.bsui .btn-danger:focus,.bsui .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-danger.disabled,.bsui .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:not(:disabled):not(.disabled):active,.bsui .btn-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.bsui .btn-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.bsui .btn-light:focus,.bsui .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-light.disabled,.bsui .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:not(:disabled):not(.disabled):active,.bsui .btn-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.bsui .btn-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.bsui .btn-dark:focus,.bsui .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-dark.disabled,.bsui .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:not(:disabled):not(.disabled):active,.bsui .btn-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.bsui .btn-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-white{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.bsui .btn-white:focus,.bsui .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-white.disabled,.bsui .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:not(:disabled):not(.disabled):active,.bsui .btn-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.bsui .btn-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.bsui .btn-purple:focus,.bsui .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-purple.disabled,.bsui .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:not(:disabled):not(.disabled):active,.bsui .btn-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.bsui .btn-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.bsui .btn-salmon:focus,.bsui .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-salmon.disabled,.bsui .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:not(:disabled):not(.disabled):active,.bsui .btn-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.bsui .btn-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.bsui .btn-cyan:focus,.bsui .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-cyan.disabled,.bsui .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:not(:disabled):not(.disabled):active,.bsui .btn-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.bsui .btn-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.bsui .btn-gray:focus,.bsui .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray.disabled,.bsui .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:not(:disabled):not(.disabled):active,.bsui .btn-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.bsui .btn-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-gray-dark:focus,.bsui .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-gray-dark.disabled,.bsui .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.bsui .btn-indigo:focus,.bsui .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-indigo.disabled,.bsui .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:not(:disabled):not(.disabled):active,.bsui .btn-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.bsui .btn-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.bsui .btn-orange:focus,.bsui .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-orange.disabled,.bsui .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:not(:disabled):not(.disabled):active,.bsui .btn-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.bsui .btn-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-outline-primary{color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:focus,.bsui .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-primary.disabled,.bsui .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:focus,.bsui .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-secondary.disabled,.bsui .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-success{color:#44c553;border-color:#44c553}.bsui .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:focus,.bsui .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-success.disabled,.bsui .btn-outline-success:disabled{color:#44c553;background-color:transparent}.bsui .btn-outline-success:not(:disabled):not(.disabled):active,.bsui .btn-outline-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:focus,.bsui .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-info.disabled,.bsui .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.bsui .btn-outline-info:not(:disabled):not(.disabled):active,.bsui .btn-outline-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-warning{color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:focus,.bsui .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-warning.disabled,.bsui .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-danger{color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:focus,.bsui .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-danger.disabled,.bsui .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:focus,.bsui .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-light.disabled,.bsui .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.bsui .btn-outline-light:not(:disabled):not(.disabled):active,.bsui .btn-outline-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-dark{color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:focus,.bsui .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-dark.disabled,.bsui .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-white{color:#fff;border-color:#fff}.bsui .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:focus,.bsui .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-white.disabled,.bsui .btn-outline-white:disabled{color:#fff;background-color:transparent}.bsui .btn-outline-white:not(:disabled):not(.disabled):active,.bsui .btn-outline-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:focus,.bsui .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-purple.disabled,.bsui .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:focus,.bsui .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-salmon.disabled,.bsui .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:focus,.bsui .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-cyan.disabled,.bsui .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-gray{color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:focus,.bsui .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray.disabled,.bsui .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:focus,.bsui .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-gray-dark.disabled,.bsui .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:focus,.bsui .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-indigo.disabled,.bsui .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-orange{color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:focus,.bsui .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-outline-orange.disabled,.bsui .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.bsui .btn-link:hover{color:#144b7c;text-decoration:underline}.bsui .btn-link:focus,.bsui .btn-link.focus{text-decoration:underline}.bsui .btn-link:disabled,.bsui .btn-link.disabled{color:#6c757d;pointer-events:none}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-block{display:block;width:100%}.bsui .btn-block+.btn-block{margin-top:.5rem}.bsui input[type="submit"].btn-block,.bsui input[type="reset"].btn-block,.bsui input[type="button"].btn-block{width:100%}.bsui .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.bsui .fade{transition:none}}.bsui .fade:not(.show){opacity:0}.bsui .collapse:not(.show){display:none}.bsui .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing{transition:none}}.bsui .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing.width{transition:none}}.bsui .dropup,.bsui .dropright,.bsui .dropdown,.bsui .dropleft{position:relative}.bsui .dropdown-toggle{white-space:nowrap}.bsui .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.bsui .dropdown-toggle:empty::after{margin-right:0}.bsui .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.bsui .dropdown-menu-left{right:auto;left:0}.bsui .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.bsui .dropdown-menu-sm-left{right:auto;left:0}.bsui .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.bsui .dropdown-menu-md-left{right:auto;left:0}.bsui .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.bsui .dropdown-menu-lg-left{right:auto;left:0}.bsui .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.bsui .dropdown-menu-xl-left{right:auto;left:0}.bsui .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.bsui .dropdown-menu-xxl-left{right:auto;left:0}.bsui .dropdown-menu-xxl-right{right:0;left:auto}}.bsui .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.bsui .dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.bsui .dropup .dropdown-toggle:empty::after{margin-right:0}.bsui .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.bsui .dropright .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.bsui .dropright .dropdown-toggle::after{display:none}.bsui .dropright .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.bsui .dropright .dropdown-toggle:empty::after{margin-right:0}.bsui .dropright .dropdown-toggle::before{vertical-align:0}.bsui .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.bsui .dropleft .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.bsui .dropleft .dropdown-toggle:empty::after{margin-right:0}.bsui .dropleft .dropdown-toggle::after{vertical-align:0}.bsui .dropdown-menu[x-placement^="top"],.bsui .dropdown-menu[x-placement^="right"],.bsui .dropdown-menu[x-placement^="bottom"],.bsui .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.bsui .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.bsui .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.bsui .dropdown-item:hover,.bsui .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.bsui .dropdown-item.active,.bsui .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.bsui .dropdown-item.disabled,.bsui .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.bsui .dropdown-menu.show{display:block}.bsui .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.bsui .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.bsui .btn-group,.bsui .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.bsui .btn-group>.btn,.bsui .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.bsui .btn-group>.btn:hover,.bsui .btn-group-vertical>.btn:hover{z-index:1}.bsui .btn-group>.btn:focus,.bsui .btn-group>.btn:active,.bsui .btn-group>.btn.active,.bsui .btn-group-vertical>.btn:focus,.bsui .btn-group-vertical>.btn:active,.bsui .btn-group-vertical>.btn.active{z-index:1}.bsui .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.bsui .btn-toolbar .input-group{width:auto}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child){margin-right:-1px}.bsui .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.bsui .dropdown-toggle-split::after,.dropup .bsui .dropdown-toggle-split::after,.dropright .bsui .dropdown-toggle-split::after{margin-right:0}.dropleft .bsui .dropdown-toggle-split::before{margin-left:0}.bsui .btn-sm+.dropdown-toggle-split,.bsui .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.bsui .btn-lg+.dropdown-toggle-split,.bsui .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.bsui .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.bsui .btn-group-vertical>.btn,.bsui .btn-group-vertical>.btn-group{width:100%}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.bsui .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.bsui .btn-group-toggle>.btn,.bsui .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.bsui .btn-group-toggle>.btn input[type="radio"],.bsui .btn-group-toggle>.btn input[type="checkbox"],.bsui .btn-group-toggle>.btn-group>.btn input[type="radio"],.bsui .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.bsui .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.bsui .input-group>.form-control,.bsui .input-group>.form-control-plaintext,.bsui .input-group>.custom-select,.bsui .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.bsui .input-group>.form-control+.form-control,.bsui .input-group>.form-control+.custom-select,.bsui .input-group>.form-control+.custom-file,.bsui .input-group>.form-control-plaintext+.form-control,.bsui .input-group>.form-control-plaintext+.custom-select,.bsui .input-group>.form-control-plaintext+.custom-file,.bsui .input-group>.custom-select+.form-control,.bsui .input-group>.custom-select+.custom-select,.bsui .input-group>.custom-select+.custom-file,.bsui .input-group>.custom-file+.form-control,.bsui .input-group>.custom-file+.custom-select,.bsui .input-group>.custom-file+.custom-file{margin-right:-1px}.bsui .input-group>.form-control:focus,.bsui .input-group>.custom-select:focus,.bsui .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.bsui .input-group>.custom-file .custom-file-input:focus{z-index:4}.bsui .input-group>.form-control:not(:first-child),.bsui .input-group>.custom-select:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.custom-file{display:flex;align-items:center}.bsui .input-group>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group:not(.has-validation)>.form-control:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-select:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group.has-validation>.form-control:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-select:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group-prepend,.bsui .input-group-append{display:flex}.bsui .input-group-prepend .btn,.bsui .input-group-append .btn{position:relative;z-index:2}.bsui .input-group-prepend .btn:focus,.bsui .input-group-append .btn:focus{z-index:3}.bsui .input-group-prepend .btn+.btn,.bsui .input-group-prepend .btn+.input-group-text,.bsui .input-group-prepend .input-group-text+.input-group-text,.bsui .input-group-prepend .input-group-text+.btn,.bsui .input-group-append .btn+.btn,.bsui .input-group-append .btn+.input-group-text,.bsui .input-group-append .input-group-text+.input-group-text,.bsui .input-group-append .input-group-text+.btn{margin-right:-1px}.bsui .input-group-prepend{margin-left:-1px}.bsui .input-group-append{margin-right:-1px}.bsui .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.bsui .input-group-text input[type="radio"],.bsui .input-group-text input[type="checkbox"]{margin-top:0}.bsui .input-group-lg>.form-control:not(textarea),.bsui .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.bsui .input-group-lg>.form-control,.bsui .input-group-lg>.custom-select,.bsui .input-group-lg>.input-group-prepend>.input-group-text,.bsui .input-group-lg>.input-group-append>.input-group-text,.bsui .input-group-lg>.input-group-prepend>.btn,.bsui .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .input-group-sm>.form-control:not(textarea),.bsui .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.bsui .input-group-sm>.form-control,.bsui .input-group-sm>.custom-select,.bsui .input-group-sm>.input-group-prepend>.input-group-text,.bsui .input-group-sm>.input-group-append>.input-group-text,.bsui .input-group-sm>.input-group-prepend>.btn,.bsui .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .input-group-lg>.custom-select,.bsui .input-group-sm>.custom-select{padding-left:2.2rem}.bsui .input-group>.input-group-prepend>.btn,.bsui .input-group>.input-group-prepend>.input-group-text,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.bsui .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.bsui .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.input-group-append>.btn,.bsui .input-group>.input-group-append>.input-group-text,.bsui .input-group>.input-group-prepend:not(:first-child)>.btn,.bsui .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.bsui .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.bsui .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-right:1.5rem;print-color-adjust:exact}.bsui .custom-control-inline{display:inline-flex;margin-left:1rem}.bsui .custom-control-input{position:absolute;right:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.bsui .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.bsui .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.bsui .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.bsui .custom-control-input[disabled] ~ .custom-control-label,.bsui .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.bsui .custom-control-input[disabled] ~ .custom-control-label::before,.bsui .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.bsui .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.bsui .custom-control-label::before{position:absolute;top:.3rem;right:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.bsui .custom-control-label::after{position:absolute;top:.3rem;right:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.bsui .custom-checkbox .custom-control-label::before{border-radius:.25rem}.bsui .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-radio .custom-control-label::before{border-radius:50%}.bsui .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.bsui .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-switch{padding-right:2.25rem}.bsui .custom-switch .custom-control-label::before{right:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.bsui .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);right:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-switch .custom-control-label::after{transition:none}}.bsui .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(-.75rem)}.bsui .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem .45rem 2.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.bsui .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.bsui .custom-select[multiple],.bsui .custom-select[size]:not([size="1"]){height:auto;padding-left:1.2rem;background-image:none}.bsui .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.bsui .custom-select::-ms-expand{display:none}.bsui .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-right:1rem;padding-bottom:.25rem;font-size:.875rem}.bsui .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-right:2rem;padding-bottom:.65rem;font-size:1.15rem}.bsui .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.bsui .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.bsui .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-file-input[disabled] ~ .custom-file-label,.bsui .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.bsui .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.bsui .custom-file-input:lang(fa) ~ .custom-file-label::after{content:"از فهرست"}.bsui .custom-file-input:lang(ar) ~ .custom-file-label::after{content:"تصفح"}.bsui .custom-file-input:lang(iw) ~ .custom-file-label::after{content:"דפדוף"}.bsui .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.bsui .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.bsui .custom-file-label::after{position:absolute;top:0;bottom:0;left:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-right:inherit;border-radius:.25rem 0 0 .25rem}.bsui .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.bsui .custom-range:focus{outline:0}.bsui .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range::-moz-focus-outer{border:0}.bsui .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-webkit-slider-thumb{transition:none}}.bsui .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-moz-range-thumb{transition:none}}.bsui .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-ms-thumb{transition:none}}.bsui .custom-range::-ms-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.bsui .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.bsui .custom-range::-ms-fill-upper{margin-left:15px;background-color:#dee2e6;border-radius:1rem}.bsui .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.bsui .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-moz-range-track{cursor:default}.bsui .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:none}}.bsui .nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.bsui .nav-link{display:block;padding:.8rem 1rem}.bsui .nav-link:hover,.bsui .nav-link:focus{text-decoration:none}.bsui .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.bsui .nav-tabs{border-bottom:1px solid #dee2e6}.bsui .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.bsui .nav-tabs .nav-link:hover,.bsui .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.bsui .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.bsui .nav-tabs .nav-link.active,.bsui .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.bsui .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.bsui .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.bsui .nav-pills .nav-link.active,.bsui .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.bsui .nav-fill>.nav-link,.bsui .nav-fill .nav-item{flex:1 1 auto;text-align:center}.bsui .nav-justified>.nav-link,.bsui .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.bsui .tab-content>.tab-pane{display:none}.bsui .tab-content>.active{display:block}.bsui .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.bsui .navbar .container,.bsui .navbar .container-fluid,.bsui .navbar .container-sm,.bsui .navbar .container-md,.bsui .navbar .container-lg,.bsui .navbar .container-xl,.bsui .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.bsui .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-left:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.bsui .navbar-brand:hover,.bsui .navbar-brand:focus{text-decoration:none}.bsui .navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.bsui .navbar-nav .nav-link{padding-right:0;padding-left:0}.bsui .navbar-nav .dropdown-menu{position:static;float:none}.bsui .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.bsui .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.bsui .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.bsui .navbar-toggler:hover,.bsui .navbar-toggler:focus{text-decoration:none}.bsui .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.bsui .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.bsui .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-sm .navbar-nav{flex-direction:row}.bsui .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.bsui .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-md .navbar-nav{flex-direction:row}.bsui .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-md .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.bsui .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-lg .navbar-nav{flex-direction:row}.bsui .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.bsui .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.bsui .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xxl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xxl .navbar-toggler{display:none}}.bsui .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.bsui .navbar-expand .navbar-nav{flex-direction:row}.bsui .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand .navbar-toggler{display:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-dark .navbar-brand{color:#fff}.bsui .navbar-dark .navbar-brand:hover,.bsui .navbar-dark .navbar-brand:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-nav .nav-link:hover,.bsui .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.bsui .navbar-dark .navbar-nav .show>.nav-link,.bsui .navbar-dark .navbar-nav .active>.nav-link,.bsui .navbar-dark .navbar-nav .nav-link.show,.bsui .navbar-dark .navbar-nav .nav-link.active{color:#fff}.bsui .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.bsui .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-text a{color:#fff}.bsui .navbar-dark .navbar-text a:hover,.bsui .navbar-dark .navbar-text a:focus{color:#fff}.bsui .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.bsui .card>hr{margin-right:0;margin-left:0}.bsui .card>.list-group{border-top:inherit;border-bottom:inherit}.bsui .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card>.card-header+.list-group,.bsui .card>.list-group+.card-footer{border-top:0}.bsui .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.bsui .card-title{margin-bottom:.75rem}.bsui .card-subtitle{margin-top:-.375rem;margin-bottom:0}.bsui .card-text:last-child{margin-bottom:0}.bsui .card-link:hover{text-decoration:none}.bsui .card-link+.card-link{margin-right:1.25rem}.bsui .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.bsui .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.bsui .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.bsui .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.bsui .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.bsui .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.bsui .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-top,.bsui .card-img-bottom{flex-shrink:0;width:100%}.bsui .card-img,.bsui .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.bsui .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.bsui .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-group{display:flex;flex-flow:row wrap}.bsui .card-group>.card{flex:1 0 0%;margin-bottom:0}.bsui .card-group>.card+.card{margin-right:0;border-right:0}.bsui .card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-top,.bsui .card-group>.card:not(:last-child) .card-header{border-top-left-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-bottom,.bsui .card-group>.card:not(:last-child) .card-footer{border-bottom-left-radius:0}.bsui .card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-top,.bsui .card-group>.card:not(:first-child) .card-header{border-top-right-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-bottom,.bsui .card-group>.card:not(:first-child) .card-footer{border-bottom-right-radius:0}}.bsui .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.bsui .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.bsui .card-columns .card{display:inline-block;width:100%}}.bsui .accordion{overflow-anchor:none}.bsui .accordion>.card{overflow:hidden}.bsui .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.bsui .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.bsui .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.bsui .breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.bsui .breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#6c757d;content:"/"}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.bsui .breadcrumb-item.active{color:#6c757d}.bsui .pagination{display:flex;padding-right:0;list-style:none;border-radius:.25rem}.bsui .page-link{position:relative;display:block;padding:.75rem 1rem;margin-right:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.bsui .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.bsui .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .page-item:first-child .page-link{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.bsui .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bsui .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.bsui .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.bsui .pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.bsui .pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.bsui .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.bsui .pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.bsui .pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.bsui .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .badge{transition:none}}.bsui a.badge:hover,.bsui a.badge:focus{text-decoration:none}.bsui .badge:empty{display:none}.bsui .btn .badge{position:relative;top:-1px}.bsui .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.bsui .badge-primary{color:#fff;background-color:#1e73be}.bsui a.badge-primary:hover,.bsui a.badge-primary:focus{color:#fff;background-color:#175892}.bsui a.badge-primary:focus,.bsui a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .badge-secondary{color:#fff;background-color:#6c757d}.bsui a.badge-secondary:hover,.bsui a.badge-secondary:focus{color:#fff;background-color:#545b62}.bsui a.badge-secondary:focus,.bsui a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-success{color:#fff;background-color:#44c553}.bsui a.badge-success:hover,.bsui a.badge-success:focus{color:#fff;background-color:#33a340}.bsui a.badge-success:focus,.bsui a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .badge-info{color:#fff;background-color:#17a2b8}.bsui a.badge-info:hover,.bsui a.badge-info:focus{color:#fff;background-color:#117a8b}.bsui a.badge-info:focus,.bsui a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .badge-warning{color:#212529;background-color:#ffc107}.bsui a.badge-warning:hover,.bsui a.badge-warning:focus{color:#212529;background-color:#d39e00}.bsui a.badge-warning:focus,.bsui a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .badge-danger{color:#fff;background-color:#dc3545}.bsui a.badge-danger:hover,.bsui a.badge-danger:focus{color:#fff;background-color:#bd2130}.bsui a.badge-danger:focus,.bsui a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .badge-light{color:#212529;background-color:#f8f9fa}.bsui a.badge-light:hover,.bsui a.badge-light:focus{color:#212529;background-color:#dae0e5}.bsui a.badge-light:focus,.bsui a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .badge-dark{color:#fff;background-color:#343a40}.bsui a.badge-dark:hover,.bsui a.badge-dark:focus{color:#fff;background-color:#1d2124}.bsui a.badge-dark:focus,.bsui a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .badge-white{color:#212529;background-color:#fff}.bsui a.badge-white:hover,.bsui a.badge-white:focus{color:#212529;background-color:#e6e6e6}.bsui a.badge-white:focus,.bsui a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .badge-purple{color:#fff;background-color:#ad6edd}.bsui a.badge-purple:hover,.bsui a.badge-purple:focus{color:#fff;background-color:#9645d3}.bsui a.badge-purple:focus,.bsui a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .badge-salmon{color:#212529;background-color:#ff977a}.bsui a.badge-salmon:hover,.bsui a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.bsui a.badge-salmon:focus,.bsui a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .badge-cyan{color:#212529;background-color:#35bdff}.bsui a.badge-cyan:hover,.bsui a.badge-cyan:focus{color:#212529;background-color:#02acff}.bsui a.badge-cyan:focus,.bsui a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .badge-gray{color:#212529;background-color:#ced4da}.bsui a.badge-gray:hover,.bsui a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.bsui a.badge-gray:focus,.bsui a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .badge-gray-dark{color:#fff;background-color:#6c757d}.bsui a.badge-gray-dark:hover,.bsui a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.bsui a.badge-gray-dark:focus,.bsui a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-indigo{color:#fff;background-color:#502c6c}.bsui a.badge-indigo:hover,.bsui a.badge-indigo:focus{color:#fff;background-color:#351d48}.bsui a.badge-indigo:focus,.bsui a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .badge-orange{color:#212529;background-color:#fbb500}.bsui a.badge-orange:hover,.bsui a.badge-orange:focus{color:#212529;background-color:#c89000}.bsui a.badge-orange:focus,.bsui a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.bsui .jumbotron{padding:4rem 2rem}}.bsui .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.bsui .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.bsui .alert-heading{color:inherit}.bsui .alert-link{font-weight:700}.bsui .alert-dismissible{padding-left:4rem}.bsui .alert-dismissible .close{position:absolute;top:0;left:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.bsui .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#175892}.bsui .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#545b62}.bsui .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#33a340}.bsui .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#117a8b}.bsui .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#d39e00}.bsui .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#bd2130}.bsui .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#dae0e5}.bsui .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#1d2124}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#9645d3}.bsui .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#ff6f47}.bsui .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#02acff}.bsui .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#b1bbc4}.bsui .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#545b62}.bsui .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#351d48}.bsui .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.bsui .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.bsui .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .progress-bar{transition:none}}.bsui .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.bsui .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.bsui .progress-bar-animated{animation:none}}.bsui .media{display:flex;align-items:flex-start}.bsui .media-body{flex:1}.bsui .list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.25rem}.bsui .list-group-item-action{width:100%;color:#495057;text-align:inherit}.bsui .list-group-item-action:hover,.bsui .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.bsui .list-group-item-action:active{color:#212529;background-color:#e9ecef}.bsui .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.bsui .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.bsui .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.bsui .list-group-item.disabled,.bsui .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.bsui .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .list-group-item+.list-group-item{border-top-width:0}.bsui .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.bsui .list-group-horizontal{flex-direction:row}.bsui .list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media (min-width: 576px){.bsui .list-group-horizontal-sm{flex-direction:row}.bsui .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 768px){.bsui .list-group-horizontal-md{flex-direction:row}.bsui .list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-md>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 992px){.bsui .list-group-horizontal-lg{flex-direction:row}.bsui .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 1200px){.bsui .list-group-horizontal-xl{flex-direction:row}.bsui .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 1400px){.bsui .list-group-horizontal-xxl{flex-direction:row}.bsui .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}.bsui .list-group-flush{border-radius:0}.bsui .list-group-flush>.list-group-item{border-width:0 0 1px}.bsui .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.bsui .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.bsui .list-group-item-primary.list-group-item-action:hover,.bsui .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.bsui .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.bsui .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-secondary.list-group-item-action:hover,.bsui .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-success{color:#23662b;background-color:#cbefcf}.bsui .list-group-item-success.list-group-item-action:hover,.bsui .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.bsui .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.bsui .list-group-item-info{color:#0c5460;background-color:#bee5eb}.bsui .list-group-item-info.list-group-item-action:hover,.bsui .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.bsui .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.bsui .list-group-item-warning{color:#856404;background-color:#ffeeba}.bsui .list-group-item-warning.list-group-item-action:hover,.bsui .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.bsui .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.bsui .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.bsui .list-group-item-danger.list-group-item-action:hover,.bsui .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.bsui .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.bsui .list-group-item-light{color:#818182;background-color:#fdfdfe}.bsui .list-group-item-light.list-group-item-action:hover,.bsui .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.bsui .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.bsui .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.bsui .list-group-item-dark.list-group-item-action:hover,.bsui .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.bsui .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.bsui .list-group-item-white{color:#858585;background-color:#fff}.bsui .list-group-item-white.list-group-item-action:hover,.bsui .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.bsui .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.bsui .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.bsui .list-group-item-purple.list-group-item-action:hover,.bsui .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.bsui .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.bsui .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.bsui .list-group-item-salmon.list-group-item-action:hover,.bsui .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.bsui .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.bsui .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.bsui .list-group-item-cyan.list-group-item-action:hover,.bsui .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.bsui .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.bsui .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.bsui .list-group-item-gray.list-group-item-action:hover,.bsui .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.bsui .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.bsui .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-gray-dark.list-group-item-action:hover,.bsui .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.bsui .list-group-item-indigo.list-group-item-action:hover,.bsui .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.bsui .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.bsui .list-group-item-orange{color:#835e00;background-color:#feeab8}.bsui .list-group-item-orange.list-group-item-action:hover,.bsui .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.bsui .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.bsui .close{float:left;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.bsui .close:hover{color:#000;text-decoration:none}.bsui .close:not(:disabled):not(.disabled):hover,.bsui .close:not(:disabled):not(.disabled):focus{opacity:.75}.bsui button.close{padding:0;background-color:transparent;border:0}.bsui a.close.disabled{pointer-events:none}.bsui .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.bsui .toast:not(:last-child){margin-bottom:.75rem}.bsui .toast.showing{opacity:1}.bsui .toast.show{display:block;opacity:1}.bsui .toast.hide{display:none}.bsui .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .toast-body{padding:.75rem}.bsui .modal-open{overflow:hidden}.bsui .modal-open .modal{overflow-x:hidden;overflow-y:auto}.bsui .modal{position:fixed;top:0;right:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.bsui .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .bsui .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .bsui .modal-dialog{transition:none}}.modal.show .bsui .modal-dialog{transform:none}.modal.modal-static .bsui .modal-dialog{transform:scale(1.02)}.bsui .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.bsui .modal-dialog-scrollable .modal-header,.bsui .modal-dialog-scrollable .modal-footer{flex-shrink:0}.bsui .modal-dialog-scrollable .modal-body{overflow-y:auto}.bsui .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.bsui .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.bsui .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.bsui .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.bsui .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.bsui .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.bsui .modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.bsui .modal-backdrop.fade{opacity:0}.bsui .modal-backdrop.show{opacity:.5}.bsui .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .modal-header .close{padding:1rem 1rem;margin:-1rem auto -1rem -1rem}.bsui .modal-title{margin-bottom:0;line-height:1.6}.bsui .modal-body{position:relative;flex:1 1 auto;padding:1rem}.bsui .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.bsui .modal-footer>*{margin:.25rem}.bsui .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.bsui .modal-dialog{max-width:500px;margin:1.75rem auto}.bsui .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.bsui .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.bsui .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.bsui .modal-sm{max-width:300px}}@media (min-width: 992px){.bsui .modal-lg,.bsui .modal-xl{max-width:800px}}@media (min-width: 1200px){.bsui .modal-xl{max-width:1140px}}.bsui .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.bsui .tooltip.show{opacity:.9}.bsui .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.bsui .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bsui .bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bsui .bs-tooltip-top .arrow,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bsui .bs-tooltip-top .arrow::before,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bsui .bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bsui .bs-tooltip-right .arrow,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-right .arrow::before,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bsui .bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bsui .bs-tooltip-bottom .arrow,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bsui .bs-tooltip-bottom .arrow::before,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bsui .bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bsui .bs-tooltip-left .arrow,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-left .arrow::before,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bsui .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.bsui .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.bsui .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.bsui .popover .arrow::before,.bsui .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bsui .bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bsui .bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bsui .bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bsui .bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bsui .bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bsui .bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bsui .bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bsui .bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bsui .bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bsui .bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bsui .bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bsui .bs-popover-bottom .popover-header::before,.bsui .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bsui .bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bsui .bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bsui .bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bsui .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .popover-header:empty{display:none}.bsui .popover-body{padding:.5rem .75rem;color:#212529}.bsui .carousel{position:relative}.bsui .carousel.pointer-event{touch-action:pan-y}.bsui .carousel-inner{position:relative;width:100%;overflow:hidden}.bsui .carousel-inner::after{display:block;clear:both;content:""}.bsui .carousel-item{position:relative;display:none;float:right;width:100%;margin-left:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .carousel-item{transition:none}}.bsui .carousel-item.active,.bsui .carousel-item-next,.bsui .carousel-item-prev{display:block}.bsui .carousel-item-next:not(.carousel-item-left),.bsui .active.carousel-item-right{transform:translateX(-100%)}.bsui .carousel-item-prev:not(.carousel-item-right),.bsui .active.carousel-item-left{transform:translateX(100%)}.bsui .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.bsui .carousel-fade .carousel-item.active,.bsui .carousel-fade .carousel-item-next.carousel-item-left,.bsui .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{transition:none}}.bsui .carousel-control-prev,.bsui .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-control-prev,.bsui .carousel-control-next{transition:none}}.bsui .carousel-control-prev:hover,.bsui .carousel-control-prev:focus,.bsui .carousel-control-next:hover,.bsui .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.bsui .carousel-control-prev{right:0}.bsui .carousel-control-next{left:0}.bsui .carousel-control-prev-icon,.bsui .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.bsui .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.bsui .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.bsui .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-right:0;margin-right:15%;margin-left:15%;list-style:none}.bsui .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-indicators li{transition:none}}.bsui .carousel-indicators .active{opacity:1}.bsui .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.bsui .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-left-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.bsui .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.bsui .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.bsui .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.bsui .spinner-border,.bsui .spinner-grow{animation-duration:1.5s}}.bsui .align-baseline{vertical-align:baseline !important}.bsui .align-top{vertical-align:top !important}.bsui .align-middle{vertical-align:middle !important}.bsui .align-bottom{vertical-align:bottom !important}.bsui .align-text-bottom{vertical-align:text-bottom !important}.bsui .align-text-top{vertical-align:text-top !important}.bsui .bg-primary{background-color:#1e73be !important}.bsui a.bg-primary:hover,.bsui a.bg-primary:focus,.bsui button.bg-primary:hover,.bsui button.bg-primary:focus{background-color:#175892 !important}.bsui .bg-secondary{background-color:#6c757d !important}.bsui a.bg-secondary:hover,.bsui a.bg-secondary:focus,.bsui button.bg-secondary:hover,.bsui button.bg-secondary:focus{background-color:#545b62 !important}.bsui .bg-success{background-color:#44c553 !important}.bsui a.bg-success:hover,.bsui a.bg-success:focus,.bsui button.bg-success:hover,.bsui button.bg-success:focus{background-color:#33a340 !important}.bsui .bg-info{background-color:#17a2b8 !important}.bsui a.bg-info:hover,.bsui a.bg-info:focus,.bsui button.bg-info:hover,.bsui button.bg-info:focus{background-color:#117a8b !important}.bsui .bg-warning{background-color:#ffc107 !important}.bsui a.bg-warning:hover,.bsui a.bg-warning:focus,.bsui button.bg-warning:hover,.bsui button.bg-warning:focus{background-color:#d39e00 !important}.bsui .bg-danger{background-color:#dc3545 !important}.bsui a.bg-danger:hover,.bsui a.bg-danger:focus,.bsui button.bg-danger:hover,.bsui button.bg-danger:focus{background-color:#bd2130 !important}.bsui .bg-light{background-color:#f8f9fa !important}.bsui a.bg-light:hover,.bsui a.bg-light:focus,.bsui button.bg-light:hover,.bsui button.bg-light:focus{background-color:#dae0e5 !important}.bsui .bg-dark{background-color:#343a40 !important}.bsui a.bg-dark:hover,.bsui a.bg-dark:focus,.bsui button.bg-dark:hover,.bsui button.bg-dark:focus{background-color:#1d2124 !important}.bsui .bg-white{background-color:#fff !important}.bsui a.bg-white:hover,.bsui a.bg-white:focus,.bsui button.bg-white:hover,.bsui button.bg-white:focus{background-color:#e6e6e6 !important}.bsui .bg-purple{background-color:#ad6edd !important}.bsui a.bg-purple:hover,.bsui a.bg-purple:focus,.bsui button.bg-purple:hover,.bsui button.bg-purple:focus{background-color:#9645d3 !important}.bsui .bg-salmon{background-color:#ff977a !important}.bsui a.bg-salmon:hover,.bsui a.bg-salmon:focus,.bsui button.bg-salmon:hover,.bsui button.bg-salmon:focus{background-color:#ff6f47 !important}.bsui .bg-cyan{background-color:#35bdff !important}.bsui a.bg-cyan:hover,.bsui a.bg-cyan:focus,.bsui button.bg-cyan:hover,.bsui button.bg-cyan:focus{background-color:#02acff !important}.bsui .bg-gray{background-color:#ced4da !important}.bsui a.bg-gray:hover,.bsui a.bg-gray:focus,.bsui button.bg-gray:hover,.bsui button.bg-gray:focus{background-color:#b1bbc4 !important}.bsui .bg-gray-dark{background-color:#6c757d !important}.bsui a.bg-gray-dark:hover,.bsui a.bg-gray-dark:focus,.bsui button.bg-gray-dark:hover,.bsui button.bg-gray-dark:focus{background-color:#545b62 !important}.bsui .bg-indigo{background-color:#502c6c !important}.bsui a.bg-indigo:hover,.bsui a.bg-indigo:focus,.bsui button.bg-indigo:hover,.bsui button.bg-indigo:focus{background-color:#351d48 !important}.bsui .bg-orange{background-color:#fbb500 !important}.bsui a.bg-orange:hover,.bsui a.bg-orange:focus,.bsui button.bg-orange:hover,.bsui button.bg-orange:focus{background-color:#c89000 !important}.bsui .bg-white{background-color:#fff !important}.bsui .bg-transparent{background-color:transparent !important}.bsui .border{border:1px solid #dee2e6 !important}.bsui .border-top{border-top:1px solid #dee2e6 !important}.bsui .border-right{border-right:1px solid #dee2e6 !important}.bsui .border-bottom{border-bottom:1px solid #dee2e6 !important}.bsui .border-left{border-left:1px solid #dee2e6 !important}.bsui .border-0{border:0 !important}.bsui .border-top-0{border-top:0 !important}.bsui .border-right-0{border-right:0 !important}.bsui .border-bottom-0{border-bottom:0 !important}.bsui .border-left-0{border-left:0 !important}.bsui .border-primary{border-color:#1e73be !important}.bsui .border-secondary{border-color:#6c757d !important}.bsui .border-success{border-color:#44c553 !important}.bsui .border-info{border-color:#17a2b8 !important}.bsui .border-warning{border-color:#ffc107 !important}.bsui .border-danger{border-color:#dc3545 !important}.bsui .border-light{border-color:#f8f9fa !important}.bsui .border-dark{border-color:#343a40 !important}.bsui .border-white{border-color:#fff !important}.bsui .border-purple{border-color:#ad6edd !important}.bsui .border-salmon{border-color:#ff977a !important}.bsui .border-cyan{border-color:#35bdff !important}.bsui .border-gray{border-color:#ced4da !important}.bsui .border-gray-dark{border-color:#6c757d !important}.bsui .border-indigo{border-color:#502c6c !important}.bsui .border-orange{border-color:#fbb500 !important}.bsui .border-white{border-color:#fff !important}.bsui .rounded-sm{border-radius:.2rem !important}.bsui .rounded{border-radius:.25rem !important}.bsui .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.bsui .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.bsui .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-lg{border-radius:.3rem !important}.bsui .rounded-circle{border-radius:50% !important}.bsui .rounded-pill{border-radius:50rem !important}.bsui .rounded-0{border-radius:0 !important}.bsui .clearfix::after{display:block;clear:both;content:""}.bsui .d-none{display:none !important}.bsui .d-inline{display:inline !important}.bsui .d-inline-block{display:inline-block !important}.bsui .d-block{display:block !important}.bsui .d-table{display:table !important}.bsui .d-table-row{display:table-row !important}.bsui .d-table-cell{display:table-cell !important}.bsui .d-flex{display:flex !important}.bsui .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.bsui .d-sm-none{display:none !important}.bsui .d-sm-inline{display:inline !important}.bsui .d-sm-inline-block{display:inline-block !important}.bsui .d-sm-block{display:block !important}.bsui .d-sm-table{display:table !important}.bsui .d-sm-table-row{display:table-row !important}.bsui .d-sm-table-cell{display:table-cell !important}.bsui .d-sm-flex{display:flex !important}.bsui .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.bsui .d-md-none{display:none !important}.bsui .d-md-inline{display:inline !important}.bsui .d-md-inline-block{display:inline-block !important}.bsui .d-md-block{display:block !important}.bsui .d-md-table{display:table !important}.bsui .d-md-table-row{display:table-row !important}.bsui .d-md-table-cell{display:table-cell !important}.bsui .d-md-flex{display:flex !important}.bsui .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.bsui .d-lg-none{display:none !important}.bsui .d-lg-inline{display:inline !important}.bsui .d-lg-inline-block{display:inline-block !important}.bsui .d-lg-block{display:block !important}.bsui .d-lg-table{display:table !important}.bsui .d-lg-table-row{display:table-row !important}.bsui .d-lg-table-cell{display:table-cell !important}.bsui .d-lg-flex{display:flex !important}.bsui .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.bsui .d-xl-none{display:none !important}.bsui .d-xl-inline{display:inline !important}.bsui .d-xl-inline-block{display:inline-block !important}.bsui .d-xl-block{display:block !important}.bsui .d-xl-table{display:table !important}.bsui .d-xl-table-row{display:table-row !important}.bsui .d-xl-table-cell{display:table-cell !important}.bsui .d-xl-flex{display:flex !important}.bsui .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.bsui .d-xxl-none{display:none !important}.bsui .d-xxl-inline{display:inline !important}.bsui .d-xxl-inline-block{display:inline-block !important}.bsui .d-xxl-block{display:block !important}.bsui .d-xxl-table{display:table !important}.bsui .d-xxl-table-row{display:table-row !important}.bsui .d-xxl-table-cell{display:table-cell !important}.bsui .d-xxl-flex{display:flex !important}.bsui .d-xxl-inline-flex{display:inline-flex !important}}@media print{.bsui .d-print-none{display:none !important}.bsui .d-print-inline{display:inline !important}.bsui .d-print-inline-block{display:inline-block !important}.bsui .d-print-block{display:block !important}.bsui .d-print-table{display:table !important}.bsui .d-print-table-row{display:table-row !important}.bsui .d-print-table-cell{display:table-cell !important}.bsui .d-print-flex{display:flex !important}.bsui .d-print-inline-flex{display:inline-flex !important}}.bsui .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.bsui .embed-responsive::before{display:block;content:""}.bsui .embed-responsive .embed-responsive-item,.bsui .embed-responsive iframe,.bsui .embed-responsive embed,.bsui .embed-responsive object,.bsui .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.bsui .embed-responsive-21by9::before{padding-top:42.85714286%}.bsui .embed-responsive-16by9::before{padding-top:56.25%}.bsui .embed-responsive-4by3::before{padding-top:75%}.bsui .embed-responsive-1by1::before{padding-top:100%}.bsui .flex-row{flex-direction:row !important}.bsui .flex-column{flex-direction:column !important}.bsui .flex-row-reverse{flex-direction:row-reverse !important}.bsui .flex-column-reverse{flex-direction:column-reverse !important}.bsui .flex-wrap{flex-wrap:wrap !important}.bsui .flex-nowrap{flex-wrap:nowrap !important}.bsui .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-fill{flex:1 1 auto !important}.bsui .flex-grow-0{flex-grow:0 !important}.bsui .flex-grow-1{flex-grow:1 !important}.bsui .flex-shrink-0{flex-shrink:0 !important}.bsui .flex-shrink-1{flex-shrink:1 !important}.bsui .justify-content-start{justify-content:flex-start !important}.bsui .justify-content-end{justify-content:flex-end !important}.bsui .justify-content-center{justify-content:center !important}.bsui .justify-content-between{justify-content:space-between !important}.bsui .justify-content-around{justify-content:space-around !important}.bsui .align-items-start{align-items:flex-start !important}.bsui .align-items-end{align-items:flex-end !important}.bsui .align-items-center{align-items:center !important}.bsui .align-items-baseline{align-items:baseline !important}.bsui .align-items-stretch{align-items:stretch !important}.bsui .align-content-start{align-content:flex-start !important}.bsui .align-content-end{align-content:flex-end !important}.bsui .align-content-center{align-content:center !important}.bsui .align-content-between{align-content:space-between !important}.bsui .align-content-around{align-content:space-around !important}.bsui .align-content-stretch{align-content:stretch !important}.bsui .align-self-auto{align-self:auto !important}.bsui .align-self-start{align-self:flex-start !important}.bsui .align-self-end{align-self:flex-end !important}.bsui .align-self-center{align-self:center !important}.bsui .align-self-baseline{align-self:baseline !important}.bsui .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.bsui .flex-sm-row{flex-direction:row !important}.bsui .flex-sm-column{flex-direction:column !important}.bsui .flex-sm-row-reverse{flex-direction:row-reverse !important}.bsui .flex-sm-column-reverse{flex-direction:column-reverse !important}.bsui .flex-sm-wrap{flex-wrap:wrap !important}.bsui .flex-sm-nowrap{flex-wrap:nowrap !important}.bsui .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-sm-fill{flex:1 1 auto !important}.bsui .flex-sm-grow-0{flex-grow:0 !important}.bsui .flex-sm-grow-1{flex-grow:1 !important}.bsui .flex-sm-shrink-0{flex-shrink:0 !important}.bsui .flex-sm-shrink-1{flex-shrink:1 !important}.bsui .justify-content-sm-start{justify-content:flex-start !important}.bsui .justify-content-sm-end{justify-content:flex-end !important}.bsui .justify-content-sm-center{justify-content:center !important}.bsui .justify-content-sm-between{justify-content:space-between !important}.bsui .justify-content-sm-around{justify-content:space-around !important}.bsui .align-items-sm-start{align-items:flex-start !important}.bsui .align-items-sm-end{align-items:flex-end !important}.bsui .align-items-sm-center{align-items:center !important}.bsui .align-items-sm-baseline{align-items:baseline !important}.bsui .align-items-sm-stretch{align-items:stretch !important}.bsui .align-content-sm-start{align-content:flex-start !important}.bsui .align-content-sm-end{align-content:flex-end !important}.bsui .align-content-sm-center{align-content:center !important}.bsui .align-content-sm-between{align-content:space-between !important}.bsui .align-content-sm-around{align-content:space-around !important}.bsui .align-content-sm-stretch{align-content:stretch !important}.bsui .align-self-sm-auto{align-self:auto !important}.bsui .align-self-sm-start{align-self:flex-start !important}.bsui .align-self-sm-end{align-self:flex-end !important}.bsui .align-self-sm-center{align-self:center !important}.bsui .align-self-sm-baseline{align-self:baseline !important}.bsui .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.bsui .flex-md-row{flex-direction:row !important}.bsui .flex-md-column{flex-direction:column !important}.bsui .flex-md-row-reverse{flex-direction:row-reverse !important}.bsui .flex-md-column-reverse{flex-direction:column-reverse !important}.bsui .flex-md-wrap{flex-wrap:wrap !important}.bsui .flex-md-nowrap{flex-wrap:nowrap !important}.bsui .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-md-fill{flex:1 1 auto !important}.bsui .flex-md-grow-0{flex-grow:0 !important}.bsui .flex-md-grow-1{flex-grow:1 !important}.bsui .flex-md-shrink-0{flex-shrink:0 !important}.bsui .flex-md-shrink-1{flex-shrink:1 !important}.bsui .justify-content-md-start{justify-content:flex-start !important}.bsui .justify-content-md-end{justify-content:flex-end !important}.bsui .justify-content-md-center{justify-content:center !important}.bsui .justify-content-md-between{justify-content:space-between !important}.bsui .justify-content-md-around{justify-content:space-around !important}.bsui .align-items-md-start{align-items:flex-start !important}.bsui .align-items-md-end{align-items:flex-end !important}.bsui .align-items-md-center{align-items:center !important}.bsui .align-items-md-baseline{align-items:baseline !important}.bsui .align-items-md-stretch{align-items:stretch !important}.bsui .align-content-md-start{align-content:flex-start !important}.bsui .align-content-md-end{align-content:flex-end !important}.bsui .align-content-md-center{align-content:center !important}.bsui .align-content-md-between{align-content:space-between !important}.bsui .align-content-md-around{align-content:space-around !important}.bsui .align-content-md-stretch{align-content:stretch !important}.bsui .align-self-md-auto{align-self:auto !important}.bsui .align-self-md-start{align-self:flex-start !important}.bsui .align-self-md-end{align-self:flex-end !important}.bsui .align-self-md-center{align-self:center !important}.bsui .align-self-md-baseline{align-self:baseline !important}.bsui .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.bsui .flex-lg-row{flex-direction:row !important}.bsui .flex-lg-column{flex-direction:column !important}.bsui .flex-lg-row-reverse{flex-direction:row-reverse !important}.bsui .flex-lg-column-reverse{flex-direction:column-reverse !important}.bsui .flex-lg-wrap{flex-wrap:wrap !important}.bsui .flex-lg-nowrap{flex-wrap:nowrap !important}.bsui .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-lg-fill{flex:1 1 auto !important}.bsui .flex-lg-grow-0{flex-grow:0 !important}.bsui .flex-lg-grow-1{flex-grow:1 !important}.bsui .flex-lg-shrink-0{flex-shrink:0 !important}.bsui .flex-lg-shrink-1{flex-shrink:1 !important}.bsui .justify-content-lg-start{justify-content:flex-start !important}.bsui .justify-content-lg-end{justify-content:flex-end !important}.bsui .justify-content-lg-center{justify-content:center !important}.bsui .justify-content-lg-between{justify-content:space-between !important}.bsui .justify-content-lg-around{justify-content:space-around !important}.bsui .align-items-lg-start{align-items:flex-start !important}.bsui .align-items-lg-end{align-items:flex-end !important}.bsui .align-items-lg-center{align-items:center !important}.bsui .align-items-lg-baseline{align-items:baseline !important}.bsui .align-items-lg-stretch{align-items:stretch !important}.bsui .align-content-lg-start{align-content:flex-start !important}.bsui .align-content-lg-end{align-content:flex-end !important}.bsui .align-content-lg-center{align-content:center !important}.bsui .align-content-lg-between{align-content:space-between !important}.bsui .align-content-lg-around{align-content:space-around !important}.bsui .align-content-lg-stretch{align-content:stretch !important}.bsui .align-self-lg-auto{align-self:auto !important}.bsui .align-self-lg-start{align-self:flex-start !important}.bsui .align-self-lg-end{align-self:flex-end !important}.bsui .align-self-lg-center{align-self:center !important}.bsui .align-self-lg-baseline{align-self:baseline !important}.bsui .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.bsui .flex-xl-row{flex-direction:row !important}.bsui .flex-xl-column{flex-direction:column !important}.bsui .flex-xl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xl-wrap{flex-wrap:wrap !important}.bsui .flex-xl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xl-fill{flex:1 1 auto !important}.bsui .flex-xl-grow-0{flex-grow:0 !important}.bsui .flex-xl-grow-1{flex-grow:1 !important}.bsui .flex-xl-shrink-0{flex-shrink:0 !important}.bsui .flex-xl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xl-start{justify-content:flex-start !important}.bsui .justify-content-xl-end{justify-content:flex-end !important}.bsui .justify-content-xl-center{justify-content:center !important}.bsui .justify-content-xl-between{justify-content:space-between !important}.bsui .justify-content-xl-around{justify-content:space-around !important}.bsui .align-items-xl-start{align-items:flex-start !important}.bsui .align-items-xl-end{align-items:flex-end !important}.bsui .align-items-xl-center{align-items:center !important}.bsui .align-items-xl-baseline{align-items:baseline !important}.bsui .align-items-xl-stretch{align-items:stretch !important}.bsui .align-content-xl-start{align-content:flex-start !important}.bsui .align-content-xl-end{align-content:flex-end !important}.bsui .align-content-xl-center{align-content:center !important}.bsui .align-content-xl-between{align-content:space-between !important}.bsui .align-content-xl-around{align-content:space-around !important}.bsui .align-content-xl-stretch{align-content:stretch !important}.bsui .align-self-xl-auto{align-self:auto !important}.bsui .align-self-xl-start{align-self:flex-start !important}.bsui .align-self-xl-end{align-self:flex-end !important}.bsui .align-self-xl-center{align-self:center !important}.bsui .align-self-xl-baseline{align-self:baseline !important}.bsui .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.bsui .flex-xxl-row{flex-direction:row !important}.bsui .flex-xxl-column{flex-direction:column !important}.bsui .flex-xxl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xxl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xxl-wrap{flex-wrap:wrap !important}.bsui .flex-xxl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xxl-fill{flex:1 1 auto !important}.bsui .flex-xxl-grow-0{flex-grow:0 !important}.bsui .flex-xxl-grow-1{flex-grow:1 !important}.bsui .flex-xxl-shrink-0{flex-shrink:0 !important}.bsui .flex-xxl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xxl-start{justify-content:flex-start !important}.bsui .justify-content-xxl-end{justify-content:flex-end !important}.bsui .justify-content-xxl-center{justify-content:center !important}.bsui .justify-content-xxl-between{justify-content:space-between !important}.bsui .justify-content-xxl-around{justify-content:space-around !important}.bsui .align-items-xxl-start{align-items:flex-start !important}.bsui .align-items-xxl-end{align-items:flex-end !important}.bsui .align-items-xxl-center{align-items:center !important}.bsui .align-items-xxl-baseline{align-items:baseline !important}.bsui .align-items-xxl-stretch{align-items:stretch !important}.bsui .align-content-xxl-start{align-content:flex-start !important}.bsui .align-content-xxl-end{align-content:flex-end !important}.bsui .align-content-xxl-center{align-content:center !important}.bsui .align-content-xxl-between{align-content:space-between !important}.bsui .align-content-xxl-around{align-content:space-around !important}.bsui .align-content-xxl-stretch{align-content:stretch !important}.bsui .align-self-xxl-auto{align-self:auto !important}.bsui .align-self-xxl-start{align-self:flex-start !important}.bsui .align-self-xxl-end{align-self:flex-end !important}.bsui .align-self-xxl-center{align-self:center !important}.bsui .align-self-xxl-baseline{align-self:baseline !important}.bsui .align-self-xxl-stretch{align-self:stretch !important}}.bsui .float-left{float:left !important}.bsui .float-right{float:right !important}.bsui .float-none{float:none !important}@media (min-width: 576px){.bsui .float-sm-left{float:left !important}.bsui .float-sm-right{float:right !important}.bsui .float-sm-none{float:none !important}}@media (min-width: 768px){.bsui .float-md-left{float:left !important}.bsui .float-md-right{float:right !important}.bsui .float-md-none{float:none !important}}@media (min-width: 992px){.bsui .float-lg-left{float:left !important}.bsui .float-lg-right{float:right !important}.bsui .float-lg-none{float:none !important}}@media (min-width: 1200px){.bsui .float-xl-left{float:left !important}.bsui .float-xl-right{float:right !important}.bsui .float-xl-none{float:none !important}}@media (min-width: 1400px){.bsui .float-xxl-left{float:left !important}.bsui .float-xxl-right{float:right !important}.bsui .float-xxl-none{float:none !important}}.bsui .user-select-all{user-select:all !important}.bsui .user-select-auto{user-select:auto !important}.bsui .user-select-none{user-select:none !important}.bsui .overflow-auto{overflow:auto !important}.bsui .overflow-hidden{overflow:hidden !important}.bsui .position-static{position:static !important}.bsui .position-relative{position:relative !important}.bsui .position-absolute{position:absolute !important}.bsui .position-fixed{position:fixed !important}.bsui .position-sticky{position:sticky !important}.bsui .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.bsui .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.bsui .sticky-top{position:sticky;top:0;z-index:1020}}.bsui .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.bsui .sr-only-focusable:active,.bsui .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.bsui .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.bsui .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.bsui .shadow-none{box-shadow:none !important}.bsui .w-25{width:25% !important}.bsui .w-50{width:50% !important}.bsui .w-75{width:75% !important}.bsui .w-100{width:100% !important}.bsui .w-auto{width:auto !important}.bsui .h-25{height:25% !important}.bsui .h-50{height:50% !important}.bsui .h-75{height:75% !important}.bsui .h-100{height:100% !important}.bsui .h-auto{height:auto !important}.bsui .mw-100{max-width:100% !important}.bsui .mh-100{max-height:100% !important}.bsui .min-vw-100{min-width:100vw !important}.bsui .min-vh-100{min-height:100vh !important}.bsui .vw-100{width:100vw !important}.bsui .vh-100{height:100vh !important}.bsui .m-0{margin:0 !important}.bsui .mt-0,.bsui .my-0{margin-top:0 !important}.bsui .mr-0,.bsui .mx-0{margin-right:0 !important}.bsui .mb-0,.bsui .my-0{margin-bottom:0 !important}.bsui .ml-0,.bsui .mx-0{margin-left:0 !important}.bsui .m-1{margin:.25rem !important}.bsui .mt-1,.bsui .my-1{margin-top:.25rem !important}.bsui .mr-1,.bsui .mx-1{margin-right:.25rem !important}.bsui .mb-1,.bsui .my-1{margin-bottom:.25rem !important}.bsui .ml-1,.bsui .mx-1{margin-left:.25rem !important}.bsui .m-2{margin:.5rem !important}.bsui .mt-2,.bsui .my-2{margin-top:.5rem !important}.bsui .mr-2,.bsui .mx-2{margin-right:.5rem !important}.bsui .mb-2,.bsui .my-2{margin-bottom:.5rem !important}.bsui .ml-2,.bsui .mx-2{margin-left:.5rem !important}.bsui .m-3{margin:1rem !important}.bsui .mt-3,.bsui .my-3{margin-top:1rem !important}.bsui .mr-3,.bsui .mx-3{margin-right:1rem !important}.bsui .mb-3,.bsui .my-3{margin-bottom:1rem !important}.bsui .ml-3,.bsui .mx-3{margin-left:1rem !important}.bsui .m-4{margin:1.5rem !important}.bsui .mt-4,.bsui .my-4{margin-top:1.5rem !important}.bsui .mr-4,.bsui .mx-4{margin-right:1.5rem !important}.bsui .mb-4,.bsui .my-4{margin-bottom:1.5rem !important}.bsui .ml-4,.bsui .mx-4{margin-left:1.5rem !important}.bsui .m-5{margin:3rem !important}.bsui .mt-5,.bsui .my-5{margin-top:3rem !important}.bsui .mr-5,.bsui .mx-5{margin-right:3rem !important}.bsui .mb-5,.bsui .my-5{margin-bottom:3rem !important}.bsui .ml-5,.bsui .mx-5{margin-left:3rem !important}.bsui .m-6{margin:4rem !important}.bsui .mt-6,.bsui .my-6{margin-top:4rem !important}.bsui .mr-6,.bsui .mx-6{margin-right:4rem !important}.bsui .mb-6,.bsui .my-6{margin-bottom:4rem !important}.bsui .ml-6,.bsui .mx-6{margin-left:4rem !important}.bsui .m-7{margin:6rem !important}.bsui .mt-7,.bsui .my-7{margin-top:6rem !important}.bsui .mr-7,.bsui .mx-7{margin-right:6rem !important}.bsui .mb-7,.bsui .my-7{margin-bottom:6rem !important}.bsui .ml-7,.bsui .mx-7{margin-left:6rem !important}.bsui .m-8{margin:8rem !important}.bsui .mt-8,.bsui .my-8{margin-top:8rem !important}.bsui .mr-8,.bsui .mx-8{margin-right:8rem !important}.bsui .mb-8,.bsui .my-8{margin-bottom:8rem !important}.bsui .ml-8,.bsui .mx-8{margin-left:8rem !important}.bsui .m-9{margin:10rem !important}.bsui .mt-9,.bsui .my-9{margin-top:10rem !important}.bsui .mr-9,.bsui .mx-9{margin-right:10rem !important}.bsui .mb-9,.bsui .my-9{margin-bottom:10rem !important}.bsui .ml-9,.bsui .mx-9{margin-left:10rem !important}.bsui .m-10{margin:12rem !important}.bsui .mt-10,.bsui .my-10{margin-top:12rem !important}.bsui .mr-10,.bsui .mx-10{margin-right:12rem !important}.bsui .mb-10,.bsui .my-10{margin-bottom:12rem !important}.bsui .ml-10,.bsui .mx-10{margin-left:12rem !important}.bsui .m-11{margin:14rem !important}.bsui .mt-11,.bsui .my-11{margin-top:14rem !important}.bsui .mr-11,.bsui .mx-11{margin-right:14rem !important}.bsui .mb-11,.bsui .my-11{margin-bottom:14rem !important}.bsui .ml-11,.bsui .mx-11{margin-left:14rem !important}.bsui .m-12{margin:16rem !important}.bsui .mt-12,.bsui .my-12{margin-top:16rem !important}.bsui .mr-12,.bsui .mx-12{margin-right:16rem !important}.bsui .mb-12,.bsui .my-12{margin-bottom:16rem !important}.bsui .ml-12,.bsui .mx-12{margin-left:16rem !important}.bsui .p-0{padding:0 !important}.bsui .pt-0,.bsui .py-0{padding-top:0 !important}.bsui .pr-0,.bsui .px-0{padding-right:0 !important}.bsui .pb-0,.bsui .py-0{padding-bottom:0 !important}.bsui .pl-0,.bsui .px-0{padding-left:0 !important}.bsui .p-1{padding:.25rem !important}.bsui .pt-1,.bsui .py-1{padding-top:.25rem !important}.bsui .pr-1,.bsui .px-1{padding-right:.25rem !important}.bsui .pb-1,.bsui .py-1{padding-bottom:.25rem !important}.bsui .pl-1,.bsui .px-1{padding-left:.25rem !important}.bsui .p-2{padding:.5rem !important}.bsui .pt-2,.bsui .py-2{padding-top:.5rem !important}.bsui .pr-2,.bsui .px-2{padding-right:.5rem !important}.bsui .pb-2,.bsui .py-2{padding-bottom:.5rem !important}.bsui .pl-2,.bsui .px-2{padding-left:.5rem !important}.bsui .p-3{padding:1rem !important}.bsui .pt-3,.bsui .py-3{padding-top:1rem !important}.bsui .pr-3,.bsui .px-3{padding-right:1rem !important}.bsui .pb-3,.bsui .py-3{padding-bottom:1rem !important}.bsui .pl-3,.bsui .px-3{padding-left:1rem !important}.bsui .p-4{padding:1.5rem !important}.bsui .pt-4,.bsui .py-4{padding-top:1.5rem !important}.bsui .pr-4,.bsui .px-4{padding-right:1.5rem !important}.bsui .pb-4,.bsui .py-4{padding-bottom:1.5rem !important}.bsui .pl-4,.bsui .px-4{padding-left:1.5rem !important}.bsui .p-5{padding:3rem !important}.bsui .pt-5,.bsui .py-5{padding-top:3rem !important}.bsui .pr-5,.bsui .px-5{padding-right:3rem !important}.bsui .pb-5,.bsui .py-5{padding-bottom:3rem !important}.bsui .pl-5,.bsui .px-5{padding-left:3rem !important}.bsui .p-6{padding:4rem !important}.bsui .pt-6,.bsui .py-6{padding-top:4rem !important}.bsui .pr-6,.bsui .px-6{padding-right:4rem !important}.bsui .pb-6,.bsui .py-6{padding-bottom:4rem !important}.bsui .pl-6,.bsui .px-6{padding-left:4rem !important}.bsui .p-7{padding:6rem !important}.bsui .pt-7,.bsui .py-7{padding-top:6rem !important}.bsui .pr-7,.bsui .px-7{padding-right:6rem !important}.bsui .pb-7,.bsui .py-7{padding-bottom:6rem !important}.bsui .pl-7,.bsui .px-7{padding-left:6rem !important}.bsui .p-8{padding:8rem !important}.bsui .pt-8,.bsui .py-8{padding-top:8rem !important}.bsui .pr-8,.bsui .px-8{padding-right:8rem !important}.bsui .pb-8,.bsui .py-8{padding-bottom:8rem !important}.bsui .pl-8,.bsui .px-8{padding-left:8rem !important}.bsui .p-9{padding:10rem !important}.bsui .pt-9,.bsui .py-9{padding-top:10rem !important}.bsui .pr-9,.bsui .px-9{padding-right:10rem !important}.bsui .pb-9,.bsui .py-9{padding-bottom:10rem !important}.bsui .pl-9,.bsui .px-9{padding-left:10rem !important}.bsui .p-10{padding:12rem !important}.bsui .pt-10,.bsui .py-10{padding-top:12rem !important}.bsui .pr-10,.bsui .px-10{padding-right:12rem !important}.bsui .pb-10,.bsui .py-10{padding-bottom:12rem !important}.bsui .pl-10,.bsui .px-10{padding-left:12rem !important}.bsui .p-11{padding:14rem !important}.bsui .pt-11,.bsui .py-11{padding-top:14rem !important}.bsui .pr-11,.bsui .px-11{padding-right:14rem !important}.bsui .pb-11,.bsui .py-11{padding-bottom:14rem !important}.bsui .pl-11,.bsui .px-11{padding-left:14rem !important}.bsui .p-12{padding:16rem !important}.bsui .pt-12,.bsui .py-12{padding-top:16rem !important}.bsui .pr-12,.bsui .px-12{padding-right:16rem !important}.bsui .pb-12,.bsui .py-12{padding-bottom:16rem !important}.bsui .pl-12,.bsui .px-12{padding-left:16rem !important}.bsui .m-n1{margin:-.25rem !important}.bsui .mt-n1,.bsui .my-n1{margin-top:-.25rem !important}.bsui .mr-n1,.bsui .mx-n1{margin-right:-.25rem !important}.bsui .mb-n1,.bsui .my-n1{margin-bottom:-.25rem !important}.bsui .ml-n1,.bsui .mx-n1{margin-left:-.25rem !important}.bsui .m-n2{margin:-.5rem !important}.bsui .mt-n2,.bsui .my-n2{margin-top:-.5rem !important}.bsui .mr-n2,.bsui .mx-n2{margin-right:-.5rem !important}.bsui .mb-n2,.bsui .my-n2{margin-bottom:-.5rem !important}.bsui .ml-n2,.bsui .mx-n2{margin-left:-.5rem !important}.bsui .m-n3{margin:-1rem !important}.bsui .mt-n3,.bsui .my-n3{margin-top:-1rem !important}.bsui .mr-n3,.bsui .mx-n3{margin-right:-1rem !important}.bsui .mb-n3,.bsui .my-n3{margin-bottom:-1rem !important}.bsui .ml-n3,.bsui .mx-n3{margin-left:-1rem !important}.bsui .m-n4{margin:-1.5rem !important}.bsui .mt-n4,.bsui .my-n4{margin-top:-1.5rem !important}.bsui .mr-n4,.bsui .mx-n4{margin-right:-1.5rem !important}.bsui .mb-n4,.bsui .my-n4{margin-bottom:-1.5rem !important}.bsui .ml-n4,.bsui .mx-n4{margin-left:-1.5rem !important}.bsui .m-n5{margin:-3rem !important}.bsui .mt-n5,.bsui .my-n5{margin-top:-3rem !important}.bsui .mr-n5,.bsui .mx-n5{margin-right:-3rem !important}.bsui .mb-n5,.bsui .my-n5{margin-bottom:-3rem !important}.bsui .ml-n5,.bsui .mx-n5{margin-left:-3rem !important}.bsui .m-n6{margin:-4rem !important}.bsui .mt-n6,.bsui .my-n6{margin-top:-4rem !important}.bsui .mr-n6,.bsui .mx-n6{margin-right:-4rem !important}.bsui .mb-n6,.bsui .my-n6{margin-bottom:-4rem !important}.bsui .ml-n6,.bsui .mx-n6{margin-left:-4rem !important}.bsui .m-n7{margin:-6rem !important}.bsui .mt-n7,.bsui .my-n7{margin-top:-6rem !important}.bsui .mr-n7,.bsui .mx-n7{margin-right:-6rem !important}.bsui .mb-n7,.bsui .my-n7{margin-bottom:-6rem !important}.bsui .ml-n7,.bsui .mx-n7{margin-left:-6rem !important}.bsui .m-n8{margin:-8rem !important}.bsui .mt-n8,.bsui .my-n8{margin-top:-8rem !important}.bsui .mr-n8,.bsui .mx-n8{margin-right:-8rem !important}.bsui .mb-n8,.bsui .my-n8{margin-bottom:-8rem !important}.bsui .ml-n8,.bsui .mx-n8{margin-left:-8rem !important}.bsui .m-n9{margin:-10rem !important}.bsui .mt-n9,.bsui .my-n9{margin-top:-10rem !important}.bsui .mr-n9,.bsui .mx-n9{margin-right:-10rem !important}.bsui .mb-n9,.bsui .my-n9{margin-bottom:-10rem !important}.bsui .ml-n9,.bsui .mx-n9{margin-left:-10rem !important}.bsui .m-n10{margin:-12rem !important}.bsui .mt-n10,.bsui .my-n10{margin-top:-12rem !important}.bsui .mr-n10,.bsui .mx-n10{margin-right:-12rem !important}.bsui .mb-n10,.bsui .my-n10{margin-bottom:-12rem !important}.bsui .ml-n10,.bsui .mx-n10{margin-left:-12rem !important}.bsui .m-n11{margin:-14rem !important}.bsui .mt-n11,.bsui .my-n11{margin-top:-14rem !important}.bsui .mr-n11,.bsui .mx-n11{margin-right:-14rem !important}.bsui .mb-n11,.bsui .my-n11{margin-bottom:-14rem !important}.bsui .ml-n11,.bsui .mx-n11{margin-left:-14rem !important}.bsui .m-n12{margin:-16rem !important}.bsui .mt-n12,.bsui .my-n12{margin-top:-16rem !important}.bsui .mr-n12,.bsui .mx-n12{margin-right:-16rem !important}.bsui .mb-n12,.bsui .my-n12{margin-bottom:-16rem !important}.bsui .ml-n12,.bsui .mx-n12{margin-left:-16rem !important}.bsui .m-auto{margin:auto !important}.bsui .mt-auto,.bsui .my-auto{margin-top:auto !important}.bsui .mr-auto,.bsui .mx-auto{margin-right:auto !important}.bsui .mb-auto,.bsui .my-auto{margin-bottom:auto !important}.bsui .ml-auto,.bsui .mx-auto{margin-left:auto !important}@media (min-width: 576px){.bsui .m-sm-0{margin:0 !important}.bsui .mt-sm-0,.bsui .my-sm-0{margin-top:0 !important}.bsui .mr-sm-0,.bsui .mx-sm-0{margin-right:0 !important}.bsui .mb-sm-0,.bsui .my-sm-0{margin-bottom:0 !important}.bsui .ml-sm-0,.bsui .mx-sm-0{margin-left:0 !important}.bsui .m-sm-1{margin:.25rem !important}.bsui .mt-sm-1,.bsui .my-sm-1{margin-top:.25rem !important}.bsui .mr-sm-1,.bsui .mx-sm-1{margin-right:.25rem !important}.bsui .mb-sm-1,.bsui .my-sm-1{margin-bottom:.25rem !important}.bsui .ml-sm-1,.bsui .mx-sm-1{margin-left:.25rem !important}.bsui .m-sm-2{margin:.5rem !important}.bsui .mt-sm-2,.bsui .my-sm-2{margin-top:.5rem !important}.bsui .mr-sm-2,.bsui .mx-sm-2{margin-right:.5rem !important}.bsui .mb-sm-2,.bsui .my-sm-2{margin-bottom:.5rem !important}.bsui .ml-sm-2,.bsui .mx-sm-2{margin-left:.5rem !important}.bsui .m-sm-3{margin:1rem !important}.bsui .mt-sm-3,.bsui .my-sm-3{margin-top:1rem !important}.bsui .mr-sm-3,.bsui .mx-sm-3{margin-right:1rem !important}.bsui .mb-sm-3,.bsui .my-sm-3{margin-bottom:1rem !important}.bsui .ml-sm-3,.bsui .mx-sm-3{margin-left:1rem !important}.bsui .m-sm-4{margin:1.5rem !important}.bsui .mt-sm-4,.bsui .my-sm-4{margin-top:1.5rem !important}.bsui .mr-sm-4,.bsui .mx-sm-4{margin-right:1.5rem !important}.bsui .mb-sm-4,.bsui .my-sm-4{margin-bottom:1.5rem !important}.bsui .ml-sm-4,.bsui .mx-sm-4{margin-left:1.5rem !important}.bsui .m-sm-5{margin:3rem !important}.bsui .mt-sm-5,.bsui .my-sm-5{margin-top:3rem !important}.bsui .mr-sm-5,.bsui .mx-sm-5{margin-right:3rem !important}.bsui .mb-sm-5,.bsui .my-sm-5{margin-bottom:3rem !important}.bsui .ml-sm-5,.bsui .mx-sm-5{margin-left:3rem !important}.bsui .m-sm-6{margin:4rem !important}.bsui .mt-sm-6,.bsui .my-sm-6{margin-top:4rem !important}.bsui .mr-sm-6,.bsui .mx-sm-6{margin-right:4rem !important}.bsui .mb-sm-6,.bsui .my-sm-6{margin-bottom:4rem !important}.bsui .ml-sm-6,.bsui .mx-sm-6{margin-left:4rem !important}.bsui .m-sm-7{margin:6rem !important}.bsui .mt-sm-7,.bsui .my-sm-7{margin-top:6rem !important}.bsui .mr-sm-7,.bsui .mx-sm-7{margin-right:6rem !important}.bsui .mb-sm-7,.bsui .my-sm-7{margin-bottom:6rem !important}.bsui .ml-sm-7,.bsui .mx-sm-7{margin-left:6rem !important}.bsui .m-sm-8{margin:8rem !important}.bsui .mt-sm-8,.bsui .my-sm-8{margin-top:8rem !important}.bsui .mr-sm-8,.bsui .mx-sm-8{margin-right:8rem !important}.bsui .mb-sm-8,.bsui .my-sm-8{margin-bottom:8rem !important}.bsui .ml-sm-8,.bsui .mx-sm-8{margin-left:8rem !important}.bsui .m-sm-9{margin:10rem !important}.bsui .mt-sm-9,.bsui .my-sm-9{margin-top:10rem !important}.bsui .mr-sm-9,.bsui .mx-sm-9{margin-right:10rem !important}.bsui .mb-sm-9,.bsui .my-sm-9{margin-bottom:10rem !important}.bsui .ml-sm-9,.bsui .mx-sm-9{margin-left:10rem !important}.bsui .m-sm-10{margin:12rem !important}.bsui .mt-sm-10,.bsui .my-sm-10{margin-top:12rem !important}.bsui .mr-sm-10,.bsui .mx-sm-10{margin-right:12rem !important}.bsui .mb-sm-10,.bsui .my-sm-10{margin-bottom:12rem !important}.bsui .ml-sm-10,.bsui .mx-sm-10{margin-left:12rem !important}.bsui .m-sm-11{margin:14rem !important}.bsui .mt-sm-11,.bsui .my-sm-11{margin-top:14rem !important}.bsui .mr-sm-11,.bsui .mx-sm-11{margin-right:14rem !important}.bsui .mb-sm-11,.bsui .my-sm-11{margin-bottom:14rem !important}.bsui .ml-sm-11,.bsui .mx-sm-11{margin-left:14rem !important}.bsui .m-sm-12{margin:16rem !important}.bsui .mt-sm-12,.bsui .my-sm-12{margin-top:16rem !important}.bsui .mr-sm-12,.bsui .mx-sm-12{margin-right:16rem !important}.bsui .mb-sm-12,.bsui .my-sm-12{margin-bottom:16rem !important}.bsui .ml-sm-12,.bsui .mx-sm-12{margin-left:16rem !important}.bsui .p-sm-0{padding:0 !important}.bsui .pt-sm-0,.bsui .py-sm-0{padding-top:0 !important}.bsui .pr-sm-0,.bsui .px-sm-0{padding-right:0 !important}.bsui .pb-sm-0,.bsui .py-sm-0{padding-bottom:0 !important}.bsui .pl-sm-0,.bsui .px-sm-0{padding-left:0 !important}.bsui .p-sm-1{padding:.25rem !important}.bsui .pt-sm-1,.bsui .py-sm-1{padding-top:.25rem !important}.bsui .pr-sm-1,.bsui .px-sm-1{padding-right:.25rem !important}.bsui .pb-sm-1,.bsui .py-sm-1{padding-bottom:.25rem !important}.bsui .pl-sm-1,.bsui .px-sm-1{padding-left:.25rem !important}.bsui .p-sm-2{padding:.5rem !important}.bsui .pt-sm-2,.bsui .py-sm-2{padding-top:.5rem !important}.bsui .pr-sm-2,.bsui .px-sm-2{padding-right:.5rem !important}.bsui .pb-sm-2,.bsui .py-sm-2{padding-bottom:.5rem !important}.bsui .pl-sm-2,.bsui .px-sm-2{padding-left:.5rem !important}.bsui .p-sm-3{padding:1rem !important}.bsui .pt-sm-3,.bsui .py-sm-3{padding-top:1rem !important}.bsui .pr-sm-3,.bsui .px-sm-3{padding-right:1rem !important}.bsui .pb-sm-3,.bsui .py-sm-3{padding-bottom:1rem !important}.bsui .pl-sm-3,.bsui .px-sm-3{padding-left:1rem !important}.bsui .p-sm-4{padding:1.5rem !important}.bsui .pt-sm-4,.bsui .py-sm-4{padding-top:1.5rem !important}.bsui .pr-sm-4,.bsui .px-sm-4{padding-right:1.5rem !important}.bsui .pb-sm-4,.bsui .py-sm-4{padding-bottom:1.5rem !important}.bsui .pl-sm-4,.bsui .px-sm-4{padding-left:1.5rem !important}.bsui .p-sm-5{padding:3rem !important}.bsui .pt-sm-5,.bsui .py-sm-5{padding-top:3rem !important}.bsui .pr-sm-5,.bsui .px-sm-5{padding-right:3rem !important}.bsui .pb-sm-5,.bsui .py-sm-5{padding-bottom:3rem !important}.bsui .pl-sm-5,.bsui .px-sm-5{padding-left:3rem !important}.bsui .p-sm-6{padding:4rem !important}.bsui .pt-sm-6,.bsui .py-sm-6{padding-top:4rem !important}.bsui .pr-sm-6,.bsui .px-sm-6{padding-right:4rem !important}.bsui .pb-sm-6,.bsui .py-sm-6{padding-bottom:4rem !important}.bsui .pl-sm-6,.bsui .px-sm-6{padding-left:4rem !important}.bsui .p-sm-7{padding:6rem !important}.bsui .pt-sm-7,.bsui .py-sm-7{padding-top:6rem !important}.bsui .pr-sm-7,.bsui .px-sm-7{padding-right:6rem !important}.bsui .pb-sm-7,.bsui .py-sm-7{padding-bottom:6rem !important}.bsui .pl-sm-7,.bsui .px-sm-7{padding-left:6rem !important}.bsui .p-sm-8{padding:8rem !important}.bsui .pt-sm-8,.bsui .py-sm-8{padding-top:8rem !important}.bsui .pr-sm-8,.bsui .px-sm-8{padding-right:8rem !important}.bsui .pb-sm-8,.bsui .py-sm-8{padding-bottom:8rem !important}.bsui .pl-sm-8,.bsui .px-sm-8{padding-left:8rem !important}.bsui .p-sm-9{padding:10rem !important}.bsui .pt-sm-9,.bsui .py-sm-9{padding-top:10rem !important}.bsui .pr-sm-9,.bsui .px-sm-9{padding-right:10rem !important}.bsui .pb-sm-9,.bsui .py-sm-9{padding-bottom:10rem !important}.bsui .pl-sm-9,.bsui .px-sm-9{padding-left:10rem !important}.bsui .p-sm-10{padding:12rem !important}.bsui .pt-sm-10,.bsui .py-sm-10{padding-top:12rem !important}.bsui .pr-sm-10,.bsui .px-sm-10{padding-right:12rem !important}.bsui .pb-sm-10,.bsui .py-sm-10{padding-bottom:12rem !important}.bsui .pl-sm-10,.bsui .px-sm-10{padding-left:12rem !important}.bsui .p-sm-11{padding:14rem !important}.bsui .pt-sm-11,.bsui .py-sm-11{padding-top:14rem !important}.bsui .pr-sm-11,.bsui .px-sm-11{padding-right:14rem !important}.bsui .pb-sm-11,.bsui .py-sm-11{padding-bottom:14rem !important}.bsui .pl-sm-11,.bsui .px-sm-11{padding-left:14rem !important}.bsui .p-sm-12{padding:16rem !important}.bsui .pt-sm-12,.bsui .py-sm-12{padding-top:16rem !important}.bsui .pr-sm-12,.bsui .px-sm-12{padding-right:16rem !important}.bsui .pb-sm-12,.bsui .py-sm-12{padding-bottom:16rem !important}.bsui .pl-sm-12,.bsui .px-sm-12{padding-left:16rem !important}.bsui .m-sm-n1{margin:-.25rem !important}.bsui .mt-sm-n1,.bsui .my-sm-n1{margin-top:-.25rem !important}.bsui .mr-sm-n1,.bsui .mx-sm-n1{margin-right:-.25rem !important}.bsui .mb-sm-n1,.bsui .my-sm-n1{margin-bottom:-.25rem !important}.bsui .ml-sm-n1,.bsui .mx-sm-n1{margin-left:-.25rem !important}.bsui .m-sm-n2{margin:-.5rem !important}.bsui .mt-sm-n2,.bsui .my-sm-n2{margin-top:-.5rem !important}.bsui .mr-sm-n2,.bsui .mx-sm-n2{margin-right:-.5rem !important}.bsui .mb-sm-n2,.bsui .my-sm-n2{margin-bottom:-.5rem !important}.bsui .ml-sm-n2,.bsui .mx-sm-n2{margin-left:-.5rem !important}.bsui .m-sm-n3{margin:-1rem !important}.bsui .mt-sm-n3,.bsui .my-sm-n3{margin-top:-1rem !important}.bsui .mr-sm-n3,.bsui .mx-sm-n3{margin-right:-1rem !important}.bsui .mb-sm-n3,.bsui .my-sm-n3{margin-bottom:-1rem !important}.bsui .ml-sm-n3,.bsui .mx-sm-n3{margin-left:-1rem !important}.bsui .m-sm-n4{margin:-1.5rem !important}.bsui .mt-sm-n4,.bsui .my-sm-n4{margin-top:-1.5rem !important}.bsui .mr-sm-n4,.bsui .mx-sm-n4{margin-right:-1.5rem !important}.bsui .mb-sm-n4,.bsui .my-sm-n4{margin-bottom:-1.5rem !important}.bsui .ml-sm-n4,.bsui .mx-sm-n4{margin-left:-1.5rem !important}.bsui .m-sm-n5{margin:-3rem !important}.bsui .mt-sm-n5,.bsui .my-sm-n5{margin-top:-3rem !important}.bsui .mr-sm-n5,.bsui .mx-sm-n5{margin-right:-3rem !important}.bsui .mb-sm-n5,.bsui .my-sm-n5{margin-bottom:-3rem !important}.bsui .ml-sm-n5,.bsui .mx-sm-n5{margin-left:-3rem !important}.bsui .m-sm-n6{margin:-4rem !important}.bsui .mt-sm-n6,.bsui .my-sm-n6{margin-top:-4rem !important}.bsui .mr-sm-n6,.bsui .mx-sm-n6{margin-right:-4rem !important}.bsui .mb-sm-n6,.bsui .my-sm-n6{margin-bottom:-4rem !important}.bsui .ml-sm-n6,.bsui .mx-sm-n6{margin-left:-4rem !important}.bsui .m-sm-n7{margin:-6rem !important}.bsui .mt-sm-n7,.bsui .my-sm-n7{margin-top:-6rem !important}.bsui .mr-sm-n7,.bsui .mx-sm-n7{margin-right:-6rem !important}.bsui .mb-sm-n7,.bsui .my-sm-n7{margin-bottom:-6rem !important}.bsui .ml-sm-n7,.bsui .mx-sm-n7{margin-left:-6rem !important}.bsui .m-sm-n8{margin:-8rem !important}.bsui .mt-sm-n8,.bsui .my-sm-n8{margin-top:-8rem !important}.bsui .mr-sm-n8,.bsui .mx-sm-n8{margin-right:-8rem !important}.bsui .mb-sm-n8,.bsui .my-sm-n8{margin-bottom:-8rem !important}.bsui .ml-sm-n8,.bsui .mx-sm-n8{margin-left:-8rem !important}.bsui .m-sm-n9{margin:-10rem !important}.bsui .mt-sm-n9,.bsui .my-sm-n9{margin-top:-10rem !important}.bsui .mr-sm-n9,.bsui .mx-sm-n9{margin-right:-10rem !important}.bsui .mb-sm-n9,.bsui .my-sm-n9{margin-bottom:-10rem !important}.bsui .ml-sm-n9,.bsui .mx-sm-n9{margin-left:-10rem !important}.bsui .m-sm-n10{margin:-12rem !important}.bsui .mt-sm-n10,.bsui .my-sm-n10{margin-top:-12rem !important}.bsui .mr-sm-n10,.bsui .mx-sm-n10{margin-right:-12rem !important}.bsui .mb-sm-n10,.bsui .my-sm-n10{margin-bottom:-12rem !important}.bsui .ml-sm-n10,.bsui .mx-sm-n10{margin-left:-12rem !important}.bsui .m-sm-n11{margin:-14rem !important}.bsui .mt-sm-n11,.bsui .my-sm-n11{margin-top:-14rem !important}.bsui .mr-sm-n11,.bsui .mx-sm-n11{margin-right:-14rem !important}.bsui .mb-sm-n11,.bsui .my-sm-n11{margin-bottom:-14rem !important}.bsui .ml-sm-n11,.bsui .mx-sm-n11{margin-left:-14rem !important}.bsui .m-sm-n12{margin:-16rem !important}.bsui .mt-sm-n12,.bsui .my-sm-n12{margin-top:-16rem !important}.bsui .mr-sm-n12,.bsui .mx-sm-n12{margin-right:-16rem !important}.bsui .mb-sm-n12,.bsui .my-sm-n12{margin-bottom:-16rem !important}.bsui .ml-sm-n12,.bsui .mx-sm-n12{margin-left:-16rem !important}.bsui .m-sm-auto{margin:auto !important}.bsui .mt-sm-auto,.bsui .my-sm-auto{margin-top:auto !important}.bsui .mr-sm-auto,.bsui .mx-sm-auto{margin-right:auto !important}.bsui .mb-sm-auto,.bsui .my-sm-auto{margin-bottom:auto !important}.bsui .ml-sm-auto,.bsui .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.bsui .m-md-0{margin:0 !important}.bsui .mt-md-0,.bsui .my-md-0{margin-top:0 !important}.bsui .mr-md-0,.bsui .mx-md-0{margin-right:0 !important}.bsui .mb-md-0,.bsui .my-md-0{margin-bottom:0 !important}.bsui .ml-md-0,.bsui .mx-md-0{margin-left:0 !important}.bsui .m-md-1{margin:.25rem !important}.bsui .mt-md-1,.bsui .my-md-1{margin-top:.25rem !important}.bsui .mr-md-1,.bsui .mx-md-1{margin-right:.25rem !important}.bsui .mb-md-1,.bsui .my-md-1{margin-bottom:.25rem !important}.bsui .ml-md-1,.bsui .mx-md-1{margin-left:.25rem !important}.bsui .m-md-2{margin:.5rem !important}.bsui .mt-md-2,.bsui .my-md-2{margin-top:.5rem !important}.bsui .mr-md-2,.bsui .mx-md-2{margin-right:.5rem !important}.bsui .mb-md-2,.bsui .my-md-2{margin-bottom:.5rem !important}.bsui .ml-md-2,.bsui .mx-md-2{margin-left:.5rem !important}.bsui .m-md-3{margin:1rem !important}.bsui .mt-md-3,.bsui .my-md-3{margin-top:1rem !important}.bsui .mr-md-3,.bsui .mx-md-3{margin-right:1rem !important}.bsui .mb-md-3,.bsui .my-md-3{margin-bottom:1rem !important}.bsui .ml-md-3,.bsui .mx-md-3{margin-left:1rem !important}.bsui .m-md-4{margin:1.5rem !important}.bsui .mt-md-4,.bsui .my-md-4{margin-top:1.5rem !important}.bsui .mr-md-4,.bsui .mx-md-4{margin-right:1.5rem !important}.bsui .mb-md-4,.bsui .my-md-4{margin-bottom:1.5rem !important}.bsui .ml-md-4,.bsui .mx-md-4{margin-left:1.5rem !important}.bsui .m-md-5{margin:3rem !important}.bsui .mt-md-5,.bsui .my-md-5{margin-top:3rem !important}.bsui .mr-md-5,.bsui .mx-md-5{margin-right:3rem !important}.bsui .mb-md-5,.bsui .my-md-5{margin-bottom:3rem !important}.bsui .ml-md-5,.bsui .mx-md-5{margin-left:3rem !important}.bsui .m-md-6{margin:4rem !important}.bsui .mt-md-6,.bsui .my-md-6{margin-top:4rem !important}.bsui .mr-md-6,.bsui .mx-md-6{margin-right:4rem !important}.bsui .mb-md-6,.bsui .my-md-6{margin-bottom:4rem !important}.bsui .ml-md-6,.bsui .mx-md-6{margin-left:4rem !important}.bsui .m-md-7{margin:6rem !important}.bsui .mt-md-7,.bsui .my-md-7{margin-top:6rem !important}.bsui .mr-md-7,.bsui .mx-md-7{margin-right:6rem !important}.bsui .mb-md-7,.bsui .my-md-7{margin-bottom:6rem !important}.bsui .ml-md-7,.bsui .mx-md-7{margin-left:6rem !important}.bsui .m-md-8{margin:8rem !important}.bsui .mt-md-8,.bsui .my-md-8{margin-top:8rem !important}.bsui .mr-md-8,.bsui .mx-md-8{margin-right:8rem !important}.bsui .mb-md-8,.bsui .my-md-8{margin-bottom:8rem !important}.bsui .ml-md-8,.bsui .mx-md-8{margin-left:8rem !important}.bsui .m-md-9{margin:10rem !important}.bsui .mt-md-9,.bsui .my-md-9{margin-top:10rem !important}.bsui .mr-md-9,.bsui .mx-md-9{margin-right:10rem !important}.bsui .mb-md-9,.bsui .my-md-9{margin-bottom:10rem !important}.bsui .ml-md-9,.bsui .mx-md-9{margin-left:10rem !important}.bsui .m-md-10{margin:12rem !important}.bsui .mt-md-10,.bsui .my-md-10{margin-top:12rem !important}.bsui .mr-md-10,.bsui .mx-md-10{margin-right:12rem !important}.bsui .mb-md-10,.bsui .my-md-10{margin-bottom:12rem !important}.bsui .ml-md-10,.bsui .mx-md-10{margin-left:12rem !important}.bsui .m-md-11{margin:14rem !important}.bsui .mt-md-11,.bsui .my-md-11{margin-top:14rem !important}.bsui .mr-md-11,.bsui .mx-md-11{margin-right:14rem !important}.bsui .mb-md-11,.bsui .my-md-11{margin-bottom:14rem !important}.bsui .ml-md-11,.bsui .mx-md-11{margin-left:14rem !important}.bsui .m-md-12{margin:16rem !important}.bsui .mt-md-12,.bsui .my-md-12{margin-top:16rem !important}.bsui .mr-md-12,.bsui .mx-md-12{margin-right:16rem !important}.bsui .mb-md-12,.bsui .my-md-12{margin-bottom:16rem !important}.bsui .ml-md-12,.bsui .mx-md-12{margin-left:16rem !important}.bsui .p-md-0{padding:0 !important}.bsui .pt-md-0,.bsui .py-md-0{padding-top:0 !important}.bsui .pr-md-0,.bsui .px-md-0{padding-right:0 !important}.bsui .pb-md-0,.bsui .py-md-0{padding-bottom:0 !important}.bsui .pl-md-0,.bsui .px-md-0{padding-left:0 !important}.bsui .p-md-1{padding:.25rem !important}.bsui .pt-md-1,.bsui .py-md-1{padding-top:.25rem !important}.bsui .pr-md-1,.bsui .px-md-1{padding-right:.25rem !important}.bsui .pb-md-1,.bsui .py-md-1{padding-bottom:.25rem !important}.bsui .pl-md-1,.bsui .px-md-1{padding-left:.25rem !important}.bsui .p-md-2{padding:.5rem !important}.bsui .pt-md-2,.bsui .py-md-2{padding-top:.5rem !important}.bsui .pr-md-2,.bsui .px-md-2{padding-right:.5rem !important}.bsui .pb-md-2,.bsui .py-md-2{padding-bottom:.5rem !important}.bsui .pl-md-2,.bsui .px-md-2{padding-left:.5rem !important}.bsui .p-md-3{padding:1rem !important}.bsui .pt-md-3,.bsui .py-md-3{padding-top:1rem !important}.bsui .pr-md-3,.bsui .px-md-3{padding-right:1rem !important}.bsui .pb-md-3,.bsui .py-md-3{padding-bottom:1rem !important}.bsui .pl-md-3,.bsui .px-md-3{padding-left:1rem !important}.bsui .p-md-4{padding:1.5rem !important}.bsui .pt-md-4,.bsui .py-md-4{padding-top:1.5rem !important}.bsui .pr-md-4,.bsui .px-md-4{padding-right:1.5rem !important}.bsui .pb-md-4,.bsui .py-md-4{padding-bottom:1.5rem !important}.bsui .pl-md-4,.bsui .px-md-4{padding-left:1.5rem !important}.bsui .p-md-5{padding:3rem !important}.bsui .pt-md-5,.bsui .py-md-5{padding-top:3rem !important}.bsui .pr-md-5,.bsui .px-md-5{padding-right:3rem !important}.bsui .pb-md-5,.bsui .py-md-5{padding-bottom:3rem !important}.bsui .pl-md-5,.bsui .px-md-5{padding-left:3rem !important}.bsui .p-md-6{padding:4rem !important}.bsui .pt-md-6,.bsui .py-md-6{padding-top:4rem !important}.bsui .pr-md-6,.bsui .px-md-6{padding-right:4rem !important}.bsui .pb-md-6,.bsui .py-md-6{padding-bottom:4rem !important}.bsui .pl-md-6,.bsui .px-md-6{padding-left:4rem !important}.bsui .p-md-7{padding:6rem !important}.bsui .pt-md-7,.bsui .py-md-7{padding-top:6rem !important}.bsui .pr-md-7,.bsui .px-md-7{padding-right:6rem !important}.bsui .pb-md-7,.bsui .py-md-7{padding-bottom:6rem !important}.bsui .pl-md-7,.bsui .px-md-7{padding-left:6rem !important}.bsui .p-md-8{padding:8rem !important}.bsui .pt-md-8,.bsui .py-md-8{padding-top:8rem !important}.bsui .pr-md-8,.bsui .px-md-8{padding-right:8rem !important}.bsui .pb-md-8,.bsui .py-md-8{padding-bottom:8rem !important}.bsui .pl-md-8,.bsui .px-md-8{padding-left:8rem !important}.bsui .p-md-9{padding:10rem !important}.bsui .pt-md-9,.bsui .py-md-9{padding-top:10rem !important}.bsui .pr-md-9,.bsui .px-md-9{padding-right:10rem !important}.bsui .pb-md-9,.bsui .py-md-9{padding-bottom:10rem !important}.bsui .pl-md-9,.bsui .px-md-9{padding-left:10rem !important}.bsui .p-md-10{padding:12rem !important}.bsui .pt-md-10,.bsui .py-md-10{padding-top:12rem !important}.bsui .pr-md-10,.bsui .px-md-10{padding-right:12rem !important}.bsui .pb-md-10,.bsui .py-md-10{padding-bottom:12rem !important}.bsui .pl-md-10,.bsui .px-md-10{padding-left:12rem !important}.bsui .p-md-11{padding:14rem !important}.bsui .pt-md-11,.bsui .py-md-11{padding-top:14rem !important}.bsui .pr-md-11,.bsui .px-md-11{padding-right:14rem !important}.bsui .pb-md-11,.bsui .py-md-11{padding-bottom:14rem !important}.bsui .pl-md-11,.bsui .px-md-11{padding-left:14rem !important}.bsui .p-md-12{padding:16rem !important}.bsui .pt-md-12,.bsui .py-md-12{padding-top:16rem !important}.bsui .pr-md-12,.bsui .px-md-12{padding-right:16rem !important}.bsui .pb-md-12,.bsui .py-md-12{padding-bottom:16rem !important}.bsui .pl-md-12,.bsui .px-md-12{padding-left:16rem !important}.bsui .m-md-n1{margin:-.25rem !important}.bsui .mt-md-n1,.bsui .my-md-n1{margin-top:-.25rem !important}.bsui .mr-md-n1,.bsui .mx-md-n1{margin-right:-.25rem !important}.bsui .mb-md-n1,.bsui .my-md-n1{margin-bottom:-.25rem !important}.bsui .ml-md-n1,.bsui .mx-md-n1{margin-left:-.25rem !important}.bsui .m-md-n2{margin:-.5rem !important}.bsui .mt-md-n2,.bsui .my-md-n2{margin-top:-.5rem !important}.bsui .mr-md-n2,.bsui .mx-md-n2{margin-right:-.5rem !important}.bsui .mb-md-n2,.bsui .my-md-n2{margin-bottom:-.5rem !important}.bsui .ml-md-n2,.bsui .mx-md-n2{margin-left:-.5rem !important}.bsui .m-md-n3{margin:-1rem !important}.bsui .mt-md-n3,.bsui .my-md-n3{margin-top:-1rem !important}.bsui .mr-md-n3,.bsui .mx-md-n3{margin-right:-1rem !important}.bsui .mb-md-n3,.bsui .my-md-n3{margin-bottom:-1rem !important}.bsui .ml-md-n3,.bsui .mx-md-n3{margin-left:-1rem !important}.bsui .m-md-n4{margin:-1.5rem !important}.bsui .mt-md-n4,.bsui .my-md-n4{margin-top:-1.5rem !important}.bsui .mr-md-n4,.bsui .mx-md-n4{margin-right:-1.5rem !important}.bsui .mb-md-n4,.bsui .my-md-n4{margin-bottom:-1.5rem !important}.bsui .ml-md-n4,.bsui .mx-md-n4{margin-left:-1.5rem !important}.bsui .m-md-n5{margin:-3rem !important}.bsui .mt-md-n5,.bsui .my-md-n5{margin-top:-3rem !important}.bsui .mr-md-n5,.bsui .mx-md-n5{margin-right:-3rem !important}.bsui .mb-md-n5,.bsui .my-md-n5{margin-bottom:-3rem !important}.bsui .ml-md-n5,.bsui .mx-md-n5{margin-left:-3rem !important}.bsui .m-md-n6{margin:-4rem !important}.bsui .mt-md-n6,.bsui .my-md-n6{margin-top:-4rem !important}.bsui .mr-md-n6,.bsui .mx-md-n6{margin-right:-4rem !important}.bsui .mb-md-n6,.bsui .my-md-n6{margin-bottom:-4rem !important}.bsui .ml-md-n6,.bsui .mx-md-n6{margin-left:-4rem !important}.bsui .m-md-n7{margin:-6rem !important}.bsui .mt-md-n7,.bsui .my-md-n7{margin-top:-6rem !important}.bsui .mr-md-n7,.bsui .mx-md-n7{margin-right:-6rem !important}.bsui .mb-md-n7,.bsui .my-md-n7{margin-bottom:-6rem !important}.bsui .ml-md-n7,.bsui .mx-md-n7{margin-left:-6rem !important}.bsui .m-md-n8{margin:-8rem !important}.bsui .mt-md-n8,.bsui .my-md-n8{margin-top:-8rem !important}.bsui .mr-md-n8,.bsui .mx-md-n8{margin-right:-8rem !important}.bsui .mb-md-n8,.bsui .my-md-n8{margin-bottom:-8rem !important}.bsui .ml-md-n8,.bsui .mx-md-n8{margin-left:-8rem !important}.bsui .m-md-n9{margin:-10rem !important}.bsui .mt-md-n9,.bsui .my-md-n9{margin-top:-10rem !important}.bsui .mr-md-n9,.bsui .mx-md-n9{margin-right:-10rem !important}.bsui .mb-md-n9,.bsui .my-md-n9{margin-bottom:-10rem !important}.bsui .ml-md-n9,.bsui .mx-md-n9{margin-left:-10rem !important}.bsui .m-md-n10{margin:-12rem !important}.bsui .mt-md-n10,.bsui .my-md-n10{margin-top:-12rem !important}.bsui .mr-md-n10,.bsui .mx-md-n10{margin-right:-12rem !important}.bsui .mb-md-n10,.bsui .my-md-n10{margin-bottom:-12rem !important}.bsui .ml-md-n10,.bsui .mx-md-n10{margin-left:-12rem !important}.bsui .m-md-n11{margin:-14rem !important}.bsui .mt-md-n11,.bsui .my-md-n11{margin-top:-14rem !important}.bsui .mr-md-n11,.bsui .mx-md-n11{margin-right:-14rem !important}.bsui .mb-md-n11,.bsui .my-md-n11{margin-bottom:-14rem !important}.bsui .ml-md-n11,.bsui .mx-md-n11{margin-left:-14rem !important}.bsui .m-md-n12{margin:-16rem !important}.bsui .mt-md-n12,.bsui .my-md-n12{margin-top:-16rem !important}.bsui .mr-md-n12,.bsui .mx-md-n12{margin-right:-16rem !important}.bsui .mb-md-n12,.bsui .my-md-n12{margin-bottom:-16rem !important}.bsui .ml-md-n12,.bsui .mx-md-n12{margin-left:-16rem !important}.bsui .m-md-auto{margin:auto !important}.bsui .mt-md-auto,.bsui .my-md-auto{margin-top:auto !important}.bsui .mr-md-auto,.bsui .mx-md-auto{margin-right:auto !important}.bsui .mb-md-auto,.bsui .my-md-auto{margin-bottom:auto !important}.bsui .ml-md-auto,.bsui .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.bsui .m-lg-0{margin:0 !important}.bsui .mt-lg-0,.bsui .my-lg-0{margin-top:0 !important}.bsui .mr-lg-0,.bsui .mx-lg-0{margin-right:0 !important}.bsui .mb-lg-0,.bsui .my-lg-0{margin-bottom:0 !important}.bsui .ml-lg-0,.bsui .mx-lg-0{margin-left:0 !important}.bsui .m-lg-1{margin:.25rem !important}.bsui .mt-lg-1,.bsui .my-lg-1{margin-top:.25rem !important}.bsui .mr-lg-1,.bsui .mx-lg-1{margin-right:.25rem !important}.bsui .mb-lg-1,.bsui .my-lg-1{margin-bottom:.25rem !important}.bsui .ml-lg-1,.bsui .mx-lg-1{margin-left:.25rem !important}.bsui .m-lg-2{margin:.5rem !important}.bsui .mt-lg-2,.bsui .my-lg-2{margin-top:.5rem !important}.bsui .mr-lg-2,.bsui .mx-lg-2{margin-right:.5rem !important}.bsui .mb-lg-2,.bsui .my-lg-2{margin-bottom:.5rem !important}.bsui .ml-lg-2,.bsui .mx-lg-2{margin-left:.5rem !important}.bsui .m-lg-3{margin:1rem !important}.bsui .mt-lg-3,.bsui .my-lg-3{margin-top:1rem !important}.bsui .mr-lg-3,.bsui .mx-lg-3{margin-right:1rem !important}.bsui .mb-lg-3,.bsui .my-lg-3{margin-bottom:1rem !important}.bsui .ml-lg-3,.bsui .mx-lg-3{margin-left:1rem !important}.bsui .m-lg-4{margin:1.5rem !important}.bsui .mt-lg-4,.bsui .my-lg-4{margin-top:1.5rem !important}.bsui .mr-lg-4,.bsui .mx-lg-4{margin-right:1.5rem !important}.bsui .mb-lg-4,.bsui .my-lg-4{margin-bottom:1.5rem !important}.bsui .ml-lg-4,.bsui .mx-lg-4{margin-left:1.5rem !important}.bsui .m-lg-5{margin:3rem !important}.bsui .mt-lg-5,.bsui .my-lg-5{margin-top:3rem !important}.bsui .mr-lg-5,.bsui .mx-lg-5{margin-right:3rem !important}.bsui .mb-lg-5,.bsui .my-lg-5{margin-bottom:3rem !important}.bsui .ml-lg-5,.bsui .mx-lg-5{margin-left:3rem !important}.bsui .m-lg-6{margin:4rem !important}.bsui .mt-lg-6,.bsui .my-lg-6{margin-top:4rem !important}.bsui .mr-lg-6,.bsui .mx-lg-6{margin-right:4rem !important}.bsui .mb-lg-6,.bsui .my-lg-6{margin-bottom:4rem !important}.bsui .ml-lg-6,.bsui .mx-lg-6{margin-left:4rem !important}.bsui .m-lg-7{margin:6rem !important}.bsui .mt-lg-7,.bsui .my-lg-7{margin-top:6rem !important}.bsui .mr-lg-7,.bsui .mx-lg-7{margin-right:6rem !important}.bsui .mb-lg-7,.bsui .my-lg-7{margin-bottom:6rem !important}.bsui .ml-lg-7,.bsui .mx-lg-7{margin-left:6rem !important}.bsui .m-lg-8{margin:8rem !important}.bsui .mt-lg-8,.bsui .my-lg-8{margin-top:8rem !important}.bsui .mr-lg-8,.bsui .mx-lg-8{margin-right:8rem !important}.bsui .mb-lg-8,.bsui .my-lg-8{margin-bottom:8rem !important}.bsui .ml-lg-8,.bsui .mx-lg-8{margin-left:8rem !important}.bsui .m-lg-9{margin:10rem !important}.bsui .mt-lg-9,.bsui .my-lg-9{margin-top:10rem !important}.bsui .mr-lg-9,.bsui .mx-lg-9{margin-right:10rem !important}.bsui .mb-lg-9,.bsui .my-lg-9{margin-bottom:10rem !important}.bsui .ml-lg-9,.bsui .mx-lg-9{margin-left:10rem !important}.bsui .m-lg-10{margin:12rem !important}.bsui .mt-lg-10,.bsui .my-lg-10{margin-top:12rem !important}.bsui .mr-lg-10,.bsui .mx-lg-10{margin-right:12rem !important}.bsui .mb-lg-10,.bsui .my-lg-10{margin-bottom:12rem !important}.bsui .ml-lg-10,.bsui .mx-lg-10{margin-left:12rem !important}.bsui .m-lg-11{margin:14rem !important}.bsui .mt-lg-11,.bsui .my-lg-11{margin-top:14rem !important}.bsui .mr-lg-11,.bsui .mx-lg-11{margin-right:14rem !important}.bsui .mb-lg-11,.bsui .my-lg-11{margin-bottom:14rem !important}.bsui .ml-lg-11,.bsui .mx-lg-11{margin-left:14rem !important}.bsui .m-lg-12{margin:16rem !important}.bsui .mt-lg-12,.bsui .my-lg-12{margin-top:16rem !important}.bsui .mr-lg-12,.bsui .mx-lg-12{margin-right:16rem !important}.bsui .mb-lg-12,.bsui .my-lg-12{margin-bottom:16rem !important}.bsui .ml-lg-12,.bsui .mx-lg-12{margin-left:16rem !important}.bsui .p-lg-0{padding:0 !important}.bsui .pt-lg-0,.bsui .py-lg-0{padding-top:0 !important}.bsui .pr-lg-0,.bsui .px-lg-0{padding-right:0 !important}.bsui .pb-lg-0,.bsui .py-lg-0{padding-bottom:0 !important}.bsui .pl-lg-0,.bsui .px-lg-0{padding-left:0 !important}.bsui .p-lg-1{padding:.25rem !important}.bsui .pt-lg-1,.bsui .py-lg-1{padding-top:.25rem !important}.bsui .pr-lg-1,.bsui .px-lg-1{padding-right:.25rem !important}.bsui .pb-lg-1,.bsui .py-lg-1{padding-bottom:.25rem !important}.bsui .pl-lg-1,.bsui .px-lg-1{padding-left:.25rem !important}.bsui .p-lg-2{padding:.5rem !important}.bsui .pt-lg-2,.bsui .py-lg-2{padding-top:.5rem !important}.bsui .pr-lg-2,.bsui .px-lg-2{padding-right:.5rem !important}.bsui .pb-lg-2,.bsui .py-lg-2{padding-bottom:.5rem !important}.bsui .pl-lg-2,.bsui .px-lg-2{padding-left:.5rem !important}.bsui .p-lg-3{padding:1rem !important}.bsui .pt-lg-3,.bsui .py-lg-3{padding-top:1rem !important}.bsui .pr-lg-3,.bsui .px-lg-3{padding-right:1rem !important}.bsui .pb-lg-3,.bsui .py-lg-3{padding-bottom:1rem !important}.bsui .pl-lg-3,.bsui .px-lg-3{padding-left:1rem !important}.bsui .p-lg-4{padding:1.5rem !important}.bsui .pt-lg-4,.bsui .py-lg-4{padding-top:1.5rem !important}.bsui .pr-lg-4,.bsui .px-lg-4{padding-right:1.5rem !important}.bsui .pb-lg-4,.bsui .py-lg-4{padding-bottom:1.5rem !important}.bsui .pl-lg-4,.bsui .px-lg-4{padding-left:1.5rem !important}.bsui .p-lg-5{padding:3rem !important}.bsui .pt-lg-5,.bsui .py-lg-5{padding-top:3rem !important}.bsui .pr-lg-5,.bsui .px-lg-5{padding-right:3rem !important}.bsui .pb-lg-5,.bsui .py-lg-5{padding-bottom:3rem !important}.bsui .pl-lg-5,.bsui .px-lg-5{padding-left:3rem !important}.bsui .p-lg-6{padding:4rem !important}.bsui .pt-lg-6,.bsui .py-lg-6{padding-top:4rem !important}.bsui .pr-lg-6,.bsui .px-lg-6{padding-right:4rem !important}.bsui .pb-lg-6,.bsui .py-lg-6{padding-bottom:4rem !important}.bsui .pl-lg-6,.bsui .px-lg-6{padding-left:4rem !important}.bsui .p-lg-7{padding:6rem !important}.bsui .pt-lg-7,.bsui .py-lg-7{padding-top:6rem !important}.bsui .pr-lg-7,.bsui .px-lg-7{padding-right:6rem !important}.bsui .pb-lg-7,.bsui .py-lg-7{padding-bottom:6rem !important}.bsui .pl-lg-7,.bsui .px-lg-7{padding-left:6rem !important}.bsui .p-lg-8{padding:8rem !important}.bsui .pt-lg-8,.bsui .py-lg-8{padding-top:8rem !important}.bsui .pr-lg-8,.bsui .px-lg-8{padding-right:8rem !important}.bsui .pb-lg-8,.bsui .py-lg-8{padding-bottom:8rem !important}.bsui .pl-lg-8,.bsui .px-lg-8{padding-left:8rem !important}.bsui .p-lg-9{padding:10rem !important}.bsui .pt-lg-9,.bsui .py-lg-9{padding-top:10rem !important}.bsui .pr-lg-9,.bsui .px-lg-9{padding-right:10rem !important}.bsui .pb-lg-9,.bsui .py-lg-9{padding-bottom:10rem !important}.bsui .pl-lg-9,.bsui .px-lg-9{padding-left:10rem !important}.bsui .p-lg-10{padding:12rem !important}.bsui .pt-lg-10,.bsui .py-lg-10{padding-top:12rem !important}.bsui .pr-lg-10,.bsui .px-lg-10{padding-right:12rem !important}.bsui .pb-lg-10,.bsui .py-lg-10{padding-bottom:12rem !important}.bsui .pl-lg-10,.bsui .px-lg-10{padding-left:12rem !important}.bsui .p-lg-11{padding:14rem !important}.bsui .pt-lg-11,.bsui .py-lg-11{padding-top:14rem !important}.bsui .pr-lg-11,.bsui .px-lg-11{padding-right:14rem !important}.bsui .pb-lg-11,.bsui .py-lg-11{padding-bottom:14rem !important}.bsui .pl-lg-11,.bsui .px-lg-11{padding-left:14rem !important}.bsui .p-lg-12{padding:16rem !important}.bsui .pt-lg-12,.bsui .py-lg-12{padding-top:16rem !important}.bsui .pr-lg-12,.bsui .px-lg-12{padding-right:16rem !important}.bsui .pb-lg-12,.bsui .py-lg-12{padding-bottom:16rem !important}.bsui .pl-lg-12,.bsui .px-lg-12{padding-left:16rem !important}.bsui .m-lg-n1{margin:-.25rem !important}.bsui .mt-lg-n1,.bsui .my-lg-n1{margin-top:-.25rem !important}.bsui .mr-lg-n1,.bsui .mx-lg-n1{margin-right:-.25rem !important}.bsui .mb-lg-n1,.bsui .my-lg-n1{margin-bottom:-.25rem !important}.bsui .ml-lg-n1,.bsui .mx-lg-n1{margin-left:-.25rem !important}.bsui .m-lg-n2{margin:-.5rem !important}.bsui .mt-lg-n2,.bsui .my-lg-n2{margin-top:-.5rem !important}.bsui .mr-lg-n2,.bsui .mx-lg-n2{margin-right:-.5rem !important}.bsui .mb-lg-n2,.bsui .my-lg-n2{margin-bottom:-.5rem !important}.bsui .ml-lg-n2,.bsui .mx-lg-n2{margin-left:-.5rem !important}.bsui .m-lg-n3{margin:-1rem !important}.bsui .mt-lg-n3,.bsui .my-lg-n3{margin-top:-1rem !important}.bsui .mr-lg-n3,.bsui .mx-lg-n3{margin-right:-1rem !important}.bsui .mb-lg-n3,.bsui .my-lg-n3{margin-bottom:-1rem !important}.bsui .ml-lg-n3,.bsui .mx-lg-n3{margin-left:-1rem !important}.bsui .m-lg-n4{margin:-1.5rem !important}.bsui .mt-lg-n4,.bsui .my-lg-n4{margin-top:-1.5rem !important}.bsui .mr-lg-n4,.bsui .mx-lg-n4{margin-right:-1.5rem !important}.bsui .mb-lg-n4,.bsui .my-lg-n4{margin-bottom:-1.5rem !important}.bsui .ml-lg-n4,.bsui .mx-lg-n4{margin-left:-1.5rem !important}.bsui .m-lg-n5{margin:-3rem !important}.bsui .mt-lg-n5,.bsui .my-lg-n5{margin-top:-3rem !important}.bsui .mr-lg-n5,.bsui .mx-lg-n5{margin-right:-3rem !important}.bsui .mb-lg-n5,.bsui .my-lg-n5{margin-bottom:-3rem !important}.bsui .ml-lg-n5,.bsui .mx-lg-n5{margin-left:-3rem !important}.bsui .m-lg-n6{margin:-4rem !important}.bsui .mt-lg-n6,.bsui .my-lg-n6{margin-top:-4rem !important}.bsui .mr-lg-n6,.bsui .mx-lg-n6{margin-right:-4rem !important}.bsui .mb-lg-n6,.bsui .my-lg-n6{margin-bottom:-4rem !important}.bsui .ml-lg-n6,.bsui .mx-lg-n6{margin-left:-4rem !important}.bsui .m-lg-n7{margin:-6rem !important}.bsui .mt-lg-n7,.bsui .my-lg-n7{margin-top:-6rem !important}.bsui .mr-lg-n7,.bsui .mx-lg-n7{margin-right:-6rem !important}.bsui .mb-lg-n7,.bsui .my-lg-n7{margin-bottom:-6rem !important}.bsui .ml-lg-n7,.bsui .mx-lg-n7{margin-left:-6rem !important}.bsui .m-lg-n8{margin:-8rem !important}.bsui .mt-lg-n8,.bsui .my-lg-n8{margin-top:-8rem !important}.bsui .mr-lg-n8,.bsui .mx-lg-n8{margin-right:-8rem !important}.bsui .mb-lg-n8,.bsui .my-lg-n8{margin-bottom:-8rem !important}.bsui .ml-lg-n8,.bsui .mx-lg-n8{margin-left:-8rem !important}.bsui .m-lg-n9{margin:-10rem !important}.bsui .mt-lg-n9,.bsui .my-lg-n9{margin-top:-10rem !important}.bsui .mr-lg-n9,.bsui .mx-lg-n9{margin-right:-10rem !important}.bsui .mb-lg-n9,.bsui .my-lg-n9{margin-bottom:-10rem !important}.bsui .ml-lg-n9,.bsui .mx-lg-n9{margin-left:-10rem !important}.bsui .m-lg-n10{margin:-12rem !important}.bsui .mt-lg-n10,.bsui .my-lg-n10{margin-top:-12rem !important}.bsui .mr-lg-n10,.bsui .mx-lg-n10{margin-right:-12rem !important}.bsui .mb-lg-n10,.bsui .my-lg-n10{margin-bottom:-12rem !important}.bsui .ml-lg-n10,.bsui .mx-lg-n10{margin-left:-12rem !important}.bsui .m-lg-n11{margin:-14rem !important}.bsui .mt-lg-n11,.bsui .my-lg-n11{margin-top:-14rem !important}.bsui .mr-lg-n11,.bsui .mx-lg-n11{margin-right:-14rem !important}.bsui .mb-lg-n11,.bsui .my-lg-n11{margin-bottom:-14rem !important}.bsui .ml-lg-n11,.bsui .mx-lg-n11{margin-left:-14rem !important}.bsui .m-lg-n12{margin:-16rem !important}.bsui .mt-lg-n12,.bsui .my-lg-n12{margin-top:-16rem !important}.bsui .mr-lg-n12,.bsui .mx-lg-n12{margin-right:-16rem !important}.bsui .mb-lg-n12,.bsui .my-lg-n12{margin-bottom:-16rem !important}.bsui .ml-lg-n12,.bsui .mx-lg-n12{margin-left:-16rem !important}.bsui .m-lg-auto{margin:auto !important}.bsui .mt-lg-auto,.bsui .my-lg-auto{margin-top:auto !important}.bsui .mr-lg-auto,.bsui .mx-lg-auto{margin-right:auto !important}.bsui .mb-lg-auto,.bsui .my-lg-auto{margin-bottom:auto !important}.bsui .ml-lg-auto,.bsui .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.bsui .m-xl-0{margin:0 !important}.bsui .mt-xl-0,.bsui .my-xl-0{margin-top:0 !important}.bsui .mr-xl-0,.bsui .mx-xl-0{margin-right:0 !important}.bsui .mb-xl-0,.bsui .my-xl-0{margin-bottom:0 !important}.bsui .ml-xl-0,.bsui .mx-xl-0{margin-left:0 !important}.bsui .m-xl-1{margin:.25rem !important}.bsui .mt-xl-1,.bsui .my-xl-1{margin-top:.25rem !important}.bsui .mr-xl-1,.bsui .mx-xl-1{margin-right:.25rem !important}.bsui .mb-xl-1,.bsui .my-xl-1{margin-bottom:.25rem !important}.bsui .ml-xl-1,.bsui .mx-xl-1{margin-left:.25rem !important}.bsui .m-xl-2{margin:.5rem !important}.bsui .mt-xl-2,.bsui .my-xl-2{margin-top:.5rem !important}.bsui .mr-xl-2,.bsui .mx-xl-2{margin-right:.5rem !important}.bsui .mb-xl-2,.bsui .my-xl-2{margin-bottom:.5rem !important}.bsui .ml-xl-2,.bsui .mx-xl-2{margin-left:.5rem !important}.bsui .m-xl-3{margin:1rem !important}.bsui .mt-xl-3,.bsui .my-xl-3{margin-top:1rem !important}.bsui .mr-xl-3,.bsui .mx-xl-3{margin-right:1rem !important}.bsui .mb-xl-3,.bsui .my-xl-3{margin-bottom:1rem !important}.bsui .ml-xl-3,.bsui .mx-xl-3{margin-left:1rem !important}.bsui .m-xl-4{margin:1.5rem !important}.bsui .mt-xl-4,.bsui .my-xl-4{margin-top:1.5rem !important}.bsui .mr-xl-4,.bsui .mx-xl-4{margin-right:1.5rem !important}.bsui .mb-xl-4,.bsui .my-xl-4{margin-bottom:1.5rem !important}.bsui .ml-xl-4,.bsui .mx-xl-4{margin-left:1.5rem !important}.bsui .m-xl-5{margin:3rem !important}.bsui .mt-xl-5,.bsui .my-xl-5{margin-top:3rem !important}.bsui .mr-xl-5,.bsui .mx-xl-5{margin-right:3rem !important}.bsui .mb-xl-5,.bsui .my-xl-5{margin-bottom:3rem !important}.bsui .ml-xl-5,.bsui .mx-xl-5{margin-left:3rem !important}.bsui .m-xl-6{margin:4rem !important}.bsui .mt-xl-6,.bsui .my-xl-6{margin-top:4rem !important}.bsui .mr-xl-6,.bsui .mx-xl-6{margin-right:4rem !important}.bsui .mb-xl-6,.bsui .my-xl-6{margin-bottom:4rem !important}.bsui .ml-xl-6,.bsui .mx-xl-6{margin-left:4rem !important}.bsui .m-xl-7{margin:6rem !important}.bsui .mt-xl-7,.bsui .my-xl-7{margin-top:6rem !important}.bsui .mr-xl-7,.bsui .mx-xl-7{margin-right:6rem !important}.bsui .mb-xl-7,.bsui .my-xl-7{margin-bottom:6rem !important}.bsui .ml-xl-7,.bsui .mx-xl-7{margin-left:6rem !important}.bsui .m-xl-8{margin:8rem !important}.bsui .mt-xl-8,.bsui .my-xl-8{margin-top:8rem !important}.bsui .mr-xl-8,.bsui .mx-xl-8{margin-right:8rem !important}.bsui .mb-xl-8,.bsui .my-xl-8{margin-bottom:8rem !important}.bsui .ml-xl-8,.bsui .mx-xl-8{margin-left:8rem !important}.bsui .m-xl-9{margin:10rem !important}.bsui .mt-xl-9,.bsui .my-xl-9{margin-top:10rem !important}.bsui .mr-xl-9,.bsui .mx-xl-9{margin-right:10rem !important}.bsui .mb-xl-9,.bsui .my-xl-9{margin-bottom:10rem !important}.bsui .ml-xl-9,.bsui .mx-xl-9{margin-left:10rem !important}.bsui .m-xl-10{margin:12rem !important}.bsui .mt-xl-10,.bsui .my-xl-10{margin-top:12rem !important}.bsui .mr-xl-10,.bsui .mx-xl-10{margin-right:12rem !important}.bsui .mb-xl-10,.bsui .my-xl-10{margin-bottom:12rem !important}.bsui .ml-xl-10,.bsui .mx-xl-10{margin-left:12rem !important}.bsui .m-xl-11{margin:14rem !important}.bsui .mt-xl-11,.bsui .my-xl-11{margin-top:14rem !important}.bsui .mr-xl-11,.bsui .mx-xl-11{margin-right:14rem !important}.bsui .mb-xl-11,.bsui .my-xl-11{margin-bottom:14rem !important}.bsui .ml-xl-11,.bsui .mx-xl-11{margin-left:14rem !important}.bsui .m-xl-12{margin:16rem !important}.bsui .mt-xl-12,.bsui .my-xl-12{margin-top:16rem !important}.bsui .mr-xl-12,.bsui .mx-xl-12{margin-right:16rem !important}.bsui .mb-xl-12,.bsui .my-xl-12{margin-bottom:16rem !important}.bsui .ml-xl-12,.bsui .mx-xl-12{margin-left:16rem !important}.bsui .p-xl-0{padding:0 !important}.bsui .pt-xl-0,.bsui .py-xl-0{padding-top:0 !important}.bsui .pr-xl-0,.bsui .px-xl-0{padding-right:0 !important}.bsui .pb-xl-0,.bsui .py-xl-0{padding-bottom:0 !important}.bsui .pl-xl-0,.bsui .px-xl-0{padding-left:0 !important}.bsui .p-xl-1{padding:.25rem !important}.bsui .pt-xl-1,.bsui .py-xl-1{padding-top:.25rem !important}.bsui .pr-xl-1,.bsui .px-xl-1{padding-right:.25rem !important}.bsui .pb-xl-1,.bsui .py-xl-1{padding-bottom:.25rem !important}.bsui .pl-xl-1,.bsui .px-xl-1{padding-left:.25rem !important}.bsui .p-xl-2{padding:.5rem !important}.bsui .pt-xl-2,.bsui .py-xl-2{padding-top:.5rem !important}.bsui .pr-xl-2,.bsui .px-xl-2{padding-right:.5rem !important}.bsui .pb-xl-2,.bsui .py-xl-2{padding-bottom:.5rem !important}.bsui .pl-xl-2,.bsui .px-xl-2{padding-left:.5rem !important}.bsui .p-xl-3{padding:1rem !important}.bsui .pt-xl-3,.bsui .py-xl-3{padding-top:1rem !important}.bsui .pr-xl-3,.bsui .px-xl-3{padding-right:1rem !important}.bsui .pb-xl-3,.bsui .py-xl-3{padding-bottom:1rem !important}.bsui .pl-xl-3,.bsui .px-xl-3{padding-left:1rem !important}.bsui .p-xl-4{padding:1.5rem !important}.bsui .pt-xl-4,.bsui .py-xl-4{padding-top:1.5rem !important}.bsui .pr-xl-4,.bsui .px-xl-4{padding-right:1.5rem !important}.bsui .pb-xl-4,.bsui .py-xl-4{padding-bottom:1.5rem !important}.bsui .pl-xl-4,.bsui .px-xl-4{padding-left:1.5rem !important}.bsui .p-xl-5{padding:3rem !important}.bsui .pt-xl-5,.bsui .py-xl-5{padding-top:3rem !important}.bsui .pr-xl-5,.bsui .px-xl-5{padding-right:3rem !important}.bsui .pb-xl-5,.bsui .py-xl-5{padding-bottom:3rem !important}.bsui .pl-xl-5,.bsui .px-xl-5{padding-left:3rem !important}.bsui .p-xl-6{padding:4rem !important}.bsui .pt-xl-6,.bsui .py-xl-6{padding-top:4rem !important}.bsui .pr-xl-6,.bsui .px-xl-6{padding-right:4rem !important}.bsui .pb-xl-6,.bsui .py-xl-6{padding-bottom:4rem !important}.bsui .pl-xl-6,.bsui .px-xl-6{padding-left:4rem !important}.bsui .p-xl-7{padding:6rem !important}.bsui .pt-xl-7,.bsui .py-xl-7{padding-top:6rem !important}.bsui .pr-xl-7,.bsui .px-xl-7{padding-right:6rem !important}.bsui .pb-xl-7,.bsui .py-xl-7{padding-bottom:6rem !important}.bsui .pl-xl-7,.bsui .px-xl-7{padding-left:6rem !important}.bsui .p-xl-8{padding:8rem !important}.bsui .pt-xl-8,.bsui .py-xl-8{padding-top:8rem !important}.bsui .pr-xl-8,.bsui .px-xl-8{padding-right:8rem !important}.bsui .pb-xl-8,.bsui .py-xl-8{padding-bottom:8rem !important}.bsui .pl-xl-8,.bsui .px-xl-8{padding-left:8rem !important}.bsui .p-xl-9{padding:10rem !important}.bsui .pt-xl-9,.bsui .py-xl-9{padding-top:10rem !important}.bsui .pr-xl-9,.bsui .px-xl-9{padding-right:10rem !important}.bsui .pb-xl-9,.bsui .py-xl-9{padding-bottom:10rem !important}.bsui .pl-xl-9,.bsui .px-xl-9{padding-left:10rem !important}.bsui .p-xl-10{padding:12rem !important}.bsui .pt-xl-10,.bsui .py-xl-10{padding-top:12rem !important}.bsui .pr-xl-10,.bsui .px-xl-10{padding-right:12rem !important}.bsui .pb-xl-10,.bsui .py-xl-10{padding-bottom:12rem !important}.bsui .pl-xl-10,.bsui .px-xl-10{padding-left:12rem !important}.bsui .p-xl-11{padding:14rem !important}.bsui .pt-xl-11,.bsui .py-xl-11{padding-top:14rem !important}.bsui .pr-xl-11,.bsui .px-xl-11{padding-right:14rem !important}.bsui .pb-xl-11,.bsui .py-xl-11{padding-bottom:14rem !important}.bsui .pl-xl-11,.bsui .px-xl-11{padding-left:14rem !important}.bsui .p-xl-12{padding:16rem !important}.bsui .pt-xl-12,.bsui .py-xl-12{padding-top:16rem !important}.bsui .pr-xl-12,.bsui .px-xl-12{padding-right:16rem !important}.bsui .pb-xl-12,.bsui .py-xl-12{padding-bottom:16rem !important}.bsui .pl-xl-12,.bsui .px-xl-12{padding-left:16rem !important}.bsui .m-xl-n1{margin:-.25rem !important}.bsui .mt-xl-n1,.bsui .my-xl-n1{margin-top:-.25rem !important}.bsui .mr-xl-n1,.bsui .mx-xl-n1{margin-right:-.25rem !important}.bsui .mb-xl-n1,.bsui .my-xl-n1{margin-bottom:-.25rem !important}.bsui .ml-xl-n1,.bsui .mx-xl-n1{margin-left:-.25rem !important}.bsui .m-xl-n2{margin:-.5rem !important}.bsui .mt-xl-n2,.bsui .my-xl-n2{margin-top:-.5rem !important}.bsui .mr-xl-n2,.bsui .mx-xl-n2{margin-right:-.5rem !important}.bsui .mb-xl-n2,.bsui .my-xl-n2{margin-bottom:-.5rem !important}.bsui .ml-xl-n2,.bsui .mx-xl-n2{margin-left:-.5rem !important}.bsui .m-xl-n3{margin:-1rem !important}.bsui .mt-xl-n3,.bsui .my-xl-n3{margin-top:-1rem !important}.bsui .mr-xl-n3,.bsui .mx-xl-n3{margin-right:-1rem !important}.bsui .mb-xl-n3,.bsui .my-xl-n3{margin-bottom:-1rem !important}.bsui .ml-xl-n3,.bsui .mx-xl-n3{margin-left:-1rem !important}.bsui .m-xl-n4{margin:-1.5rem !important}.bsui .mt-xl-n4,.bsui .my-xl-n4{margin-top:-1.5rem !important}.bsui .mr-xl-n4,.bsui .mx-xl-n4{margin-right:-1.5rem !important}.bsui .mb-xl-n4,.bsui .my-xl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xl-n4,.bsui .mx-xl-n4{margin-left:-1.5rem !important}.bsui .m-xl-n5{margin:-3rem !important}.bsui .mt-xl-n5,.bsui .my-xl-n5{margin-top:-3rem !important}.bsui .mr-xl-n5,.bsui .mx-xl-n5{margin-right:-3rem !important}.bsui .mb-xl-n5,.bsui .my-xl-n5{margin-bottom:-3rem !important}.bsui .ml-xl-n5,.bsui .mx-xl-n5{margin-left:-3rem !important}.bsui .m-xl-n6{margin:-4rem !important}.bsui .mt-xl-n6,.bsui .my-xl-n6{margin-top:-4rem !important}.bsui .mr-xl-n6,.bsui .mx-xl-n6{margin-right:-4rem !important}.bsui .mb-xl-n6,.bsui .my-xl-n6{margin-bottom:-4rem !important}.bsui .ml-xl-n6,.bsui .mx-xl-n6{margin-left:-4rem !important}.bsui .m-xl-n7{margin:-6rem !important}.bsui .mt-xl-n7,.bsui .my-xl-n7{margin-top:-6rem !important}.bsui .mr-xl-n7,.bsui .mx-xl-n7{margin-right:-6rem !important}.bsui .mb-xl-n7,.bsui .my-xl-n7{margin-bottom:-6rem !important}.bsui .ml-xl-n7,.bsui .mx-xl-n7{margin-left:-6rem !important}.bsui .m-xl-n8{margin:-8rem !important}.bsui .mt-xl-n8,.bsui .my-xl-n8{margin-top:-8rem !important}.bsui .mr-xl-n8,.bsui .mx-xl-n8{margin-right:-8rem !important}.bsui .mb-xl-n8,.bsui .my-xl-n8{margin-bottom:-8rem !important}.bsui .ml-xl-n8,.bsui .mx-xl-n8{margin-left:-8rem !important}.bsui .m-xl-n9{margin:-10rem !important}.bsui .mt-xl-n9,.bsui .my-xl-n9{margin-top:-10rem !important}.bsui .mr-xl-n9,.bsui .mx-xl-n9{margin-right:-10rem !important}.bsui .mb-xl-n9,.bsui .my-xl-n9{margin-bottom:-10rem !important}.bsui .ml-xl-n9,.bsui .mx-xl-n9{margin-left:-10rem !important}.bsui .m-xl-n10{margin:-12rem !important}.bsui .mt-xl-n10,.bsui .my-xl-n10{margin-top:-12rem !important}.bsui .mr-xl-n10,.bsui .mx-xl-n10{margin-right:-12rem !important}.bsui .mb-xl-n10,.bsui .my-xl-n10{margin-bottom:-12rem !important}.bsui .ml-xl-n10,.bsui .mx-xl-n10{margin-left:-12rem !important}.bsui .m-xl-n11{margin:-14rem !important}.bsui .mt-xl-n11,.bsui .my-xl-n11{margin-top:-14rem !important}.bsui .mr-xl-n11,.bsui .mx-xl-n11{margin-right:-14rem !important}.bsui .mb-xl-n11,.bsui .my-xl-n11{margin-bottom:-14rem !important}.bsui .ml-xl-n11,.bsui .mx-xl-n11{margin-left:-14rem !important}.bsui .m-xl-n12{margin:-16rem !important}.bsui .mt-xl-n12,.bsui .my-xl-n12{margin-top:-16rem !important}.bsui .mr-xl-n12,.bsui .mx-xl-n12{margin-right:-16rem !important}.bsui .mb-xl-n12,.bsui .my-xl-n12{margin-bottom:-16rem !important}.bsui .ml-xl-n12,.bsui .mx-xl-n12{margin-left:-16rem !important}.bsui .m-xl-auto{margin:auto !important}.bsui .mt-xl-auto,.bsui .my-xl-auto{margin-top:auto !important}.bsui .mr-xl-auto,.bsui .mx-xl-auto{margin-right:auto !important}.bsui .mb-xl-auto,.bsui .my-xl-auto{margin-bottom:auto !important}.bsui .ml-xl-auto,.bsui .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.bsui .m-xxl-0{margin:0 !important}.bsui .mt-xxl-0,.bsui .my-xxl-0{margin-top:0 !important}.bsui .mr-xxl-0,.bsui .mx-xxl-0{margin-right:0 !important}.bsui .mb-xxl-0,.bsui .my-xxl-0{margin-bottom:0 !important}.bsui .ml-xxl-0,.bsui .mx-xxl-0{margin-left:0 !important}.bsui .m-xxl-1{margin:.25rem !important}.bsui .mt-xxl-1,.bsui .my-xxl-1{margin-top:.25rem !important}.bsui .mr-xxl-1,.bsui .mx-xxl-1{margin-right:.25rem !important}.bsui .mb-xxl-1,.bsui .my-xxl-1{margin-bottom:.25rem !important}.bsui .ml-xxl-1,.bsui .mx-xxl-1{margin-left:.25rem !important}.bsui .m-xxl-2{margin:.5rem !important}.bsui .mt-xxl-2,.bsui .my-xxl-2{margin-top:.5rem !important}.bsui .mr-xxl-2,.bsui .mx-xxl-2{margin-right:.5rem !important}.bsui .mb-xxl-2,.bsui .my-xxl-2{margin-bottom:.5rem !important}.bsui .ml-xxl-2,.bsui .mx-xxl-2{margin-left:.5rem !important}.bsui .m-xxl-3{margin:1rem !important}.bsui .mt-xxl-3,.bsui .my-xxl-3{margin-top:1rem !important}.bsui .mr-xxl-3,.bsui .mx-xxl-3{margin-right:1rem !important}.bsui .mb-xxl-3,.bsui .my-xxl-3{margin-bottom:1rem !important}.bsui .ml-xxl-3,.bsui .mx-xxl-3{margin-left:1rem !important}.bsui .m-xxl-4{margin:1.5rem !important}.bsui .mt-xxl-4,.bsui .my-xxl-4{margin-top:1.5rem !important}.bsui .mr-xxl-4,.bsui .mx-xxl-4{margin-right:1.5rem !important}.bsui .mb-xxl-4,.bsui .my-xxl-4{margin-bottom:1.5rem !important}.bsui .ml-xxl-4,.bsui .mx-xxl-4{margin-left:1.5rem !important}.bsui .m-xxl-5{margin:3rem !important}.bsui .mt-xxl-5,.bsui .my-xxl-5{margin-top:3rem !important}.bsui .mr-xxl-5,.bsui .mx-xxl-5{margin-right:3rem !important}.bsui .mb-xxl-5,.bsui .my-xxl-5{margin-bottom:3rem !important}.bsui .ml-xxl-5,.bsui .mx-xxl-5{margin-left:3rem !important}.bsui .m-xxl-6{margin:4rem !important}.bsui .mt-xxl-6,.bsui .my-xxl-6{margin-top:4rem !important}.bsui .mr-xxl-6,.bsui .mx-xxl-6{margin-right:4rem !important}.bsui .mb-xxl-6,.bsui .my-xxl-6{margin-bottom:4rem !important}.bsui .ml-xxl-6,.bsui .mx-xxl-6{margin-left:4rem !important}.bsui .m-xxl-7{margin:6rem !important}.bsui .mt-xxl-7,.bsui .my-xxl-7{margin-top:6rem !important}.bsui .mr-xxl-7,.bsui .mx-xxl-7{margin-right:6rem !important}.bsui .mb-xxl-7,.bsui .my-xxl-7{margin-bottom:6rem !important}.bsui .ml-xxl-7,.bsui .mx-xxl-7{margin-left:6rem !important}.bsui .m-xxl-8{margin:8rem !important}.bsui .mt-xxl-8,.bsui .my-xxl-8{margin-top:8rem !important}.bsui .mr-xxl-8,.bsui .mx-xxl-8{margin-right:8rem !important}.bsui .mb-xxl-8,.bsui .my-xxl-8{margin-bottom:8rem !important}.bsui .ml-xxl-8,.bsui .mx-xxl-8{margin-left:8rem !important}.bsui .m-xxl-9{margin:10rem !important}.bsui .mt-xxl-9,.bsui .my-xxl-9{margin-top:10rem !important}.bsui .mr-xxl-9,.bsui .mx-xxl-9{margin-right:10rem !important}.bsui .mb-xxl-9,.bsui .my-xxl-9{margin-bottom:10rem !important}.bsui .ml-xxl-9,.bsui .mx-xxl-9{margin-left:10rem !important}.bsui .m-xxl-10{margin:12rem !important}.bsui .mt-xxl-10,.bsui .my-xxl-10{margin-top:12rem !important}.bsui .mr-xxl-10,.bsui .mx-xxl-10{margin-right:12rem !important}.bsui .mb-xxl-10,.bsui .my-xxl-10{margin-bottom:12rem !important}.bsui .ml-xxl-10,.bsui .mx-xxl-10{margin-left:12rem !important}.bsui .m-xxl-11{margin:14rem !important}.bsui .mt-xxl-11,.bsui .my-xxl-11{margin-top:14rem !important}.bsui .mr-xxl-11,.bsui .mx-xxl-11{margin-right:14rem !important}.bsui .mb-xxl-11,.bsui .my-xxl-11{margin-bottom:14rem !important}.bsui .ml-xxl-11,.bsui .mx-xxl-11{margin-left:14rem !important}.bsui .m-xxl-12{margin:16rem !important}.bsui .mt-xxl-12,.bsui .my-xxl-12{margin-top:16rem !important}.bsui .mr-xxl-12,.bsui .mx-xxl-12{margin-right:16rem !important}.bsui .mb-xxl-12,.bsui .my-xxl-12{margin-bottom:16rem !important}.bsui .ml-xxl-12,.bsui .mx-xxl-12{margin-left:16rem !important}.bsui .p-xxl-0{padding:0 !important}.bsui .pt-xxl-0,.bsui .py-xxl-0{padding-top:0 !important}.bsui .pr-xxl-0,.bsui .px-xxl-0{padding-right:0 !important}.bsui .pb-xxl-0,.bsui .py-xxl-0{padding-bottom:0 !important}.bsui .pl-xxl-0,.bsui .px-xxl-0{padding-left:0 !important}.bsui .p-xxl-1{padding:.25rem !important}.bsui .pt-xxl-1,.bsui .py-xxl-1{padding-top:.25rem !important}.bsui .pr-xxl-1,.bsui .px-xxl-1{padding-right:.25rem !important}.bsui .pb-xxl-1,.bsui .py-xxl-1{padding-bottom:.25rem !important}.bsui .pl-xxl-1,.bsui .px-xxl-1{padding-left:.25rem !important}.bsui .p-xxl-2{padding:.5rem !important}.bsui .pt-xxl-2,.bsui .py-xxl-2{padding-top:.5rem !important}.bsui .pr-xxl-2,.bsui .px-xxl-2{padding-right:.5rem !important}.bsui .pb-xxl-2,.bsui .py-xxl-2{padding-bottom:.5rem !important}.bsui .pl-xxl-2,.bsui .px-xxl-2{padding-left:.5rem !important}.bsui .p-xxl-3{padding:1rem !important}.bsui .pt-xxl-3,.bsui .py-xxl-3{padding-top:1rem !important}.bsui .pr-xxl-3,.bsui .px-xxl-3{padding-right:1rem !important}.bsui .pb-xxl-3,.bsui .py-xxl-3{padding-bottom:1rem !important}.bsui .pl-xxl-3,.bsui .px-xxl-3{padding-left:1rem !important}.bsui .p-xxl-4{padding:1.5rem !important}.bsui .pt-xxl-4,.bsui .py-xxl-4{padding-top:1.5rem !important}.bsui .pr-xxl-4,.bsui .px-xxl-4{padding-right:1.5rem !important}.bsui .pb-xxl-4,.bsui .py-xxl-4{padding-bottom:1.5rem !important}.bsui .pl-xxl-4,.bsui .px-xxl-4{padding-left:1.5rem !important}.bsui .p-xxl-5{padding:3rem !important}.bsui .pt-xxl-5,.bsui .py-xxl-5{padding-top:3rem !important}.bsui .pr-xxl-5,.bsui .px-xxl-5{padding-right:3rem !important}.bsui .pb-xxl-5,.bsui .py-xxl-5{padding-bottom:3rem !important}.bsui .pl-xxl-5,.bsui .px-xxl-5{padding-left:3rem !important}.bsui .p-xxl-6{padding:4rem !important}.bsui .pt-xxl-6,.bsui .py-xxl-6{padding-top:4rem !important}.bsui .pr-xxl-6,.bsui .px-xxl-6{padding-right:4rem !important}.bsui .pb-xxl-6,.bsui .py-xxl-6{padding-bottom:4rem !important}.bsui .pl-xxl-6,.bsui .px-xxl-6{padding-left:4rem !important}.bsui .p-xxl-7{padding:6rem !important}.bsui .pt-xxl-7,.bsui .py-xxl-7{padding-top:6rem !important}.bsui .pr-xxl-7,.bsui .px-xxl-7{padding-right:6rem !important}.bsui .pb-xxl-7,.bsui .py-xxl-7{padding-bottom:6rem !important}.bsui .pl-xxl-7,.bsui .px-xxl-7{padding-left:6rem !important}.bsui .p-xxl-8{padding:8rem !important}.bsui .pt-xxl-8,.bsui .py-xxl-8{padding-top:8rem !important}.bsui .pr-xxl-8,.bsui .px-xxl-8{padding-right:8rem !important}.bsui .pb-xxl-8,.bsui .py-xxl-8{padding-bottom:8rem !important}.bsui .pl-xxl-8,.bsui .px-xxl-8{padding-left:8rem !important}.bsui .p-xxl-9{padding:10rem !important}.bsui .pt-xxl-9,.bsui .py-xxl-9{padding-top:10rem !important}.bsui .pr-xxl-9,.bsui .px-xxl-9{padding-right:10rem !important}.bsui .pb-xxl-9,.bsui .py-xxl-9{padding-bottom:10rem !important}.bsui .pl-xxl-9,.bsui .px-xxl-9{padding-left:10rem !important}.bsui .p-xxl-10{padding:12rem !important}.bsui .pt-xxl-10,.bsui .py-xxl-10{padding-top:12rem !important}.bsui .pr-xxl-10,.bsui .px-xxl-10{padding-right:12rem !important}.bsui .pb-xxl-10,.bsui .py-xxl-10{padding-bottom:12rem !important}.bsui .pl-xxl-10,.bsui .px-xxl-10{padding-left:12rem !important}.bsui .p-xxl-11{padding:14rem !important}.bsui .pt-xxl-11,.bsui .py-xxl-11{padding-top:14rem !important}.bsui .pr-xxl-11,.bsui .px-xxl-11{padding-right:14rem !important}.bsui .pb-xxl-11,.bsui .py-xxl-11{padding-bottom:14rem !important}.bsui .pl-xxl-11,.bsui .px-xxl-11{padding-left:14rem !important}.bsui .p-xxl-12{padding:16rem !important}.bsui .pt-xxl-12,.bsui .py-xxl-12{padding-top:16rem !important}.bsui .pr-xxl-12,.bsui .px-xxl-12{padding-right:16rem !important}.bsui .pb-xxl-12,.bsui .py-xxl-12{padding-bottom:16rem !important}.bsui .pl-xxl-12,.bsui .px-xxl-12{padding-left:16rem !important}.bsui .m-xxl-n1{margin:-.25rem !important}.bsui .mt-xxl-n1,.bsui .my-xxl-n1{margin-top:-.25rem !important}.bsui .mr-xxl-n1,.bsui .mx-xxl-n1{margin-right:-.25rem !important}.bsui .mb-xxl-n1,.bsui .my-xxl-n1{margin-bottom:-.25rem !important}.bsui .ml-xxl-n1,.bsui .mx-xxl-n1{margin-left:-.25rem !important}.bsui .m-xxl-n2{margin:-.5rem !important}.bsui .mt-xxl-n2,.bsui .my-xxl-n2{margin-top:-.5rem !important}.bsui .mr-xxl-n2,.bsui .mx-xxl-n2{margin-right:-.5rem !important}.bsui .mb-xxl-n2,.bsui .my-xxl-n2{margin-bottom:-.5rem !important}.bsui .ml-xxl-n2,.bsui .mx-xxl-n2{margin-left:-.5rem !important}.bsui .m-xxl-n3{margin:-1rem !important}.bsui .mt-xxl-n3,.bsui .my-xxl-n3{margin-top:-1rem !important}.bsui .mr-xxl-n3,.bsui .mx-xxl-n3{margin-right:-1rem !important}.bsui .mb-xxl-n3,.bsui .my-xxl-n3{margin-bottom:-1rem !important}.bsui .ml-xxl-n3,.bsui .mx-xxl-n3{margin-left:-1rem !important}.bsui .m-xxl-n4{margin:-1.5rem !important}.bsui .mt-xxl-n4,.bsui .my-xxl-n4{margin-top:-1.5rem !important}.bsui .mr-xxl-n4,.bsui .mx-xxl-n4{margin-right:-1.5rem !important}.bsui .mb-xxl-n4,.bsui .my-xxl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xxl-n4,.bsui .mx-xxl-n4{margin-left:-1.5rem !important}.bsui .m-xxl-n5{margin:-3rem !important}.bsui .mt-xxl-n5,.bsui .my-xxl-n5{margin-top:-3rem !important}.bsui .mr-xxl-n5,.bsui .mx-xxl-n5{margin-right:-3rem !important}.bsui .mb-xxl-n5,.bsui .my-xxl-n5{margin-bottom:-3rem !important}.bsui .ml-xxl-n5,.bsui .mx-xxl-n5{margin-left:-3rem !important}.bsui .m-xxl-n6{margin:-4rem !important}.bsui .mt-xxl-n6,.bsui .my-xxl-n6{margin-top:-4rem !important}.bsui .mr-xxl-n6,.bsui .mx-xxl-n6{margin-right:-4rem !important}.bsui .mb-xxl-n6,.bsui .my-xxl-n6{margin-bottom:-4rem !important}.bsui .ml-xxl-n6,.bsui .mx-xxl-n6{margin-left:-4rem !important}.bsui .m-xxl-n7{margin:-6rem !important}.bsui .mt-xxl-n7,.bsui .my-xxl-n7{margin-top:-6rem !important}.bsui .mr-xxl-n7,.bsui .mx-xxl-n7{margin-right:-6rem !important}.bsui .mb-xxl-n7,.bsui .my-xxl-n7{margin-bottom:-6rem !important}.bsui .ml-xxl-n7,.bsui .mx-xxl-n7{margin-left:-6rem !important}.bsui .m-xxl-n8{margin:-8rem !important}.bsui .mt-xxl-n8,.bsui .my-xxl-n8{margin-top:-8rem !important}.bsui .mr-xxl-n8,.bsui .mx-xxl-n8{margin-right:-8rem !important}.bsui .mb-xxl-n8,.bsui .my-xxl-n8{margin-bottom:-8rem !important}.bsui .ml-xxl-n8,.bsui .mx-xxl-n8{margin-left:-8rem !important}.bsui .m-xxl-n9{margin:-10rem !important}.bsui .mt-xxl-n9,.bsui .my-xxl-n9{margin-top:-10rem !important}.bsui .mr-xxl-n9,.bsui .mx-xxl-n9{margin-right:-10rem !important}.bsui .mb-xxl-n9,.bsui .my-xxl-n9{margin-bottom:-10rem !important}.bsui .ml-xxl-n9,.bsui .mx-xxl-n9{margin-left:-10rem !important}.bsui .m-xxl-n10{margin:-12rem !important}.bsui .mt-xxl-n10,.bsui .my-xxl-n10{margin-top:-12rem !important}.bsui .mr-xxl-n10,.bsui .mx-xxl-n10{margin-right:-12rem !important}.bsui .mb-xxl-n10,.bsui .my-xxl-n10{margin-bottom:-12rem !important}.bsui .ml-xxl-n10,.bsui .mx-xxl-n10{margin-left:-12rem !important}.bsui .m-xxl-n11{margin:-14rem !important}.bsui .mt-xxl-n11,.bsui .my-xxl-n11{margin-top:-14rem !important}.bsui .mr-xxl-n11,.bsui .mx-xxl-n11{margin-right:-14rem !important}.bsui .mb-xxl-n11,.bsui .my-xxl-n11{margin-bottom:-14rem !important}.bsui .ml-xxl-n11,.bsui .mx-xxl-n11{margin-left:-14rem !important}.bsui .m-xxl-n12{margin:-16rem !important}.bsui .mt-xxl-n12,.bsui .my-xxl-n12{margin-top:-16rem !important}.bsui .mr-xxl-n12,.bsui .mx-xxl-n12{margin-right:-16rem !important}.bsui .mb-xxl-n12,.bsui .my-xxl-n12{margin-bottom:-16rem !important}.bsui .ml-xxl-n12,.bsui .mx-xxl-n12{margin-left:-16rem !important}.bsui .m-xxl-auto{margin:auto !important}.bsui .mt-xxl-auto,.bsui .my-xxl-auto{margin-top:auto !important}.bsui .mr-xxl-auto,.bsui .mx-xxl-auto{margin-right:auto !important}.bsui .mb-xxl-auto,.bsui .my-xxl-auto{margin-bottom:auto !important}.bsui .ml-xxl-auto,.bsui .mx-xxl-auto{margin-left:auto !important}}.bsui .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.bsui .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.bsui .text-justify{text-align:justify !important}.bsui .text-wrap{white-space:normal !important}.bsui .text-nowrap{white-space:nowrap !important}.bsui .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bsui .text-left{text-align:left !important}.bsui .text-right{text-align:right !important}.bsui .text-center{text-align:center !important}@media (min-width: 576px){.bsui .text-sm-left{text-align:left !important}.bsui .text-sm-right{text-align:right !important}.bsui .text-sm-center{text-align:center !important}}@media (min-width: 768px){.bsui .text-md-left{text-align:left !important}.bsui .text-md-right{text-align:right !important}.bsui .text-md-center{text-align:center !important}}@media (min-width: 992px){.bsui .text-lg-left{text-align:left !important}.bsui .text-lg-right{text-align:right !important}.bsui .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.bsui .text-xl-left{text-align:left !important}.bsui .text-xl-right{text-align:right !important}.bsui .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.bsui .text-xxl-left{text-align:left !important}.bsui .text-xxl-right{text-align:right !important}.bsui .text-xxl-center{text-align:center !important}}.bsui .text-lowercase{text-transform:lowercase !important}.bsui .text-uppercase{text-transform:uppercase !important}.bsui .text-capitalize{text-transform:capitalize !important}.bsui .font-weight-light{font-weight:300 !important}.bsui .font-weight-lighter{font-weight:lighter !important}.bsui .font-weight-normal{font-weight:400 !important}.bsui .font-weight-bold{font-weight:700 !important}.bsui .font-weight-bolder{font-weight:bolder !important}.bsui .font-italic{font-style:italic !important}.bsui .text-white{color:#fff !important}.bsui .text-primary{color:#1e73be !important}.bsui a.text-primary:hover,.bsui a.text-primary:focus{color:#144b7c !important}.bsui .text-secondary{color:#6c757d !important}.bsui a.text-secondary:hover,.bsui a.text-secondary:focus{color:#494f54 !important}.bsui .text-success{color:#44c553 !important}.bsui a.text-success:hover,.bsui a.text-success:focus{color:#2d9038 !important}.bsui .text-info{color:#17a2b8 !important}.bsui a.text-info:hover,.bsui a.text-info:focus{color:#0f6674 !important}.bsui .text-warning{color:#ffc107 !important}.bsui a.text-warning:hover,.bsui a.text-warning:focus{color:#ba8b00 !important}.bsui .text-danger{color:#dc3545 !important}.bsui a.text-danger:hover,.bsui a.text-danger:focus{color:#a71d2a !important}.bsui .text-light{color:#f8f9fa !important}.bsui a.text-light:hover,.bsui a.text-light:focus{color:#cbd3da !important}.bsui .text-dark{color:#343a40 !important}.bsui a.text-dark:hover,.bsui a.text-dark:focus{color:#121416 !important}.bsui .text-white{color:#fff !important}.bsui a.text-white:hover,.bsui a.text-white:focus{color:#d9d9d9 !important}.bsui .text-purple{color:#ad6edd !important}.bsui a.text-purple:hover,.bsui a.text-purple:focus{color:#8a30ce !important}.bsui .text-salmon{color:#ff977a !important}.bsui a.text-salmon:hover,.bsui a.text-salmon:focus{color:#ff5b2e !important}.bsui .text-cyan{color:#35bdff !important}.bsui a.text-cyan:hover,.bsui a.text-cyan:focus{color:#009ce8 !important}.bsui .text-gray{color:#ced4da !important}.bsui a.text-gray:hover,.bsui a.text-gray:focus{color:#a2aeb9 !important}.bsui .text-gray-dark{color:#6c757d !important}.bsui a.text-gray-dark:hover,.bsui a.text-gray-dark:focus{color:#494f54 !important}.bsui .text-indigo{color:#502c6c !important}.bsui a.text-indigo:hover,.bsui a.text-indigo:focus{color:#281636 !important}.bsui .text-orange{color:#fbb500 !important}.bsui a.text-orange:hover,.bsui a.text-orange:focus{color:#af7e00 !important}.bsui .text-body{color:#212529 !important}.bsui .text-muted{color:#6c757d !important}.bsui .text-black-50{color:rgba(0,0,0,0.5) !important}.bsui .text-white-50{color:rgba(255,255,255,0.5) !important}.bsui .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bsui .text-decoration-none{text-decoration:none !important}.bsui .text-break{word-break:break-word !important;word-wrap:break-word !important}.bsui .text-reset{color:inherit !important}.bsui .visible{visibility:visible !important}.bsui .invisible{visibility:hidden !important}@media print{.bsui *,.bsui *::before,.bsui *::after{text-shadow:none !important;box-shadow:none !important}.bsui a:not(.btn){text-decoration:underline}.bsui abbr[title]::after{content:" (" attr(title) ")"}.bsui pre{white-space:pre-wrap !important}.bsui pre,.bsui blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.bsui tr,.bsui img{page-break-inside:avoid}.bsui p,.bsui h2,.bsui h3{orphans:3;widows:3}.bsui h2,.bsui h3{page-break-after:avoid}@page{.bsui{size:a3}}.bsui body{min-width:992px !important}.bsui .container{min-width:992px !important}.bsui .navbar{display:none}.bsui .badge{border:1px solid #000}.bsui .table{border-collapse:collapse !important}.bsui .table td,.bsui .table th{background-color:#fff !important}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6 !important}.bsui .table-dark{color:inherit}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#dee2e6}.bsui .table .thead-dark th{color:inherit;border-color:#dee2e6}}.bsui .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.bsui .iconpicker-popover.popover.top,.bsui .iconpicker-popover.popover.topLeftCorner,.bsui .iconpicker-popover.popover.topLeft,.bsui .iconpicker-popover.popover.topRight,.bsui .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.bsui .iconpicker-popover.popover.right,.bsui .iconpicker-popover.popover.rightTop,.bsui .iconpicker-popover.popover.rightBottom{margin-left:10px}.bsui .iconpicker-popover.popover.bottom,.bsui .iconpicker-popover.popover.bottomRightCorner,.bsui .iconpicker-popover.popover.bottomRight,.bsui .iconpicker-popover.popover.bottomLeft,.bsui .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.bsui .iconpicker-popover.popover.left,.bsui .iconpicker-popover.popover.leftBottom,.bsui .iconpicker-popover.popover.leftTop{margin-left:-10px}.bsui .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.bsui .iconpicker-popover.popover.inline>.arrow{display:none}.bsui .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.bsui .dropdown-menu.iconpicker-container{padding:0}.bsui .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.bsui .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.bsui .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.bsui .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover .popover-footer:before,.bsui .iconpicker-popover .popover-footer:after{content:" ";display:table}.bsui .iconpicker-popover .popover-footer:after{clear:both}.bsui .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.bsui .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.bsui .iconpicker-popover.popover>.arrow,.bsui .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bsui .iconpicker-popover.popover>.arrow{border-width:11px}.bsui .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.bsui .iconpicker-popover.popover.top>.arrow,.bsui .iconpicker-popover.popover.topLeft>.arrow,.bsui .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.bsui .iconpicker-popover.popover.top>.arrow:after,.bsui .iconpicker-popover.popover.topLeft>.arrow:after,.bsui .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.bsui .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.right>.arrow,.bsui .iconpicker-popover.popover.rightTop>.arrow,.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.right>.arrow:after,.bsui .iconpicker-popover.popover.rightTop>.arrow:after,.bsui .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.bsui .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.bottom>.arrow,.bsui .iconpicker-popover.popover.bottomRight>.arrow,.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.bsui .iconpicker-popover.popover.bottom>.arrow:after,.bsui .iconpicker-popover.popover.bottomRight>.arrow:after,.bsui .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.left>.arrow,.bsui .iconpicker-popover.popover.leftBottom>.arrow,.bsui .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.left>.arrow:after,.bsui .iconpicker-popover.popover.leftBottom>.arrow:after,.bsui .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.bsui .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.bsui .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.bsui .iconpicker:before,.bsui .iconpicker:after{content:" ";display:table}.bsui .iconpicker:after{clear:both}.bsui .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.bsui .iconpicker .iconpicker-items:before,.bsui .iconpicker .iconpicker-items:after{content:" ";display:table}.bsui .iconpicker .iconpicker-items:after{clear:both}.bsui .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.bsui .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.bsui .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.bsui .iconpicker-component{cursor:pointer}.bsui .tofront{position:relative;z-index:1}.bsui .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.bsui .c-pointer:hover{cursor:pointer}.bsui .c-move:hover{cursor:move}.bsui .z-index-1{z-index:1}@media (max-width: 991.98px){.bsui .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.bsui .display-3{font-size:2rem}}.bsui .row.gap-y>.col,.bsui .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.bsui .mt-neg5{margin-top:-5rem}.bsui .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.bsui .h-md-100-v{height:100vh}.bsui .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.bsui .h-xl-300{height:300px}.bsui .h-max-380{max-height:380px}}.bsui .btn-round{border-radius:30px !important}.bsui .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.bsui .btn:hover,.bsui .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-link:hover,.bsui .btn-link:focus{box-shadow:none}.bsui .btn-link.btn-primary{color:#1e73be;border-color:transparent}.bsui .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-success{color:#44c553;border-color:transparent}.bsui .btn-link.btn-info{color:#17a2b8;border-color:transparent}.bsui .btn-link.btn-warning{color:#ffc107;border-color:transparent}.bsui .btn-link.btn-danger{color:#dc3545;border-color:transparent}.bsui .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.bsui .btn-link.btn-dark{color:#343a40;border-color:transparent}.bsui .btn-link.btn-white{color:#fff;border-color:transparent}.bsui .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.bsui .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.bsui .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.bsui .btn-link.btn-gray{color:#ced4da;border-color:transparent}.bsui .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.bsui .btn-link.btn-orange{color:#fbb500;border-color:transparent}.bsui .btn-white{background-color:#fff}.bsui .input-round{border-radius:30px !important}.bsui .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.bsui .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.bsui .navbar{font-weight:400}.bsui .navbar-brand{margin-right:2rem;font-size:1.25rem}.bsui .dropdown-item{font-weight:300}.bsui .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.bsui .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.bsui .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.bsui .dropdown-menu.dropdown-caret-0:before{content:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.bsui .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.bsui .jumbotron-lg{padding:10rem 0}.bsui .jumbotron-xl{padding:15rem 0}.bsui .jumbotron-xl{min-height:100vh}.bsui .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bsui .bg-black{background-color:#000}.bsui .overlay{position:relative}.bsui .overlay .container{position:relative}.bsui .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.bsui .overlay-black:before{background-color:rgba(0,0,0,0.5)}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .bg-primary{fill:#1e73be !important}.bsui .bg-secondary{fill:#6c757d !important}.bsui .bg-success{fill:#44c553 !important}.bsui .bg-info{fill:#17a2b8 !important}.bsui .bg-warning{fill:#ffc107 !important}.bsui .bg-danger{fill:#dc3545 !important}.bsui .bg-light{fill:#f8f9fa !important}.bsui .bg-dark{fill:#343a40 !important}.bsui .bg-white{fill:#fff !important}.bsui .bg-purple{fill:#ad6edd !important}.bsui .bg-salmon{fill:#ff977a !important}.bsui .bg-cyan{fill:#35bdff !important}.bsui .bg-gray{fill:#ced4da !important}.bsui .bg-gray-dark{fill:#6c757d !important}.bsui .bg-indigo{fill:#502c6c !important}.bsui .bg-orange{fill:#fbb500 !important}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#e6e6e6}.bsui .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#e6e6e6}.bsui .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#e6e6e6}.bsui .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#e6e6e6}.bsui .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#e6e6e6}.bsui .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#e6e6e6}.bsui .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#e6e6e6}.bsui .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#e6e6e6}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#e6e6e6}.bsui .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#e6e6e6}.bsui .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#e6e6e6}.bsui .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#e6e6e6}.bsui .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#e6e6e6}.bsui .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#e6e6e6}.bsui .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#e6e6e6}.bsui ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.bsui .loginarea{z-index:1111}}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .btn-round{border-radius:30px !important}.bsui .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.bsui .btn-facebook:focus,.bsui .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-facebook.disabled,.bsui .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:not(:disabled):not(.disabled):active,.bsui .btn-facebook:not(:disabled):not(.disabled).active,.show>.bsui .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.bsui .btn-facebook:not(:disabled):not(.disabled):active:focus,.bsui .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.bsui .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.bsui .btn-twitter:focus,.bsui .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-twitter.disabled,.bsui .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.bsui .btn-twitter:not(:disabled):not(.disabled):active,.bsui .btn-twitter:not(:disabled):not(.disabled).active,.show>.bsui .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.bsui .btn-twitter:not(:disabled):not(.disabled):active:focus,.bsui .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.bsui .btn-instagram:focus,.bsui .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram.disabled,.bsui .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.bsui .btn-instagram:not(:disabled):not(.disabled):active,.bsui .btn-instagram:not(:disabled):not(.disabled).active,.show>.bsui .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.bsui .btn-instagram:not(:disabled):not(.disabled):active:focus,.bsui .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.bsui .btn-linkedin:focus,.bsui .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-linkedin.disabled,.bsui .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:not(:disabled):not(.disabled):active,.bsui .btn-linkedin:not(:disabled):not(.disabled).active,.show>.bsui .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.bsui .btn-linkedin:not(:disabled):not(.disabled):active:focus,.bsui .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.bsui .btn-flickr:focus,.bsui .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr.disabled,.bsui .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:not(:disabled):not(.disabled):active,.bsui .btn-flickr:not(:disabled):not(.disabled).active,.show>.bsui .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.bsui .btn-flickr:not(:disabled):not(.disabled):active:focus,.bsui .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.bsui .btn-github:focus,.bsui .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github.disabled,.bsui .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:not(:disabled):not(.disabled):active,.bsui .btn-github:not(:disabled):not(.disabled).active,.show>.bsui .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.bsui .btn-github:not(:disabled):not(.disabled):active:focus,.bsui .btn-github:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.bsui .btn-youtube:focus,.bsui .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube.disabled,.bsui .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:not(:disabled):not(.disabled):active,.bsui .btn-youtube:not(:disabled):not(.disabled).active,.show>.bsui .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.bsui .btn-youtube:not(:disabled):not(.disabled):active:focus,.bsui .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.bsui .btn-wordpress:focus,.bsui .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress.disabled,.bsui .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:not(:disabled):not(.disabled):active,.bsui .btn-wordpress:not(:disabled):not(.disabled).active,.show>.bsui .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.bsui .btn-wordpress:not(:disabled):not(.disabled):active:focus,.bsui .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.bsui .btn-google:focus,.bsui .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google.disabled,.bsui .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:not(:disabled):not(.disabled):active,.bsui .btn-google:not(:disabled):not(.disabled).active,.show>.bsui .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.bsui .btn-google:not(:disabled):not(.disabled):active:focus,.bsui .btn-google:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.bsui .btn-yahoo:focus,.bsui .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo.disabled,.bsui .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:not(:disabled):not(.disabled):active,.bsui .btn-yahoo:not(:disabled):not(.disabled).active,.show>.bsui .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.bsui .btn-yahoo:not(:disabled):not(.disabled):active:focus,.bsui .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.bsui .btn-vkontakte:focus,.bsui .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte.disabled,.bsui .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.bsui .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.bsui .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.bsui .btn-tiktok:focus,.bsui .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok.disabled,.bsui .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.bsui .btn-tiktok:not(:disabled):not(.disabled):active,.bsui .btn-tiktok:not(:disabled):not(.disabled).active,.show>.bsui .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.bsui .btn-tiktok:not(:disabled):not(.disabled):active:focus,.bsui .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-circle.btn-sm,.bsui .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-circle.btn-lg,.bsui .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-square.btn-sm,.bsui .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-square.btn-lg,.bsui .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.bsui .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split.btn-sm .icon,.bsui .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.bsui .btn-icon-split.btn-sm .text,.bsui .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.bsui .btn-icon-split.btn-lg .icon,.bsui .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.bsui .btn-icon-split.btn-lg .text,.bsui .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.bsui .alert a{color:inherit;text-decoration:underline}.bsui .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.bsui .row.row-cols-md-0{display:block}.bsui .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.bsui .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.bsui .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.bsui .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.bsui .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.bsui .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.bsui .row.row-cols-md-0 .card .card-footer{flex:1 100%}.bsui .row.row-cols-md-0 .gv-hide-0{display:none}}.bsui .row-cols-md-2 .gv-hide-2{display:none}.bsui .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.bsui .row-cols-md-3 .gv-hide-2,.bsui .row-cols-md-3 .gv-hide-3{display:none}.bsui .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.bsui .row-cols-md-4 .gv-hide-2,.bsui .row-cols-md-4 .gv-hide-3,.bsui .row-cols-md-4 .gv-hide-4{display:none}.bsui .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.bsui .row-cols-md-5 .gv-hide-2,.bsui .row-cols-md-5 .gv-hide-3,.bsui .row-cols-md-5 .gv-hide-4,.bsui .row-cols-md-5 .gv-hide-5{display:none}.bsui .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.bsui .row .gv-hide-0,.bsui .row .gv-hide-2,.bsui .row .gv-hide-3,.bsui .row .gv-hide-4,.bsui .row .gv-hide-5{display:none}.bsui .row .gv-hide-s-2 .gv-secondary,.bsui .row .gv-hide-s-3 .gv-secondary,.bsui .row .gv-hide-s-4 .gv-secondary,.bsui .row .gv-hide-s-5 .gv-secondary{display:none}}.bsui .border-width-1{border-width:1px !important}.bsui .border-width-2{border-width:2px !important}.bsui .border-width-3{border-width:3px !important}.bsui .border-width-4{border-width:4px !important}.bsui .border-width-5{border-width:5px !important}.bsui .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bsui .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.bsui .hover-content{display:none}.bsui .hover-content.fas{display:none}.bsui .btn:hover .hover-content,.bsui .badge:hover .hover-content,.bsui .hover-swap:hover .hover-content{display:initial}.bsui .btn:hover .hover-content-original,.bsui .badge:hover .hover-content-original,.bsui .hover-swap:hover .hover-content-original{display:none}.bsui .overflow-visible{overflow:visible}.bsui .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.bsui .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.bsui .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.bsui .embed-item-cover-xy{object-fit:cover;height:100%}.bsui .embed-item-cover-x{height:auto !important}.bsui .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.bsui .embed-item-contain{object-fit:contain}.bsui .embed-has-action{transition:all .3s ease-in-out}.bsui .embed-has-action i,.bsui .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.bsui .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover i,.bsui .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.bsui .flatpickr-month .flatpickr-current-month>*{display:inline-block}.bsui .custom-select{-webkit-appearance:none;-moz-appearance:none}.bsui .badge-facebook{color:#fff;background-color:#3b5998}.bsui a.badge-facebook:hover,.bsui a.badge-facebook:focus{color:#fff;background-color:#2d4373}.bsui a.badge-facebook:focus,.bsui a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.bsui .badge-twitter{color:#212529;background-color:#55acee}.bsui a.badge-twitter:hover,.bsui a.badge-twitter:focus{color:#212529;background-color:#2795e9}.bsui a.badge-twitter:focus,.bsui a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-linkedin{color:#fff;background-color:#0976b4}.bsui a.badge-linkedin:hover,.bsui a.badge-linkedin:focus{color:#fff;background-color:#075683}.bsui a.badge-linkedin:focus,.bsui a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.bsui .badge-flickr{color:#fff;background-color:#f8457e}.bsui a.badge-flickr:hover,.bsui a.badge-flickr:focus{color:#fff;background-color:#f6145c}.bsui a.badge-flickr:focus,.bsui a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.bsui .badge-github{color:#fff;background-color:#333}.bsui a.badge-github:hover,.bsui a.badge-github:focus{color:#fff;background-color:#1a1a1a}.bsui a.badge-github:focus,.bsui a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.bsui .badge-youtube{color:#fff;background-color:#e52d27}.bsui a.badge-youtube:hover,.bsui a.badge-youtube:focus{color:#fff;background-color:#c21d17}.bsui a.badge-youtube:focus,.bsui a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.bsui .badge-wordpress{color:#fff;background-color:#207297}.bsui a.badge-wordpress:hover,.bsui a.badge-wordpress:focus{color:#fff;background-color:#17526d}.bsui a.badge-wordpress:focus,.bsui a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.bsui .badge-google{color:#fff;background-color:#ea4335}.bsui a.badge-google:hover,.bsui a.badge-google:focus{color:#fff;background-color:#d62516}.bsui a.badge-google:focus,.bsui a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.bsui .badge-yahoo{color:#fff;background-color:#6040d2}.bsui a.badge-yahoo:hover,.bsui a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.bsui a.badge-yahoo:focus,.bsui a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.bsui .badge-vkontakte{color:#fff;background-color:#4a76a8}.bsui a.badge-vkontakte:hover,.bsui a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.bsui a.badge-vkontakte:focus,.bsui a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.bsui .badge-tiktok{color:#fff;background-color:#010101}.bsui a.badge-tiktok:hover,.bsui a.badge-tiktok:focus{color:#fff;background-color:#000}.bsui a.badge-tiktok:focus,.bsui a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .bg-initial{background:initial !important}.bsui .bg-inherit{background:inherit !important}.bsui .overlay-white:before{background-color:rgba(255,255,255,0.5)}.bsui .form-label-group{position:relative;margin-bottom:1rem}.bsui .form-label-group>input,.bsui .form-label-group>textarea,.bsui .form-label-group>label{padding:.45rem 1.2rem}.bsui .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.bsui .form-label-group input::-webkit-input-placeholder,.bsui .form-label-group input:-ms-input-placeholder,.bsui .form-label-group input::-ms-input-placeholder,.bsui .form-label-group input::-moz-placeholder,.bsui .form-label-group input::placeholder,.bsui .form-label-group textarea::-webkit-input-placeholder,.bsui .form-label-group textarea:-ms-input-placeholder,.bsui .form-label-group textarea::-ms-input-placeholder,.bsui .form-label-group textarea::-moz-placeholder,.bsui .form-label-group textarea::placeholder{color:transparent}.bsui .form-label-group input:not(:placeholder-shown),.bsui .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.bsui .form-label-group input:not(:placeholder-shown) ~ label,.bsui .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.bsui .ab-left,.bsui .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.bsui .ab-left-angle,.bsui .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-left-angle .badge,.bsui .ab-top-left-angle .badge{display:block}.bsui .ab-right,.bsui .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.bsui .ab-right-angle,.bsui .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-right-angle .badge,.bsui .ab-top-right-angle .badge{display:block}.bsui .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.bsui .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-left-angle .badge{display:block}.bsui .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.bsui .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-right-angle .badge{display:block}.bsui .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.bsui .clear-both{clear:both}.bsui .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.bsui .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.bsui .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.bsui .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.bsui .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.bsui .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.bsui .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.bsui .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.bsui .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.bsui .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.bsui .hover-zoom{transition:transform .2s}.bsui .hover-zoom:hover{transform:scale(1.2)}.bsui .hover-shadow{transition:all ease 0.3s}.bsui .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-up:hover{top:-10px !important}.bsui .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-down:hover{bottom:-10px !important}.bsui .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-left:hover{left:-10px !important}.bsui .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-right:hover{right:-10px !important}.bsui .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;right:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem auto -1rem -1rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} + */}.bsui :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.bsui *,.bsui *::before,.bsui *::after{box-sizing:border-box}.bsui html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent;direction:rtl}.bsui article,.bsui aside,.bsui figcaption,.bsui figure,.bsui footer,.bsui header,.bsui hgroup,.bsui main,.bsui nav,.bsui section{display:block}.bsui body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:right;background-color:#fff}.bsui [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.bsui hr{box-sizing:content-box;height:0;overflow:visible}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6{margin-top:0;margin-bottom:.5rem}.bsui p{margin-top:0;margin-bottom:1rem}.bsui abbr[title],.bsui abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.bsui address{margin-bottom:1rem;font-style:normal;line-height:inherit}.bsui ol,.bsui ul,.bsui dl{margin-top:0;margin-bottom:1rem}.bsui ol ol,.bsui ul ul,.bsui ol ul,.bsui ul ol{margin-bottom:0}.bsui dt{font-weight:700}.bsui dd{margin-right:0;margin-bottom:.5rem}.bsui blockquote{margin:0 0 1rem}.bsui b,.bsui strong{font-weight:bolder}.bsui small{font-size:80%}.bsui sub,.bsui sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.bsui sub{bottom:-.25em}.bsui sup{top:-.5em}.bsui a{color:#1e73be;text-decoration:none;background-color:transparent}.bsui a:hover{color:#144b7c;text-decoration:underline}.bsui a:not([href]):not([class]){color:inherit;text-decoration:none}.bsui a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.bsui pre,.bsui code,.bsui kbd,.bsui samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.bsui pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.bsui figure{margin:0 0 1rem}.bsui img{vertical-align:middle;border-style:none}.bsui svg{overflow:hidden;vertical-align:middle}.bsui table{border-collapse:collapse}.bsui caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:right;caption-side:bottom}.bsui th{text-align:inherit;text-align:-webkit-match-parent}.bsui label{display:inline-block;margin-bottom:.5rem}.bsui button{border-radius:0}.bsui button:focus:not(:focus-visible){outline:0}.bsui input,.bsui button,.bsui select,.bsui optgroup,.bsui textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.bsui button,.bsui input{overflow:visible}.bsui button,.bsui select{text-transform:none}.bsui [role="button"]{cursor:pointer}.bsui select{word-wrap:normal}.bsui button,.bsui [type="button"],.bsui [type="reset"],.bsui [type="submit"]{-webkit-appearance:button}.bsui button:not(:disabled),.bsui [type="button"]:not(:disabled),.bsui [type="reset"]:not(:disabled),.bsui [type="submit"]:not(:disabled){cursor:pointer}.bsui button::-moz-focus-inner,.bsui [type="button"]::-moz-focus-inner,.bsui [type="reset"]::-moz-focus-inner,.bsui [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.bsui input[type="radio"],.bsui input[type="checkbox"]{box-sizing:border-box;padding:0}.bsui textarea{overflow:auto;resize:vertical}.bsui fieldset{min-width:0;padding:0;margin:0;border:0}.bsui legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.bsui progress{vertical-align:baseline}.bsui [type="number"]::-webkit-inner-spin-button,.bsui [type="number"]::-webkit-outer-spin-button{height:auto}.bsui [type="search"]{outline-offset:-2px;-webkit-appearance:none}.bsui [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.bsui ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.bsui output{display:inline-block}.bsui summary{display:list-item;cursor:pointer}.bsui template{display:none}.bsui [hidden]{display:none !important}.bsui code,.bsui samp,.bsui var,.bsui [type="email"],.bsui [type="file"],.bsui [type="number"],.bsui [type="password"],.bsui [type="tel"],.bsui [type="url"]{text-align:left;direction:ltr}.bsui kbd{display:inline-block}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6,.bsui .h1,.bsui .h2,.bsui .h3,.bsui .h4,.bsui .h5,.bsui .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.bsui h1,.bsui .h1{font-size:2.5rem}.bsui h2,.bsui .h2{font-size:2rem}.bsui h3,.bsui .h3{font-size:1.75rem}.bsui h4,.bsui .h4{font-size:1.5rem}.bsui h5,.bsui .h5{font-size:1.25rem}.bsui h6,.bsui .h6{font-size:1rem}.bsui .lead{font-size:1.25rem;font-weight:300}.bsui .display-1{font-size:6rem;font-weight:300;line-height:1.2}.bsui .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.bsui .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.bsui .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.bsui hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.bsui small,.bsui .small{font-size:85%;font-weight:400}.bsui mark,.bsui .mark{padding:.2em;background-color:#fcf8e3}.bsui .list-unstyled{padding-right:0;list-style:none}.bsui .list-inline{padding-right:0;list-style:none}.bsui .list-inline-item{display:inline-block}.bsui .list-inline-item:not(:last-child){margin-left:.5rem}.bsui .initialism{font-size:90%;text-transform:uppercase}.bsui .blockquote{margin-bottom:1rem;font-size:1.25rem}.bsui .blockquote-footer{display:block;font-size:85%;color:#6c757d}.bsui .blockquote-footer::before{content:"\2014\00A0"}.bsui .img-fluid{max-width:100%;height:auto}.bsui .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.bsui .figure{display:inline-block}.bsui .figure-img{margin-bottom:.5rem;line-height:1}.bsui .figure-caption{font-size:90%;color:#6c757d}.bsui code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.bsui code{color:inherit}.bsui kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.bsui kbd kbd{padding:0;font-size:100%;font-weight:700}.bsui pre{display:block;font-size:100%;color:#212529}.bsui pre code{font-size:inherit;color:inherit;word-break:normal}.bsui .pre-scrollable{max-height:340px;overflow-y:scroll}.bsui .container,.bsui .container-fluid,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.bsui .container,.bsui .container-sm{max-width:540px}}@media (min-width: 768px){.bsui .container,.bsui .container-sm,.bsui .container-md{max-width:720px}}@media (min-width: 992px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg{max-width:960px}}@media (min-width: 1200px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl{max-width:1140px}}@media (min-width: 1400px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{max-width:1320px}}.bsui .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.bsui .no-gutters{margin-right:0;margin-left:0}.bsui .no-gutters>.col,.bsui .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.bsui .col-1,.bsui .col-2,.bsui .col-3,.bsui .col-4,.bsui .col-5,.bsui .col-6,.bsui .col-7,.bsui .col-8,.bsui .col-9,.bsui .col-10,.bsui .col-11,.bsui .col-12,.bsui .col,.bsui .col-auto,.bsui .col-sm-1,.bsui .col-sm-2,.bsui .col-sm-3,.bsui .col-sm-4,.bsui .col-sm-5,.bsui .col-sm-6,.bsui .col-sm-7,.bsui .col-sm-8,.bsui .col-sm-9,.bsui .col-sm-10,.bsui .col-sm-11,.bsui .col-sm-12,.bsui .col-sm,.bsui .col-sm-auto,.bsui .col-md-1,.bsui .col-md-2,.bsui .col-md-3,.bsui .col-md-4,.bsui .col-md-5,.bsui .col-md-6,.bsui .col-md-7,.bsui .col-md-8,.bsui .col-md-9,.bsui .col-md-10,.bsui .col-md-11,.bsui .col-md-12,.bsui .col-md,.bsui .col-md-auto,.bsui .col-lg-1,.bsui .col-lg-2,.bsui .col-lg-3,.bsui .col-lg-4,.bsui .col-lg-5,.bsui .col-lg-6,.bsui .col-lg-7,.bsui .col-lg-8,.bsui .col-lg-9,.bsui .col-lg-10,.bsui .col-lg-11,.bsui .col-lg-12,.bsui .col-lg,.bsui .col-lg-auto,.bsui .col-xl-1,.bsui .col-xl-2,.bsui .col-xl-3,.bsui .col-xl-4,.bsui .col-xl-5,.bsui .col-xl-6,.bsui .col-xl-7,.bsui .col-xl-8,.bsui .col-xl-9,.bsui .col-xl-10,.bsui .col-xl-11,.bsui .col-xl-12,.bsui .col-xl,.bsui .col-xl-auto,.bsui .col-xxl-1,.bsui .col-xxl-2,.bsui .col-xxl-3,.bsui .col-xxl-4,.bsui .col-xxl-5,.bsui .col-xxl-6,.bsui .col-xxl-7,.bsui .col-xxl-8,.bsui .col-xxl-9,.bsui .col-xxl-10,.bsui .col-xxl-11,.bsui .col-xxl-12,.bsui .col-xxl,.bsui .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.bsui .col{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-3{flex:0 0 25%;max-width:25%}.bsui .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-6{flex:0 0 50%;max-width:50%}.bsui .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-9{flex:0 0 75%;max-width:75%}.bsui .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-12{flex:0 0 100%;max-width:100%}.bsui .order-first{order:-1}.bsui .order-last{order:13}.bsui .order-0{order:0}.bsui .order-1{order:1}.bsui .order-2{order:2}.bsui .order-3{order:3}.bsui .order-4{order:4}.bsui .order-5{order:5}.bsui .order-6{order:6}.bsui .order-7{order:7}.bsui .order-8{order:8}.bsui .order-9{order:9}.bsui .order-10{order:10}.bsui .order-11{order:11}.bsui .order-12{order:12}.bsui .offset-1{margin-right:8.33333333%}.bsui .offset-2{margin-right:16.66666667%}.bsui .offset-3{margin-right:25%}.bsui .offset-4{margin-right:33.33333333%}.bsui .offset-5{margin-right:41.66666667%}.bsui .offset-6{margin-right:50%}.bsui .offset-7{margin-right:58.33333333%}.bsui .offset-8{margin-right:66.66666667%}.bsui .offset-9{margin-right:75%}.bsui .offset-10{margin-right:83.33333333%}.bsui .offset-11{margin-right:91.66666667%}@media (min-width: 576px){.bsui .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-sm-3{flex:0 0 25%;max-width:25%}.bsui .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-sm-6{flex:0 0 50%;max-width:50%}.bsui .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-sm-9{flex:0 0 75%;max-width:75%}.bsui .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-sm-12{flex:0 0 100%;max-width:100%}.bsui .order-sm-first{order:-1}.bsui .order-sm-last{order:13}.bsui .order-sm-0{order:0}.bsui .order-sm-1{order:1}.bsui .order-sm-2{order:2}.bsui .order-sm-3{order:3}.bsui .order-sm-4{order:4}.bsui .order-sm-5{order:5}.bsui .order-sm-6{order:6}.bsui .order-sm-7{order:7}.bsui .order-sm-8{order:8}.bsui .order-sm-9{order:9}.bsui .order-sm-10{order:10}.bsui .order-sm-11{order:11}.bsui .order-sm-12{order:12}.bsui .offset-sm-0{margin-right:0}.bsui .offset-sm-1{margin-right:8.33333333%}.bsui .offset-sm-2{margin-right:16.66666667%}.bsui .offset-sm-3{margin-right:25%}.bsui .offset-sm-4{margin-right:33.33333333%}.bsui .offset-sm-5{margin-right:41.66666667%}.bsui .offset-sm-6{margin-right:50%}.bsui .offset-sm-7{margin-right:58.33333333%}.bsui .offset-sm-8{margin-right:66.66666667%}.bsui .offset-sm-9{margin-right:75%}.bsui .offset-sm-10{margin-right:83.33333333%}.bsui .offset-sm-11{margin-right:91.66666667%}}@media (min-width: 768px){.bsui .col-md{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-md-3{flex:0 0 25%;max-width:25%}.bsui .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-md-6{flex:0 0 50%;max-width:50%}.bsui .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-md-9{flex:0 0 75%;max-width:75%}.bsui .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-md-12{flex:0 0 100%;max-width:100%}.bsui .order-md-first{order:-1}.bsui .order-md-last{order:13}.bsui .order-md-0{order:0}.bsui .order-md-1{order:1}.bsui .order-md-2{order:2}.bsui .order-md-3{order:3}.bsui .order-md-4{order:4}.bsui .order-md-5{order:5}.bsui .order-md-6{order:6}.bsui .order-md-7{order:7}.bsui .order-md-8{order:8}.bsui .order-md-9{order:9}.bsui .order-md-10{order:10}.bsui .order-md-11{order:11}.bsui .order-md-12{order:12}.bsui .offset-md-0{margin-right:0}.bsui .offset-md-1{margin-right:8.33333333%}.bsui .offset-md-2{margin-right:16.66666667%}.bsui .offset-md-3{margin-right:25%}.bsui .offset-md-4{margin-right:33.33333333%}.bsui .offset-md-5{margin-right:41.66666667%}.bsui .offset-md-6{margin-right:50%}.bsui .offset-md-7{margin-right:58.33333333%}.bsui .offset-md-8{margin-right:66.66666667%}.bsui .offset-md-9{margin-right:75%}.bsui .offset-md-10{margin-right:83.33333333%}.bsui .offset-md-11{margin-right:91.66666667%}}@media (min-width: 992px){.bsui .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-lg-3{flex:0 0 25%;max-width:25%}.bsui .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-lg-6{flex:0 0 50%;max-width:50%}.bsui .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-lg-9{flex:0 0 75%;max-width:75%}.bsui .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-lg-12{flex:0 0 100%;max-width:100%}.bsui .order-lg-first{order:-1}.bsui .order-lg-last{order:13}.bsui .order-lg-0{order:0}.bsui .order-lg-1{order:1}.bsui .order-lg-2{order:2}.bsui .order-lg-3{order:3}.bsui .order-lg-4{order:4}.bsui .order-lg-5{order:5}.bsui .order-lg-6{order:6}.bsui .order-lg-7{order:7}.bsui .order-lg-8{order:8}.bsui .order-lg-9{order:9}.bsui .order-lg-10{order:10}.bsui .order-lg-11{order:11}.bsui .order-lg-12{order:12}.bsui .offset-lg-0{margin-right:0}.bsui .offset-lg-1{margin-right:8.33333333%}.bsui .offset-lg-2{margin-right:16.66666667%}.bsui .offset-lg-3{margin-right:25%}.bsui .offset-lg-4{margin-right:33.33333333%}.bsui .offset-lg-5{margin-right:41.66666667%}.bsui .offset-lg-6{margin-right:50%}.bsui .offset-lg-7{margin-right:58.33333333%}.bsui .offset-lg-8{margin-right:66.66666667%}.bsui .offset-lg-9{margin-right:75%}.bsui .offset-lg-10{margin-right:83.33333333%}.bsui .offset-lg-11{margin-right:91.66666667%}}@media (min-width: 1200px){.bsui .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xl-3{flex:0 0 25%;max-width:25%}.bsui .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xl-6{flex:0 0 50%;max-width:50%}.bsui .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xl-9{flex:0 0 75%;max-width:75%}.bsui .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xl-12{flex:0 0 100%;max-width:100%}.bsui .order-xl-first{order:-1}.bsui .order-xl-last{order:13}.bsui .order-xl-0{order:0}.bsui .order-xl-1{order:1}.bsui .order-xl-2{order:2}.bsui .order-xl-3{order:3}.bsui .order-xl-4{order:4}.bsui .order-xl-5{order:5}.bsui .order-xl-6{order:6}.bsui .order-xl-7{order:7}.bsui .order-xl-8{order:8}.bsui .order-xl-9{order:9}.bsui .order-xl-10{order:10}.bsui .order-xl-11{order:11}.bsui .order-xl-12{order:12}.bsui .offset-xl-0{margin-right:0}.bsui .offset-xl-1{margin-right:8.33333333%}.bsui .offset-xl-2{margin-right:16.66666667%}.bsui .offset-xl-3{margin-right:25%}.bsui .offset-xl-4{margin-right:33.33333333%}.bsui .offset-xl-5{margin-right:41.66666667%}.bsui .offset-xl-6{margin-right:50%}.bsui .offset-xl-7{margin-right:58.33333333%}.bsui .offset-xl-8{margin-right:66.66666667%}.bsui .offset-xl-9{margin-right:75%}.bsui .offset-xl-10{margin-right:83.33333333%}.bsui .offset-xl-11{margin-right:91.66666667%}}@media (min-width: 1400px){.bsui .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xxl-3{flex:0 0 25%;max-width:25%}.bsui .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xxl-6{flex:0 0 50%;max-width:50%}.bsui .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xxl-9{flex:0 0 75%;max-width:75%}.bsui .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xxl-12{flex:0 0 100%;max-width:100%}.bsui .order-xxl-first{order:-1}.bsui .order-xxl-last{order:13}.bsui .order-xxl-0{order:0}.bsui .order-xxl-1{order:1}.bsui .order-xxl-2{order:2}.bsui .order-xxl-3{order:3}.bsui .order-xxl-4{order:4}.bsui .order-xxl-5{order:5}.bsui .order-xxl-6{order:6}.bsui .order-xxl-7{order:7}.bsui .order-xxl-8{order:8}.bsui .order-xxl-9{order:9}.bsui .order-xxl-10{order:10}.bsui .order-xxl-11{order:11}.bsui .order-xxl-12{order:12}.bsui .offset-xxl-0{margin-right:0}.bsui .offset-xxl-1{margin-right:8.33333333%}.bsui .offset-xxl-2{margin-right:16.66666667%}.bsui .offset-xxl-3{margin-right:25%}.bsui .offset-xxl-4{margin-right:33.33333333%}.bsui .offset-xxl-5{margin-right:41.66666667%}.bsui .offset-xxl-6{margin-right:50%}.bsui .offset-xxl-7{margin-right:58.33333333%}.bsui .offset-xxl-8{margin-right:66.66666667%}.bsui .offset-xxl-9{margin-right:75%}.bsui .offset-xxl-10{margin-right:83.33333333%}.bsui .offset-xxl-11{margin-right:91.66666667%}}.bsui .table{width:100%;margin-bottom:1rem;color:#212529}.bsui .table th,.bsui .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.bsui .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.bsui .table tbody+tbody{border-top:2px solid #dee2e6}.bsui .table-sm th,.bsui .table-sm td{padding:.3rem}.bsui .table-bordered{border:1px solid #dee2e6}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6}.bsui .table-bordered thead th,.bsui .table-bordered thead td{border-bottom-width:2px}.bsui .table-borderless th,.bsui .table-borderless td,.bsui .table-borderless thead th,.bsui .table-borderless tbody+tbody{border:0}.bsui .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.bsui .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.bsui .table-primary,.bsui .table-primary>th,.bsui .table-primary>td{background-color:#c0d8ed}.bsui .table-primary th,.bsui .table-primary td,.bsui .table-primary thead th,.bsui .table-primary tbody+tbody{border-color:#8ab6dd}.bsui .table-hover .table-primary:hover{background-color:#accce7}.bsui .table-hover .table-primary:hover>td,.bsui .table-hover .table-primary:hover>th{background-color:#accce7}.bsui .table-secondary,.bsui .table-secondary>th,.bsui .table-secondary>td{background-color:#d6d8db}.bsui .table-secondary th,.bsui .table-secondary td,.bsui .table-secondary thead th,.bsui .table-secondary tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-secondary:hover{background-color:#c8cbcf}.bsui .table-hover .table-secondary:hover>td,.bsui .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.bsui .table-success,.bsui .table-success>th,.bsui .table-success>td{background-color:#cbefcf}.bsui .table-success th,.bsui .table-success td,.bsui .table-success thead th,.bsui .table-success tbody+tbody{border-color:#9ee1a6}.bsui .table-hover .table-success:hover{background-color:#b8e9bd}.bsui .table-hover .table-success:hover>td,.bsui .table-hover .table-success:hover>th{background-color:#b8e9bd}.bsui .table-info,.bsui .table-info>th,.bsui .table-info>td{background-color:#bee5eb}.bsui .table-info th,.bsui .table-info td,.bsui .table-info thead th,.bsui .table-info tbody+tbody{border-color:#86cfda}.bsui .table-hover .table-info:hover{background-color:#abdde5}.bsui .table-hover .table-info:hover>td,.bsui .table-hover .table-info:hover>th{background-color:#abdde5}.bsui .table-warning,.bsui .table-warning>th,.bsui .table-warning>td{background-color:#ffeeba}.bsui .table-warning th,.bsui .table-warning td,.bsui .table-warning thead th,.bsui .table-warning tbody+tbody{border-color:#ffdf7e}.bsui .table-hover .table-warning:hover{background-color:#ffe8a1}.bsui .table-hover .table-warning:hover>td,.bsui .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bsui .table-danger,.bsui .table-danger>th,.bsui .table-danger>td{background-color:#f5c6cb}.bsui .table-danger th,.bsui .table-danger td,.bsui .table-danger thead th,.bsui .table-danger tbody+tbody{border-color:#ed969e}.bsui .table-hover .table-danger:hover{background-color:#f1b0b7}.bsui .table-hover .table-danger:hover>td,.bsui .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bsui .table-light,.bsui .table-light>th,.bsui .table-light>td{background-color:#fdfdfe}.bsui .table-light th,.bsui .table-light td,.bsui .table-light thead th,.bsui .table-light tbody+tbody{border-color:#fbfcfc}.bsui .table-hover .table-light:hover{background-color:#ececf6}.bsui .table-hover .table-light:hover>td,.bsui .table-hover .table-light:hover>th{background-color:#ececf6}.bsui .table-dark,.bsui .table-dark>th,.bsui .table-dark>td{background-color:#c6c8ca}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#95999c}.bsui .table-hover .table-dark:hover{background-color:#b9bbbe}.bsui .table-hover .table-dark:hover>td,.bsui .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bsui .table-white,.bsui .table-white>th,.bsui .table-white>td{background-color:#fff}.bsui .table-white th,.bsui .table-white td,.bsui .table-white thead th,.bsui .table-white tbody+tbody{border-color:#fff}.bsui .table-hover .table-white:hover{background-color:#f2f2f2}.bsui .table-hover .table-white:hover>td,.bsui .table-hover .table-white:hover>th{background-color:#f2f2f2}.bsui .table-purple,.bsui .table-purple>th,.bsui .table-purple>td{background-color:#e8d6f5}.bsui .table-purple th,.bsui .table-purple td,.bsui .table-purple thead th,.bsui .table-purple tbody+tbody{border-color:#d4b4ed}.bsui .table-hover .table-purple:hover{background-color:#ddc2f0}.bsui .table-hover .table-purple:hover>td,.bsui .table-hover .table-purple:hover>th{background-color:#ddc2f0}.bsui .table-salmon,.bsui .table-salmon>th,.bsui .table-salmon>td{background-color:#ffe2da}.bsui .table-salmon th,.bsui .table-salmon td,.bsui .table-salmon thead th,.bsui .table-salmon tbody+tbody{border-color:#ffc9ba}.bsui .table-hover .table-salmon:hover{background-color:#ffcec1}.bsui .table-hover .table-salmon:hover>td,.bsui .table-hover .table-salmon:hover>th{background-color:#ffcec1}.bsui .table-cyan,.bsui .table-cyan>th,.bsui .table-cyan>td{background-color:#c6edff}.bsui .table-cyan th,.bsui .table-cyan td,.bsui .table-cyan thead th,.bsui .table-cyan tbody+tbody{border-color:#96ddff}.bsui .table-hover .table-cyan:hover{background-color:#ade5ff}.bsui .table-hover .table-cyan:hover>td,.bsui .table-hover .table-cyan:hover>th{background-color:#ade5ff}.bsui .table-gray,.bsui .table-gray>th,.bsui .table-gray>td{background-color:#f1f3f5}.bsui .table-gray th,.bsui .table-gray td,.bsui .table-gray thead th,.bsui .table-gray tbody+tbody{border-color:#e6e9ec}.bsui .table-hover .table-gray:hover{background-color:#e2e6ea}.bsui .table-hover .table-gray:hover>td,.bsui .table-hover .table-gray:hover>th{background-color:#e2e6ea}.bsui .table-gray-dark,.bsui .table-gray-dark>th,.bsui .table-gray-dark>td{background-color:#d6d8db}.bsui .table-gray-dark th,.bsui .table-gray-dark td,.bsui .table-gray-dark thead th,.bsui .table-gray-dark tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.bsui .table-hover .table-gray-dark:hover>td,.bsui .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.bsui .table-indigo,.bsui .table-indigo>th,.bsui .table-indigo>td{background-color:#cec4d6}.bsui .table-indigo th,.bsui .table-indigo td,.bsui .table-indigo thead th,.bsui .table-indigo tbody+tbody{border-color:#a491b3}.bsui .table-hover .table-indigo:hover{background-color:#c2b5cc}.bsui .table-hover .table-indigo:hover>td,.bsui .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.bsui .table-orange,.bsui .table-orange>th,.bsui .table-orange>td{background-color:#feeab8}.bsui .table-orange th,.bsui .table-orange td,.bsui .table-orange thead th,.bsui .table-orange tbody+tbody{border-color:#fdd97a}.bsui .table-hover .table-orange:hover{background-color:#fee39f}.bsui .table-hover .table-orange:hover>td,.bsui .table-hover .table-orange:hover>th{background-color:#fee39f}.bsui .table-active,.bsui .table-active>th,.bsui .table-active>td{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover>td,.bsui .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.bsui .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.bsui .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.bsui .table-dark{color:#fff;background-color:#343a40}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th{border-color:#454d55}.bsui .table-dark.table-bordered{border:0}.bsui .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.bsui .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.bsui .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.bsui .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.bsui .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.bsui .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.bsui .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xxl>.table-bordered{border:0}}.bsui .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive>.table-bordered{border:0}.bsui .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .form-control{transition:none}}.bsui .form-control::-ms-expand{background-color:transparent;border:0}.bsui .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .form-control::placeholder{color:#6c757d;opacity:1}.bsui .form-control:disabled,.bsui .form-control[readonly]{background-color:#e9ecef;opacity:1}.bsui input[type="date"].form-control,.bsui input[type="time"].form-control,.bsui input[type="datetime-local"].form-control,.bsui input[type="month"].form-control{appearance:none}.bsui select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.bsui .form-control-file,.bsui .form-control-range{display:block;width:100%}.bsui .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.bsui .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.bsui .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.bsui .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.bsui .form-control-plaintext.form-control-sm,.bsui .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.bsui .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui select.form-control[size],.bsui select.form-control[multiple]{height:auto}.bsui textarea.form-control{height:auto}.bsui .form-group{margin-bottom:1rem}.bsui .form-text{display:block;margin-top:.25rem}.bsui .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.bsui .form-row>.col,.bsui .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.bsui .form-check{position:relative;display:block;padding-right:1.25rem}.bsui .form-check-input{position:absolute;margin-top:.3rem;margin-right:-1.25rem}.bsui .form-check-input[disabled] ~ .form-check-label,.bsui .form-check-input:disabled ~ .form-check-label{color:#6c757d}.bsui .form-check-label{margin-bottom:0}.bsui .form-check-inline{display:inline-flex;align-items:center;padding-right:0;margin-left:.75rem}.bsui .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0;margin-left:.3125rem}.bsui .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.bsui .valid-tooltip{position:absolute;top:100%;right:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.bsui .valid-tooltip,.form-row>[class*="col-"]>.bsui .valid-tooltip{right:5px}.was-validated .bsui:valid ~ .valid-feedback,.was-validated .bsui:valid ~ .valid-tooltip,.bsui.is-valid ~ .valid-feedback,.bsui.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .form-control:valid,.bsui .form-control.is-valid{border-color:#44c553;padding-left:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:valid:focus,.bsui .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui select.form-control:valid,.bsui select.form-control.is-valid{padding-left:4.8rem !important;background-position:left 2.4rem center}.was-validated .bsui textarea.form-control:valid,.bsui textarea.form-control.is-valid{padding-left:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) left calc(.4em + .225rem)}.was-validated .bsui .custom-select:valid,.bsui .custom-select.is-valid{border-color:#44c553;padding-left:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center left 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:valid:focus,.bsui .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .form-check-input:valid ~ .form-check-label,.bsui .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .bsui .form-check-input:valid ~ .valid-feedback,.was-validated .bsui .form-check-input:valid ~ .valid-tooltip,.bsui .form-check-input.is-valid ~ .valid-feedback,.bsui .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label,.bsui .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label::before,.bsui .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-control-input:valid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .bsui .custom-control-input:valid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-file-input:valid ~ .custom-file-label,.bsui .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .bsui .custom-file-input:valid:focus ~ .custom-file-label,.bsui .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.bsui .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.bsui .invalid-tooltip{position:absolute;top:100%;right:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.bsui .invalid-tooltip,.form-row>[class*="col-"]>.bsui .invalid-tooltip{right:5px}.was-validated .bsui:invalid ~ .invalid-feedback,.was-validated .bsui:invalid ~ .invalid-tooltip,.bsui.is-invalid ~ .invalid-feedback,.bsui.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .form-control:invalid,.bsui .form-control.is-invalid{border-color:#dc3545;padding-left:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:invalid:focus,.bsui .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui select.form-control:invalid,.bsui select.form-control.is-invalid{padding-left:4.8rem !important;background-position:left 2.4rem center}.was-validated .bsui textarea.form-control:invalid,.bsui textarea.form-control.is-invalid{padding-left:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) left calc(.4em + .225rem)}.was-validated .bsui .custom-select:invalid,.bsui .custom-select.is-invalid{border-color:#dc3545;padding-left:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center left 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:invalid:focus,.bsui .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .form-check-input:invalid ~ .form-check-label,.bsui .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .bsui .form-check-input:invalid ~ .invalid-feedback,.was-validated .bsui .form-check-input:invalid ~ .invalid-tooltip,.bsui .form-check-input.is-invalid ~ .invalid-feedback,.bsui .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label,.bsui .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-control-input:invalid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .bsui .custom-control-input:invalid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid ~ .custom-file-label,.bsui .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid:focus ~ .custom-file-label,.bsui .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.bsui .form-inline{display:flex;flex-flow:row wrap;align-items:center}.bsui .form-inline .form-check{width:100%}@media (min-width: 576px){.bsui .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.bsui .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.bsui .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.bsui .form-inline .form-control-plaintext{display:inline-block}.bsui .form-inline .input-group,.bsui .form-inline .custom-select{width:auto}.bsui .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-right:0}.bsui .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:0;margin-left:.25rem}.bsui .form-inline .custom-control{align-items:center;justify-content:center}.bsui .form-inline .custom-control-label{margin-bottom:0}}.bsui .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .btn{transition:none}}.bsui .btn:hover{color:#212529;text-decoration:none}.bsui .btn:focus,.bsui .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .btn.disabled,.bsui .btn:disabled{opacity:.65}.bsui .btn:not(:disabled):not(.disabled){cursor:pointer}.bsui a.btn.disabled,.bsui fieldset:disabled a.btn{pointer-events:none}.bsui .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.bsui .btn-primary:focus,.bsui .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-primary.disabled,.bsui .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:not(:disabled):not(.disabled):active,.bsui .btn-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.bsui .btn-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-secondary:focus,.bsui .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-secondary.disabled,.bsui .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:not(:disabled):not(.disabled):active,.bsui .btn-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.bsui .btn-success:focus,.bsui .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-success.disabled,.bsui .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:not(:disabled):not(.disabled):active,.bsui .btn-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.bsui .btn-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.bsui .btn-info:focus,.bsui .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-info.disabled,.bsui .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:not(:disabled):not(.disabled):active,.bsui .btn-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.bsui .btn-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.bsui .btn-warning:focus,.bsui .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-warning.disabled,.bsui .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:not(:disabled):not(.disabled):active,.bsui .btn-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.bsui .btn-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.bsui .btn-danger:focus,.bsui .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-danger.disabled,.bsui .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:not(:disabled):not(.disabled):active,.bsui .btn-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.bsui .btn-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.bsui .btn-light:focus,.bsui .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-light.disabled,.bsui .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:not(:disabled):not(.disabled):active,.bsui .btn-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.bsui .btn-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.bsui .btn-dark:focus,.bsui .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-dark.disabled,.bsui .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:not(:disabled):not(.disabled):active,.bsui .btn-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.bsui .btn-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-white{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.bsui .btn-white:focus,.bsui .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-white.disabled,.bsui .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:not(:disabled):not(.disabled):active,.bsui .btn-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.bsui .btn-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.bsui .btn-purple:focus,.bsui .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-purple.disabled,.bsui .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:not(:disabled):not(.disabled):active,.bsui .btn-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.bsui .btn-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.bsui .btn-salmon:focus,.bsui .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-salmon.disabled,.bsui .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:not(:disabled):not(.disabled):active,.bsui .btn-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.bsui .btn-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.bsui .btn-cyan:focus,.bsui .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-cyan.disabled,.bsui .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:not(:disabled):not(.disabled):active,.bsui .btn-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.bsui .btn-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.bsui .btn-gray:focus,.bsui .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray.disabled,.bsui .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:not(:disabled):not(.disabled):active,.bsui .btn-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.bsui .btn-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-gray-dark:focus,.bsui .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-gray-dark.disabled,.bsui .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.bsui .btn-indigo:focus,.bsui .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-indigo.disabled,.bsui .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:not(:disabled):not(.disabled):active,.bsui .btn-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.bsui .btn-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.bsui .btn-orange:focus,.bsui .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-orange.disabled,.bsui .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:not(:disabled):not(.disabled):active,.bsui .btn-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.bsui .btn-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-outline-primary{color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:focus,.bsui .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-primary.disabled,.bsui .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:focus,.bsui .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-secondary.disabled,.bsui .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-success{color:#44c553;border-color:#44c553}.bsui .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:focus,.bsui .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-success.disabled,.bsui .btn-outline-success:disabled{color:#44c553;background-color:transparent}.bsui .btn-outline-success:not(:disabled):not(.disabled):active,.bsui .btn-outline-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:focus,.bsui .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-info.disabled,.bsui .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.bsui .btn-outline-info:not(:disabled):not(.disabled):active,.bsui .btn-outline-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-warning{color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:focus,.bsui .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-warning.disabled,.bsui .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-danger{color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:focus,.bsui .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-danger.disabled,.bsui .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:focus,.bsui .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-light.disabled,.bsui .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.bsui .btn-outline-light:not(:disabled):not(.disabled):active,.bsui .btn-outline-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-dark{color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:focus,.bsui .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-dark.disabled,.bsui .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-white{color:#fff;border-color:#fff}.bsui .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:focus,.bsui .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-white.disabled,.bsui .btn-outline-white:disabled{color:#fff;background-color:transparent}.bsui .btn-outline-white:not(:disabled):not(.disabled):active,.bsui .btn-outline-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:focus,.bsui .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-purple.disabled,.bsui .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:focus,.bsui .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-salmon.disabled,.bsui .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:focus,.bsui .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-cyan.disabled,.bsui .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-gray{color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:focus,.bsui .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray.disabled,.bsui .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:focus,.bsui .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-gray-dark.disabled,.bsui .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:focus,.bsui .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-indigo.disabled,.bsui .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-orange{color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:focus,.bsui .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-outline-orange.disabled,.bsui .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.bsui .btn-link:hover{color:#144b7c;text-decoration:underline}.bsui .btn-link:focus,.bsui .btn-link.focus{text-decoration:underline}.bsui .btn-link:disabled,.bsui .btn-link.disabled{color:#6c757d;pointer-events:none}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-block{display:block;width:100%}.bsui .btn-block+.btn-block{margin-top:.5rem}.bsui input[type="submit"].btn-block,.bsui input[type="reset"].btn-block,.bsui input[type="button"].btn-block{width:100%}.bsui .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.bsui .fade{transition:none}}.bsui .fade:not(.show){opacity:0}.bsui .collapse:not(.show){display:none}.bsui .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing{transition:none}}.bsui .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing.width{transition:none}}.bsui .dropup,.bsui .dropright,.bsui .dropdown,.bsui .dropleft{position:relative}.bsui .dropdown-toggle{white-space:nowrap}.bsui .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.bsui .dropdown-toggle:empty::after{margin-right:0}.bsui .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.bsui .dropdown-menu-left{right:auto;left:0}.bsui .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.bsui .dropdown-menu-sm-left{right:auto;left:0}.bsui .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.bsui .dropdown-menu-md-left{right:auto;left:0}.bsui .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.bsui .dropdown-menu-lg-left{right:auto;left:0}.bsui .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.bsui .dropdown-menu-xl-left{right:auto;left:0}.bsui .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.bsui .dropdown-menu-xxl-left{right:auto;left:0}.bsui .dropdown-menu-xxl-right{right:0;left:auto}}.bsui .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.bsui .dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.bsui .dropup .dropdown-toggle:empty::after{margin-right:0}.bsui .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.bsui .dropright .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.bsui .dropright .dropdown-toggle::after{display:none}.bsui .dropright .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.bsui .dropright .dropdown-toggle:empty::after{margin-right:0}.bsui .dropright .dropdown-toggle::before{vertical-align:0}.bsui .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.bsui .dropleft .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.bsui .dropleft .dropdown-toggle:empty::after{margin-right:0}.bsui .dropleft .dropdown-toggle::after{vertical-align:0}.bsui .dropdown-menu[x-placement^="top"],.bsui .dropdown-menu[x-placement^="right"],.bsui .dropdown-menu[x-placement^="bottom"],.bsui .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.bsui .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.bsui .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.bsui .dropdown-item:hover,.bsui .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.bsui .dropdown-item.active,.bsui .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.bsui .dropdown-item.disabled,.bsui .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.bsui .dropdown-menu.show{display:block}.bsui .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.bsui .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.bsui .btn-group,.bsui .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.bsui .btn-group>.btn,.bsui .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.bsui .btn-group>.btn:hover,.bsui .btn-group-vertical>.btn:hover{z-index:1}.bsui .btn-group>.btn:focus,.bsui .btn-group>.btn:active,.bsui .btn-group>.btn.active,.bsui .btn-group-vertical>.btn:focus,.bsui .btn-group-vertical>.btn:active,.bsui .btn-group-vertical>.btn.active{z-index:1}.bsui .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.bsui .btn-toolbar .input-group{width:auto}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child){margin-right:-1px}.bsui .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.bsui .dropdown-toggle-split::after,.dropup .bsui .dropdown-toggle-split::after,.dropright .bsui .dropdown-toggle-split::after{margin-right:0}.dropleft .bsui .dropdown-toggle-split::before{margin-left:0}.bsui .btn-sm+.dropdown-toggle-split,.bsui .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.bsui .btn-lg+.dropdown-toggle-split,.bsui .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.bsui .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.bsui .btn-group-vertical>.btn,.bsui .btn-group-vertical>.btn-group{width:100%}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.bsui .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.bsui .btn-group-toggle>.btn,.bsui .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.bsui .btn-group-toggle>.btn input[type="radio"],.bsui .btn-group-toggle>.btn input[type="checkbox"],.bsui .btn-group-toggle>.btn-group>.btn input[type="radio"],.bsui .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.bsui .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.bsui .input-group>.form-control,.bsui .input-group>.form-control-plaintext,.bsui .input-group>.custom-select,.bsui .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.bsui .input-group>.form-control+.form-control,.bsui .input-group>.form-control+.custom-select,.bsui .input-group>.form-control+.custom-file,.bsui .input-group>.form-control-plaintext+.form-control,.bsui .input-group>.form-control-plaintext+.custom-select,.bsui .input-group>.form-control-plaintext+.custom-file,.bsui .input-group>.custom-select+.form-control,.bsui .input-group>.custom-select+.custom-select,.bsui .input-group>.custom-select+.custom-file,.bsui .input-group>.custom-file+.form-control,.bsui .input-group>.custom-file+.custom-select,.bsui .input-group>.custom-file+.custom-file{margin-right:-1px}.bsui .input-group>.form-control:focus,.bsui .input-group>.custom-select:focus,.bsui .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.bsui .input-group>.custom-file .custom-file-input:focus{z-index:4}.bsui .input-group>.form-control:not(:first-child),.bsui .input-group>.custom-select:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.custom-file{display:flex;align-items:center}.bsui .input-group>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group:not(.has-validation)>.form-control:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-select:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group.has-validation>.form-control:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-select:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group-prepend,.bsui .input-group-append{display:flex}.bsui .input-group-prepend .btn,.bsui .input-group-append .btn{position:relative;z-index:2}.bsui .input-group-prepend .btn:focus,.bsui .input-group-append .btn:focus{z-index:3}.bsui .input-group-prepend .btn+.btn,.bsui .input-group-prepend .btn+.input-group-text,.bsui .input-group-prepend .input-group-text+.input-group-text,.bsui .input-group-prepend .input-group-text+.btn,.bsui .input-group-append .btn+.btn,.bsui .input-group-append .btn+.input-group-text,.bsui .input-group-append .input-group-text+.input-group-text,.bsui .input-group-append .input-group-text+.btn{margin-right:-1px}.bsui .input-group-prepend{margin-left:-1px}.bsui .input-group-append{margin-right:-1px}.bsui .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.bsui .input-group-text input[type="radio"],.bsui .input-group-text input[type="checkbox"]{margin-top:0}.bsui .input-group-lg>.form-control:not(textarea),.bsui .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.bsui .input-group-lg>.form-control,.bsui .input-group-lg>.custom-select,.bsui .input-group-lg>.input-group-prepend>.input-group-text,.bsui .input-group-lg>.input-group-append>.input-group-text,.bsui .input-group-lg>.input-group-prepend>.btn,.bsui .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .input-group-sm>.form-control:not(textarea),.bsui .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.bsui .input-group-sm>.form-control,.bsui .input-group-sm>.custom-select,.bsui .input-group-sm>.input-group-prepend>.input-group-text,.bsui .input-group-sm>.input-group-append>.input-group-text,.bsui .input-group-sm>.input-group-prepend>.btn,.bsui .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .input-group-lg>.custom-select,.bsui .input-group-sm>.custom-select{padding-left:2.2rem}.bsui .input-group>.input-group-prepend>.btn,.bsui .input-group>.input-group-prepend>.input-group-text,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.bsui .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.bsui .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.input-group-append>.btn,.bsui .input-group>.input-group-append>.input-group-text,.bsui .input-group>.input-group-prepend:not(:first-child)>.btn,.bsui .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.bsui .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.bsui .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-right:1.5rem;print-color-adjust:exact}.bsui .custom-control-inline{display:inline-flex;margin-left:1rem}.bsui .custom-control-input{position:absolute;right:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.bsui .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.bsui .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.bsui .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.bsui .custom-control-input[disabled] ~ .custom-control-label,.bsui .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.bsui .custom-control-input[disabled] ~ .custom-control-label::before,.bsui .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.bsui .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.bsui .custom-control-label::before{position:absolute;top:.3rem;right:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.bsui .custom-control-label::after{position:absolute;top:.3rem;right:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.bsui .custom-checkbox .custom-control-label::before{border-radius:.25rem}.bsui .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-radio .custom-control-label::before{border-radius:50%}.bsui .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.bsui .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-switch{padding-right:2.25rem}.bsui .custom-switch .custom-control-label::before{right:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.bsui .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);right:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-switch .custom-control-label::after{transition:none}}.bsui .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(-.75rem)}.bsui .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem .45rem 2.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.bsui .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.bsui .custom-select[multiple],.bsui .custom-select[size]:not([size="1"]){height:auto;padding-left:1.2rem;background-image:none}.bsui .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.bsui .custom-select::-ms-expand{display:none}.bsui .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-right:1rem;padding-bottom:.25rem;font-size:.875rem}.bsui .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-right:2rem;padding-bottom:.65rem;font-size:1.15rem}.bsui .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.bsui .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.bsui .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-file-input[disabled] ~ .custom-file-label,.bsui .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.bsui .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.bsui .custom-file-input:lang(fa) ~ .custom-file-label::after{content:"از فهرست"}.bsui .custom-file-input:lang(ar) ~ .custom-file-label::after{content:"تصفح"}.bsui .custom-file-input:lang(iw) ~ .custom-file-label::after{content:"דפדוף"}.bsui .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.bsui .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.bsui .custom-file-label::after{position:absolute;top:0;bottom:0;left:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-right:inherit;border-radius:.25rem 0 0 .25rem}.bsui .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.bsui .custom-range:focus{outline:0}.bsui .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range::-moz-focus-outer{border:0}.bsui .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-webkit-slider-thumb{transition:none}}.bsui .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-moz-range-thumb{transition:none}}.bsui .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-ms-thumb{transition:none}}.bsui .custom-range::-ms-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.bsui .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.bsui .custom-range::-ms-fill-upper{margin-left:15px;background-color:#dee2e6;border-radius:1rem}.bsui .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.bsui .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-moz-range-track{cursor:default}.bsui .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:none}}.bsui .nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.bsui .nav-link{display:block;padding:.8rem 1rem}.bsui .nav-link:hover,.bsui .nav-link:focus{text-decoration:none}.bsui .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.bsui .nav-tabs{border-bottom:1px solid #dee2e6}.bsui .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.bsui .nav-tabs .nav-link:hover,.bsui .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.bsui .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.bsui .nav-tabs .nav-link.active,.bsui .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.bsui .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.bsui .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.bsui .nav-pills .nav-link.active,.bsui .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.bsui .nav-fill>.nav-link,.bsui .nav-fill .nav-item{flex:1 1 auto;text-align:center}.bsui .nav-justified>.nav-link,.bsui .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.bsui .tab-content>.tab-pane{display:none}.bsui .tab-content>.active{display:block}.bsui .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.bsui .navbar .container,.bsui .navbar .container-fluid,.bsui .navbar .container-sm,.bsui .navbar .container-md,.bsui .navbar .container-lg,.bsui .navbar .container-xl,.bsui .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.bsui .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-left:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.bsui .navbar-brand:hover,.bsui .navbar-brand:focus{text-decoration:none}.bsui .navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.bsui .navbar-nav .nav-link{padding-right:0;padding-left:0}.bsui .navbar-nav .dropdown-menu{position:static;float:none}.bsui .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.bsui .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.bsui .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.bsui .navbar-toggler:hover,.bsui .navbar-toggler:focus{text-decoration:none}.bsui .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.bsui .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.bsui .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-sm .navbar-nav{flex-direction:row}.bsui .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.bsui .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-md .navbar-nav{flex-direction:row}.bsui .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-md .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.bsui .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-lg .navbar-nav{flex-direction:row}.bsui .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.bsui .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.bsui .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xxl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xxl .navbar-toggler{display:none}}.bsui .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.bsui .navbar-expand .navbar-nav{flex-direction:row}.bsui .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand .navbar-toggler{display:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-dark .navbar-brand{color:#fff}.bsui .navbar-dark .navbar-brand:hover,.bsui .navbar-dark .navbar-brand:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-nav .nav-link:hover,.bsui .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.bsui .navbar-dark .navbar-nav .show>.nav-link,.bsui .navbar-dark .navbar-nav .active>.nav-link,.bsui .navbar-dark .navbar-nav .nav-link.show,.bsui .navbar-dark .navbar-nav .nav-link.active{color:#fff}.bsui .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.bsui .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-text a{color:#fff}.bsui .navbar-dark .navbar-text a:hover,.bsui .navbar-dark .navbar-text a:focus{color:#fff}.bsui .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.bsui .card>hr{margin-right:0;margin-left:0}.bsui .card>.list-group{border-top:inherit;border-bottom:inherit}.bsui .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card>.card-header+.list-group,.bsui .card>.list-group+.card-footer{border-top:0}.bsui .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.bsui .card-title{margin-bottom:.75rem}.bsui .card-subtitle{margin-top:-.375rem;margin-bottom:0}.bsui .card-text:last-child{margin-bottom:0}.bsui .card-link:hover{text-decoration:none}.bsui .card-link+.card-link{margin-right:1.25rem}.bsui .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.bsui .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.bsui .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.bsui .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.bsui .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.bsui .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.bsui .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-top,.bsui .card-img-bottom{flex-shrink:0;width:100%}.bsui .card-img,.bsui .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.bsui .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.bsui .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-group{display:flex;flex-flow:row wrap}.bsui .card-group>.card{flex:1 0 0%;margin-bottom:0}.bsui .card-group>.card+.card{margin-right:0;border-right:0}.bsui .card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-top,.bsui .card-group>.card:not(:last-child) .card-header{border-top-left-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-bottom,.bsui .card-group>.card:not(:last-child) .card-footer{border-bottom-left-radius:0}.bsui .card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-top,.bsui .card-group>.card:not(:first-child) .card-header{border-top-right-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-bottom,.bsui .card-group>.card:not(:first-child) .card-footer{border-bottom-right-radius:0}}.bsui .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.bsui .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.bsui .card-columns .card{display:inline-block;width:100%}}.bsui .accordion{overflow-anchor:none}.bsui .accordion>.card{overflow:hidden}.bsui .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.bsui .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.bsui .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.bsui .breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.bsui .breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#6c757d;content:"/"}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.bsui .breadcrumb-item.active{color:#6c757d}.bsui .pagination{display:flex;padding-right:0;list-style:none;border-radius:.25rem}.bsui .page-link{position:relative;display:block;padding:.75rem 1rem;margin-right:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.bsui .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.bsui .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .page-item:first-child .page-link{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.bsui .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bsui .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.bsui .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.bsui .pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.bsui .pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.bsui .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.bsui .pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.bsui .pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.bsui .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .badge{transition:none}}.bsui a.badge:hover,.bsui a.badge:focus{text-decoration:none}.bsui .badge:empty{display:none}.bsui .btn .badge{position:relative;top:-1px}.bsui .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.bsui .badge-primary{color:#fff;background-color:#1e73be}.bsui a.badge-primary:hover,.bsui a.badge-primary:focus{color:#fff;background-color:#175892}.bsui a.badge-primary:focus,.bsui a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .badge-secondary{color:#fff;background-color:#6c757d}.bsui a.badge-secondary:hover,.bsui a.badge-secondary:focus{color:#fff;background-color:#545b62}.bsui a.badge-secondary:focus,.bsui a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-success{color:#fff;background-color:#44c553}.bsui a.badge-success:hover,.bsui a.badge-success:focus{color:#fff;background-color:#33a340}.bsui a.badge-success:focus,.bsui a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .badge-info{color:#fff;background-color:#17a2b8}.bsui a.badge-info:hover,.bsui a.badge-info:focus{color:#fff;background-color:#117a8b}.bsui a.badge-info:focus,.bsui a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .badge-warning{color:#212529;background-color:#ffc107}.bsui a.badge-warning:hover,.bsui a.badge-warning:focus{color:#212529;background-color:#d39e00}.bsui a.badge-warning:focus,.bsui a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .badge-danger{color:#fff;background-color:#dc3545}.bsui a.badge-danger:hover,.bsui a.badge-danger:focus{color:#fff;background-color:#bd2130}.bsui a.badge-danger:focus,.bsui a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .badge-light{color:#212529;background-color:#f8f9fa}.bsui a.badge-light:hover,.bsui a.badge-light:focus{color:#212529;background-color:#dae0e5}.bsui a.badge-light:focus,.bsui a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .badge-dark{color:#fff;background-color:#343a40}.bsui a.badge-dark:hover,.bsui a.badge-dark:focus{color:#fff;background-color:#1d2124}.bsui a.badge-dark:focus,.bsui a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .badge-white{color:#212529;background-color:#fff}.bsui a.badge-white:hover,.bsui a.badge-white:focus{color:#212529;background-color:#e6e6e6}.bsui a.badge-white:focus,.bsui a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .badge-purple{color:#fff;background-color:#ad6edd}.bsui a.badge-purple:hover,.bsui a.badge-purple:focus{color:#fff;background-color:#9645d3}.bsui a.badge-purple:focus,.bsui a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .badge-salmon{color:#212529;background-color:#ff977a}.bsui a.badge-salmon:hover,.bsui a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.bsui a.badge-salmon:focus,.bsui a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .badge-cyan{color:#212529;background-color:#35bdff}.bsui a.badge-cyan:hover,.bsui a.badge-cyan:focus{color:#212529;background-color:#02acff}.bsui a.badge-cyan:focus,.bsui a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .badge-gray{color:#212529;background-color:#ced4da}.bsui a.badge-gray:hover,.bsui a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.bsui a.badge-gray:focus,.bsui a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .badge-gray-dark{color:#fff;background-color:#6c757d}.bsui a.badge-gray-dark:hover,.bsui a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.bsui a.badge-gray-dark:focus,.bsui a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-indigo{color:#fff;background-color:#502c6c}.bsui a.badge-indigo:hover,.bsui a.badge-indigo:focus{color:#fff;background-color:#351d48}.bsui a.badge-indigo:focus,.bsui a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .badge-orange{color:#212529;background-color:#fbb500}.bsui a.badge-orange:hover,.bsui a.badge-orange:focus{color:#212529;background-color:#c89000}.bsui a.badge-orange:focus,.bsui a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.bsui .jumbotron{padding:4rem 2rem}}.bsui .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.bsui .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.bsui .alert-heading{color:inherit}.bsui .alert-link{font-weight:700}.bsui .alert-dismissible{padding-left:4rem}.bsui .alert-dismissible .close{position:absolute;top:0;left:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.bsui .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#175892}.bsui .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#545b62}.bsui .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#33a340}.bsui .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#117a8b}.bsui .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#d39e00}.bsui .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#bd2130}.bsui .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#dae0e5}.bsui .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#1d2124}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#9645d3}.bsui .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#ff6f47}.bsui .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#02acff}.bsui .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#b1bbc4}.bsui .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#545b62}.bsui .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#351d48}.bsui .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.bsui .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.bsui .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .progress-bar{transition:none}}.bsui .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.bsui .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.bsui .progress-bar-animated{animation:none}}.bsui .media{display:flex;align-items:flex-start}.bsui .media-body{flex:1}.bsui .list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.25rem}.bsui .list-group-item-action{width:100%;color:#495057;text-align:inherit}.bsui .list-group-item-action:hover,.bsui .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.bsui .list-group-item-action:active{color:#212529;background-color:#e9ecef}.bsui .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.bsui .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.bsui .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.bsui .list-group-item.disabled,.bsui .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.bsui .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .list-group-item+.list-group-item{border-top-width:0}.bsui .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.bsui .list-group-horizontal{flex-direction:row}.bsui .list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media (min-width: 576px){.bsui .list-group-horizontal-sm{flex-direction:row}.bsui .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 768px){.bsui .list-group-horizontal-md{flex-direction:row}.bsui .list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-md>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 992px){.bsui .list-group-horizontal-lg{flex-direction:row}.bsui .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 1200px){.bsui .list-group-horizontal-xl{flex-direction:row}.bsui .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width: 1400px){.bsui .list-group-horizontal-xxl{flex-direction:row}.bsui .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}.bsui .list-group-flush{border-radius:0}.bsui .list-group-flush>.list-group-item{border-width:0 0 1px}.bsui .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.bsui .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.bsui .list-group-item-primary.list-group-item-action:hover,.bsui .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.bsui .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.bsui .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-secondary.list-group-item-action:hover,.bsui .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-success{color:#23662b;background-color:#cbefcf}.bsui .list-group-item-success.list-group-item-action:hover,.bsui .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.bsui .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.bsui .list-group-item-info{color:#0c5460;background-color:#bee5eb}.bsui .list-group-item-info.list-group-item-action:hover,.bsui .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.bsui .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.bsui .list-group-item-warning{color:#856404;background-color:#ffeeba}.bsui .list-group-item-warning.list-group-item-action:hover,.bsui .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.bsui .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.bsui .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.bsui .list-group-item-danger.list-group-item-action:hover,.bsui .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.bsui .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.bsui .list-group-item-light{color:#818182;background-color:#fdfdfe}.bsui .list-group-item-light.list-group-item-action:hover,.bsui .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.bsui .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.bsui .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.bsui .list-group-item-dark.list-group-item-action:hover,.bsui .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.bsui .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.bsui .list-group-item-white{color:#858585;background-color:#fff}.bsui .list-group-item-white.list-group-item-action:hover,.bsui .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.bsui .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.bsui .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.bsui .list-group-item-purple.list-group-item-action:hover,.bsui .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.bsui .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.bsui .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.bsui .list-group-item-salmon.list-group-item-action:hover,.bsui .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.bsui .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.bsui .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.bsui .list-group-item-cyan.list-group-item-action:hover,.bsui .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.bsui .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.bsui .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.bsui .list-group-item-gray.list-group-item-action:hover,.bsui .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.bsui .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.bsui .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-gray-dark.list-group-item-action:hover,.bsui .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.bsui .list-group-item-indigo.list-group-item-action:hover,.bsui .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.bsui .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.bsui .list-group-item-orange{color:#835e00;background-color:#feeab8}.bsui .list-group-item-orange.list-group-item-action:hover,.bsui .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.bsui .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.bsui .close{float:left;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.bsui .close:hover{color:#000;text-decoration:none}.bsui .close:not(:disabled):not(.disabled):hover,.bsui .close:not(:disabled):not(.disabled):focus{opacity:.75}.bsui button.close{padding:0;background-color:transparent;border:0}.bsui a.close.disabled{pointer-events:none}.bsui .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.bsui .toast:not(:last-child){margin-bottom:.75rem}.bsui .toast.showing{opacity:1}.bsui .toast.show{display:block;opacity:1}.bsui .toast.hide{display:none}.bsui .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .toast-body{padding:.75rem}.bsui .modal-open{overflow:hidden}.bsui .modal-open .modal{overflow-x:hidden;overflow-y:auto}.bsui .modal{position:fixed;top:0;right:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.bsui .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .bsui .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .bsui .modal-dialog{transition:none}}.modal.show .bsui .modal-dialog{transform:none}.modal.modal-static .bsui .modal-dialog{transform:scale(1.02)}.bsui .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.bsui .modal-dialog-scrollable .modal-header,.bsui .modal-dialog-scrollable .modal-footer{flex-shrink:0}.bsui .modal-dialog-scrollable .modal-body{overflow-y:auto}.bsui .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.bsui .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.bsui .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.bsui .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.bsui .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.bsui .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.bsui .modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.bsui .modal-backdrop.fade{opacity:0}.bsui .modal-backdrop.show{opacity:.5}.bsui .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .modal-header .close{padding:1rem 1rem;margin:-1rem auto -1rem -1rem}.bsui .modal-title{margin-bottom:0;line-height:1.6}.bsui .modal-body{position:relative;flex:1 1 auto;padding:1rem}.bsui .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.bsui .modal-footer>*{margin:.25rem}.bsui .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.bsui .modal-dialog{max-width:500px;margin:1.75rem auto}.bsui .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.bsui .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.bsui .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.bsui .modal-sm{max-width:300px}}@media (min-width: 992px){.bsui .modal-lg,.bsui .modal-xl{max-width:800px}}@media (min-width: 1200px){.bsui .modal-xl{max-width:1140px}}.bsui .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.bsui .tooltip.show{opacity:.9}.bsui .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.bsui .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bsui .bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bsui .bs-tooltip-top .arrow,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bsui .bs-tooltip-top .arrow::before,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bsui .bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bsui .bs-tooltip-right .arrow,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-right .arrow::before,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bsui .bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bsui .bs-tooltip-bottom .arrow,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bsui .bs-tooltip-bottom .arrow::before,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bsui .bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bsui .bs-tooltip-left .arrow,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-left .arrow::before,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bsui .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.bsui .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.bsui .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.bsui .popover .arrow::before,.bsui .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bsui .bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bsui .bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bsui .bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bsui .bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bsui .bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bsui .bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bsui .bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bsui .bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bsui .bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bsui .bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bsui .bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bsui .bs-popover-bottom .popover-header::before,.bsui .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bsui .bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bsui .bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bsui .bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bsui .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .popover-header:empty{display:none}.bsui .popover-body{padding:.5rem .75rem;color:#212529}.bsui .carousel{position:relative}.bsui .carousel.pointer-event{touch-action:pan-y}.bsui .carousel-inner{position:relative;width:100%;overflow:hidden}.bsui .carousel-inner::after{display:block;clear:both;content:""}.bsui .carousel-item{position:relative;display:none;float:right;width:100%;margin-left:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .carousel-item{transition:none}}.bsui .carousel-item.active,.bsui .carousel-item-next,.bsui .carousel-item-prev{display:block}.bsui .carousel-item-next:not(.carousel-item-left),.bsui .active.carousel-item-right{transform:translateX(-100%)}.bsui .carousel-item-prev:not(.carousel-item-right),.bsui .active.carousel-item-left{transform:translateX(100%)}.bsui .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.bsui .carousel-fade .carousel-item.active,.bsui .carousel-fade .carousel-item-next.carousel-item-left,.bsui .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{transition:none}}.bsui .carousel-control-prev,.bsui .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-control-prev,.bsui .carousel-control-next{transition:none}}.bsui .carousel-control-prev:hover,.bsui .carousel-control-prev:focus,.bsui .carousel-control-next:hover,.bsui .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.bsui .carousel-control-prev{right:0}.bsui .carousel-control-next{left:0}.bsui .carousel-control-prev-icon,.bsui .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.bsui .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.bsui .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.bsui .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-right:0;margin-right:15%;margin-left:15%;list-style:none}.bsui .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-indicators li{transition:none}}.bsui .carousel-indicators .active{opacity:1}.bsui .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.bsui .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-left-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.bsui .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.bsui .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.bsui .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.bsui .spinner-border,.bsui .spinner-grow{animation-duration:1.5s}}.bsui .align-baseline{vertical-align:baseline !important}.bsui .align-top{vertical-align:top !important}.bsui .align-middle{vertical-align:middle !important}.bsui .align-bottom{vertical-align:bottom !important}.bsui .align-text-bottom{vertical-align:text-bottom !important}.bsui .align-text-top{vertical-align:text-top !important}.bsui .bg-primary{background-color:#1e73be !important}.bsui a.bg-primary:hover,.bsui a.bg-primary:focus,.bsui button.bg-primary:hover,.bsui button.bg-primary:focus{background-color:#175892 !important}.bsui .bg-secondary{background-color:#6c757d !important}.bsui a.bg-secondary:hover,.bsui a.bg-secondary:focus,.bsui button.bg-secondary:hover,.bsui button.bg-secondary:focus{background-color:#545b62 !important}.bsui .bg-success{background-color:#44c553 !important}.bsui a.bg-success:hover,.bsui a.bg-success:focus,.bsui button.bg-success:hover,.bsui button.bg-success:focus{background-color:#33a340 !important}.bsui .bg-info{background-color:#17a2b8 !important}.bsui a.bg-info:hover,.bsui a.bg-info:focus,.bsui button.bg-info:hover,.bsui button.bg-info:focus{background-color:#117a8b !important}.bsui .bg-warning{background-color:#ffc107 !important}.bsui a.bg-warning:hover,.bsui a.bg-warning:focus,.bsui button.bg-warning:hover,.bsui button.bg-warning:focus{background-color:#d39e00 !important}.bsui .bg-danger{background-color:#dc3545 !important}.bsui a.bg-danger:hover,.bsui a.bg-danger:focus,.bsui button.bg-danger:hover,.bsui button.bg-danger:focus{background-color:#bd2130 !important}.bsui .bg-light{background-color:#f8f9fa !important}.bsui a.bg-light:hover,.bsui a.bg-light:focus,.bsui button.bg-light:hover,.bsui button.bg-light:focus{background-color:#dae0e5 !important}.bsui .bg-dark{background-color:#343a40 !important}.bsui a.bg-dark:hover,.bsui a.bg-dark:focus,.bsui button.bg-dark:hover,.bsui button.bg-dark:focus{background-color:#1d2124 !important}.bsui .bg-white{background-color:#fff !important}.bsui a.bg-white:hover,.bsui a.bg-white:focus,.bsui button.bg-white:hover,.bsui button.bg-white:focus{background-color:#e6e6e6 !important}.bsui .bg-purple{background-color:#ad6edd !important}.bsui a.bg-purple:hover,.bsui a.bg-purple:focus,.bsui button.bg-purple:hover,.bsui button.bg-purple:focus{background-color:#9645d3 !important}.bsui .bg-salmon{background-color:#ff977a !important}.bsui a.bg-salmon:hover,.bsui a.bg-salmon:focus,.bsui button.bg-salmon:hover,.bsui button.bg-salmon:focus{background-color:#ff6f47 !important}.bsui .bg-cyan{background-color:#35bdff !important}.bsui a.bg-cyan:hover,.bsui a.bg-cyan:focus,.bsui button.bg-cyan:hover,.bsui button.bg-cyan:focus{background-color:#02acff !important}.bsui .bg-gray{background-color:#ced4da !important}.bsui a.bg-gray:hover,.bsui a.bg-gray:focus,.bsui button.bg-gray:hover,.bsui button.bg-gray:focus{background-color:#b1bbc4 !important}.bsui .bg-gray-dark{background-color:#6c757d !important}.bsui a.bg-gray-dark:hover,.bsui a.bg-gray-dark:focus,.bsui button.bg-gray-dark:hover,.bsui button.bg-gray-dark:focus{background-color:#545b62 !important}.bsui .bg-indigo{background-color:#502c6c !important}.bsui a.bg-indigo:hover,.bsui a.bg-indigo:focus,.bsui button.bg-indigo:hover,.bsui button.bg-indigo:focus{background-color:#351d48 !important}.bsui .bg-orange{background-color:#fbb500 !important}.bsui a.bg-orange:hover,.bsui a.bg-orange:focus,.bsui button.bg-orange:hover,.bsui button.bg-orange:focus{background-color:#c89000 !important}.bsui .bg-white{background-color:#fff !important}.bsui .bg-transparent{background-color:transparent !important}.bsui .border{border:1px solid #dee2e6 !important}.bsui .border-top{border-top:1px solid #dee2e6 !important}.bsui .border-right{border-right:1px solid #dee2e6 !important}.bsui .border-bottom{border-bottom:1px solid #dee2e6 !important}.bsui .border-left{border-left:1px solid #dee2e6 !important}.bsui .border-0{border:0 !important}.bsui .border-top-0{border-top:0 !important}.bsui .border-right-0{border-right:0 !important}.bsui .border-bottom-0{border-bottom:0 !important}.bsui .border-left-0{border-left:0 !important}.bsui .border-primary{border-color:#1e73be !important}.bsui .border-secondary{border-color:#6c757d !important}.bsui .border-success{border-color:#44c553 !important}.bsui .border-info{border-color:#17a2b8 !important}.bsui .border-warning{border-color:#ffc107 !important}.bsui .border-danger{border-color:#dc3545 !important}.bsui .border-light{border-color:#f8f9fa !important}.bsui .border-dark{border-color:#343a40 !important}.bsui .border-white{border-color:#fff !important}.bsui .border-purple{border-color:#ad6edd !important}.bsui .border-salmon{border-color:#ff977a !important}.bsui .border-cyan{border-color:#35bdff !important}.bsui .border-gray{border-color:#ced4da !important}.bsui .border-gray-dark{border-color:#6c757d !important}.bsui .border-indigo{border-color:#502c6c !important}.bsui .border-orange{border-color:#fbb500 !important}.bsui .border-white{border-color:#fff !important}.bsui .rounded-sm{border-radius:.2rem !important}.bsui .rounded{border-radius:.25rem !important}.bsui .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.bsui .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.bsui .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-lg{border-radius:.3rem !important}.bsui .rounded-circle{border-radius:50% !important}.bsui .rounded-pill{border-radius:50rem !important}.bsui .rounded-0{border-radius:0 !important}.bsui .clearfix::after{display:block;clear:both;content:""}.bsui .d-none{display:none !important}.bsui .d-inline{display:inline !important}.bsui .d-inline-block{display:inline-block !important}.bsui .d-block{display:block !important}.bsui .d-table{display:table !important}.bsui .d-table-row{display:table-row !important}.bsui .d-table-cell{display:table-cell !important}.bsui .d-flex{display:flex !important}.bsui .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.bsui .d-sm-none{display:none !important}.bsui .d-sm-inline{display:inline !important}.bsui .d-sm-inline-block{display:inline-block !important}.bsui .d-sm-block{display:block !important}.bsui .d-sm-table{display:table !important}.bsui .d-sm-table-row{display:table-row !important}.bsui .d-sm-table-cell{display:table-cell !important}.bsui .d-sm-flex{display:flex !important}.bsui .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.bsui .d-md-none{display:none !important}.bsui .d-md-inline{display:inline !important}.bsui .d-md-inline-block{display:inline-block !important}.bsui .d-md-block{display:block !important}.bsui .d-md-table{display:table !important}.bsui .d-md-table-row{display:table-row !important}.bsui .d-md-table-cell{display:table-cell !important}.bsui .d-md-flex{display:flex !important}.bsui .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.bsui .d-lg-none{display:none !important}.bsui .d-lg-inline{display:inline !important}.bsui .d-lg-inline-block{display:inline-block !important}.bsui .d-lg-block{display:block !important}.bsui .d-lg-table{display:table !important}.bsui .d-lg-table-row{display:table-row !important}.bsui .d-lg-table-cell{display:table-cell !important}.bsui .d-lg-flex{display:flex !important}.bsui .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.bsui .d-xl-none{display:none !important}.bsui .d-xl-inline{display:inline !important}.bsui .d-xl-inline-block{display:inline-block !important}.bsui .d-xl-block{display:block !important}.bsui .d-xl-table{display:table !important}.bsui .d-xl-table-row{display:table-row !important}.bsui .d-xl-table-cell{display:table-cell !important}.bsui .d-xl-flex{display:flex !important}.bsui .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.bsui .d-xxl-none{display:none !important}.bsui .d-xxl-inline{display:inline !important}.bsui .d-xxl-inline-block{display:inline-block !important}.bsui .d-xxl-block{display:block !important}.bsui .d-xxl-table{display:table !important}.bsui .d-xxl-table-row{display:table-row !important}.bsui .d-xxl-table-cell{display:table-cell !important}.bsui .d-xxl-flex{display:flex !important}.bsui .d-xxl-inline-flex{display:inline-flex !important}}@media print{.bsui .d-print-none{display:none !important}.bsui .d-print-inline{display:inline !important}.bsui .d-print-inline-block{display:inline-block !important}.bsui .d-print-block{display:block !important}.bsui .d-print-table{display:table !important}.bsui .d-print-table-row{display:table-row !important}.bsui .d-print-table-cell{display:table-cell !important}.bsui .d-print-flex{display:flex !important}.bsui .d-print-inline-flex{display:inline-flex !important}}.bsui .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.bsui .embed-responsive::before{display:block;content:""}.bsui .embed-responsive .embed-responsive-item,.bsui .embed-responsive iframe,.bsui .embed-responsive embed,.bsui .embed-responsive object,.bsui .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.bsui .embed-responsive-21by9::before{padding-top:42.85714286%}.bsui .embed-responsive-16by9::before{padding-top:56.25%}.bsui .embed-responsive-4by3::before{padding-top:75%}.bsui .embed-responsive-1by1::before{padding-top:100%}.bsui .flex-row{flex-direction:row !important}.bsui .flex-column{flex-direction:column !important}.bsui .flex-row-reverse{flex-direction:row-reverse !important}.bsui .flex-column-reverse{flex-direction:column-reverse !important}.bsui .flex-wrap{flex-wrap:wrap !important}.bsui .flex-nowrap{flex-wrap:nowrap !important}.bsui .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-fill{flex:1 1 auto !important}.bsui .flex-grow-0{flex-grow:0 !important}.bsui .flex-grow-1{flex-grow:1 !important}.bsui .flex-shrink-0{flex-shrink:0 !important}.bsui .flex-shrink-1{flex-shrink:1 !important}.bsui .justify-content-start{justify-content:flex-start !important}.bsui .justify-content-end{justify-content:flex-end !important}.bsui .justify-content-center{justify-content:center !important}.bsui .justify-content-between{justify-content:space-between !important}.bsui .justify-content-around{justify-content:space-around !important}.bsui .align-items-start{align-items:flex-start !important}.bsui .align-items-end{align-items:flex-end !important}.bsui .align-items-center{align-items:center !important}.bsui .align-items-baseline{align-items:baseline !important}.bsui .align-items-stretch{align-items:stretch !important}.bsui .align-content-start{align-content:flex-start !important}.bsui .align-content-end{align-content:flex-end !important}.bsui .align-content-center{align-content:center !important}.bsui .align-content-between{align-content:space-between !important}.bsui .align-content-around{align-content:space-around !important}.bsui .align-content-stretch{align-content:stretch !important}.bsui .align-self-auto{align-self:auto !important}.bsui .align-self-start{align-self:flex-start !important}.bsui .align-self-end{align-self:flex-end !important}.bsui .align-self-center{align-self:center !important}.bsui .align-self-baseline{align-self:baseline !important}.bsui .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.bsui .flex-sm-row{flex-direction:row !important}.bsui .flex-sm-column{flex-direction:column !important}.bsui .flex-sm-row-reverse{flex-direction:row-reverse !important}.bsui .flex-sm-column-reverse{flex-direction:column-reverse !important}.bsui .flex-sm-wrap{flex-wrap:wrap !important}.bsui .flex-sm-nowrap{flex-wrap:nowrap !important}.bsui .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-sm-fill{flex:1 1 auto !important}.bsui .flex-sm-grow-0{flex-grow:0 !important}.bsui .flex-sm-grow-1{flex-grow:1 !important}.bsui .flex-sm-shrink-0{flex-shrink:0 !important}.bsui .flex-sm-shrink-1{flex-shrink:1 !important}.bsui .justify-content-sm-start{justify-content:flex-start !important}.bsui .justify-content-sm-end{justify-content:flex-end !important}.bsui .justify-content-sm-center{justify-content:center !important}.bsui .justify-content-sm-between{justify-content:space-between !important}.bsui .justify-content-sm-around{justify-content:space-around !important}.bsui .align-items-sm-start{align-items:flex-start !important}.bsui .align-items-sm-end{align-items:flex-end !important}.bsui .align-items-sm-center{align-items:center !important}.bsui .align-items-sm-baseline{align-items:baseline !important}.bsui .align-items-sm-stretch{align-items:stretch !important}.bsui .align-content-sm-start{align-content:flex-start !important}.bsui .align-content-sm-end{align-content:flex-end !important}.bsui .align-content-sm-center{align-content:center !important}.bsui .align-content-sm-between{align-content:space-between !important}.bsui .align-content-sm-around{align-content:space-around !important}.bsui .align-content-sm-stretch{align-content:stretch !important}.bsui .align-self-sm-auto{align-self:auto !important}.bsui .align-self-sm-start{align-self:flex-start !important}.bsui .align-self-sm-end{align-self:flex-end !important}.bsui .align-self-sm-center{align-self:center !important}.bsui .align-self-sm-baseline{align-self:baseline !important}.bsui .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.bsui .flex-md-row{flex-direction:row !important}.bsui .flex-md-column{flex-direction:column !important}.bsui .flex-md-row-reverse{flex-direction:row-reverse !important}.bsui .flex-md-column-reverse{flex-direction:column-reverse !important}.bsui .flex-md-wrap{flex-wrap:wrap !important}.bsui .flex-md-nowrap{flex-wrap:nowrap !important}.bsui .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-md-fill{flex:1 1 auto !important}.bsui .flex-md-grow-0{flex-grow:0 !important}.bsui .flex-md-grow-1{flex-grow:1 !important}.bsui .flex-md-shrink-0{flex-shrink:0 !important}.bsui .flex-md-shrink-1{flex-shrink:1 !important}.bsui .justify-content-md-start{justify-content:flex-start !important}.bsui .justify-content-md-end{justify-content:flex-end !important}.bsui .justify-content-md-center{justify-content:center !important}.bsui .justify-content-md-between{justify-content:space-between !important}.bsui .justify-content-md-around{justify-content:space-around !important}.bsui .align-items-md-start{align-items:flex-start !important}.bsui .align-items-md-end{align-items:flex-end !important}.bsui .align-items-md-center{align-items:center !important}.bsui .align-items-md-baseline{align-items:baseline !important}.bsui .align-items-md-stretch{align-items:stretch !important}.bsui .align-content-md-start{align-content:flex-start !important}.bsui .align-content-md-end{align-content:flex-end !important}.bsui .align-content-md-center{align-content:center !important}.bsui .align-content-md-between{align-content:space-between !important}.bsui .align-content-md-around{align-content:space-around !important}.bsui .align-content-md-stretch{align-content:stretch !important}.bsui .align-self-md-auto{align-self:auto !important}.bsui .align-self-md-start{align-self:flex-start !important}.bsui .align-self-md-end{align-self:flex-end !important}.bsui .align-self-md-center{align-self:center !important}.bsui .align-self-md-baseline{align-self:baseline !important}.bsui .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.bsui .flex-lg-row{flex-direction:row !important}.bsui .flex-lg-column{flex-direction:column !important}.bsui .flex-lg-row-reverse{flex-direction:row-reverse !important}.bsui .flex-lg-column-reverse{flex-direction:column-reverse !important}.bsui .flex-lg-wrap{flex-wrap:wrap !important}.bsui .flex-lg-nowrap{flex-wrap:nowrap !important}.bsui .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-lg-fill{flex:1 1 auto !important}.bsui .flex-lg-grow-0{flex-grow:0 !important}.bsui .flex-lg-grow-1{flex-grow:1 !important}.bsui .flex-lg-shrink-0{flex-shrink:0 !important}.bsui .flex-lg-shrink-1{flex-shrink:1 !important}.bsui .justify-content-lg-start{justify-content:flex-start !important}.bsui .justify-content-lg-end{justify-content:flex-end !important}.bsui .justify-content-lg-center{justify-content:center !important}.bsui .justify-content-lg-between{justify-content:space-between !important}.bsui .justify-content-lg-around{justify-content:space-around !important}.bsui .align-items-lg-start{align-items:flex-start !important}.bsui .align-items-lg-end{align-items:flex-end !important}.bsui .align-items-lg-center{align-items:center !important}.bsui .align-items-lg-baseline{align-items:baseline !important}.bsui .align-items-lg-stretch{align-items:stretch !important}.bsui .align-content-lg-start{align-content:flex-start !important}.bsui .align-content-lg-end{align-content:flex-end !important}.bsui .align-content-lg-center{align-content:center !important}.bsui .align-content-lg-between{align-content:space-between !important}.bsui .align-content-lg-around{align-content:space-around !important}.bsui .align-content-lg-stretch{align-content:stretch !important}.bsui .align-self-lg-auto{align-self:auto !important}.bsui .align-self-lg-start{align-self:flex-start !important}.bsui .align-self-lg-end{align-self:flex-end !important}.bsui .align-self-lg-center{align-self:center !important}.bsui .align-self-lg-baseline{align-self:baseline !important}.bsui .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.bsui .flex-xl-row{flex-direction:row !important}.bsui .flex-xl-column{flex-direction:column !important}.bsui .flex-xl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xl-wrap{flex-wrap:wrap !important}.bsui .flex-xl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xl-fill{flex:1 1 auto !important}.bsui .flex-xl-grow-0{flex-grow:0 !important}.bsui .flex-xl-grow-1{flex-grow:1 !important}.bsui .flex-xl-shrink-0{flex-shrink:0 !important}.bsui .flex-xl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xl-start{justify-content:flex-start !important}.bsui .justify-content-xl-end{justify-content:flex-end !important}.bsui .justify-content-xl-center{justify-content:center !important}.bsui .justify-content-xl-between{justify-content:space-between !important}.bsui .justify-content-xl-around{justify-content:space-around !important}.bsui .align-items-xl-start{align-items:flex-start !important}.bsui .align-items-xl-end{align-items:flex-end !important}.bsui .align-items-xl-center{align-items:center !important}.bsui .align-items-xl-baseline{align-items:baseline !important}.bsui .align-items-xl-stretch{align-items:stretch !important}.bsui .align-content-xl-start{align-content:flex-start !important}.bsui .align-content-xl-end{align-content:flex-end !important}.bsui .align-content-xl-center{align-content:center !important}.bsui .align-content-xl-between{align-content:space-between !important}.bsui .align-content-xl-around{align-content:space-around !important}.bsui .align-content-xl-stretch{align-content:stretch !important}.bsui .align-self-xl-auto{align-self:auto !important}.bsui .align-self-xl-start{align-self:flex-start !important}.bsui .align-self-xl-end{align-self:flex-end !important}.bsui .align-self-xl-center{align-self:center !important}.bsui .align-self-xl-baseline{align-self:baseline !important}.bsui .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.bsui .flex-xxl-row{flex-direction:row !important}.bsui .flex-xxl-column{flex-direction:column !important}.bsui .flex-xxl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xxl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xxl-wrap{flex-wrap:wrap !important}.bsui .flex-xxl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xxl-fill{flex:1 1 auto !important}.bsui .flex-xxl-grow-0{flex-grow:0 !important}.bsui .flex-xxl-grow-1{flex-grow:1 !important}.bsui .flex-xxl-shrink-0{flex-shrink:0 !important}.bsui .flex-xxl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xxl-start{justify-content:flex-start !important}.bsui .justify-content-xxl-end{justify-content:flex-end !important}.bsui .justify-content-xxl-center{justify-content:center !important}.bsui .justify-content-xxl-between{justify-content:space-between !important}.bsui .justify-content-xxl-around{justify-content:space-around !important}.bsui .align-items-xxl-start{align-items:flex-start !important}.bsui .align-items-xxl-end{align-items:flex-end !important}.bsui .align-items-xxl-center{align-items:center !important}.bsui .align-items-xxl-baseline{align-items:baseline !important}.bsui .align-items-xxl-stretch{align-items:stretch !important}.bsui .align-content-xxl-start{align-content:flex-start !important}.bsui .align-content-xxl-end{align-content:flex-end !important}.bsui .align-content-xxl-center{align-content:center !important}.bsui .align-content-xxl-between{align-content:space-between !important}.bsui .align-content-xxl-around{align-content:space-around !important}.bsui .align-content-xxl-stretch{align-content:stretch !important}.bsui .align-self-xxl-auto{align-self:auto !important}.bsui .align-self-xxl-start{align-self:flex-start !important}.bsui .align-self-xxl-end{align-self:flex-end !important}.bsui .align-self-xxl-center{align-self:center !important}.bsui .align-self-xxl-baseline{align-self:baseline !important}.bsui .align-self-xxl-stretch{align-self:stretch !important}}.bsui .float-left{float:left !important}.bsui .float-right{float:right !important}.bsui .float-none{float:none !important}@media (min-width: 576px){.bsui .float-sm-left{float:left !important}.bsui .float-sm-right{float:right !important}.bsui .float-sm-none{float:none !important}}@media (min-width: 768px){.bsui .float-md-left{float:left !important}.bsui .float-md-right{float:right !important}.bsui .float-md-none{float:none !important}}@media (min-width: 992px){.bsui .float-lg-left{float:left !important}.bsui .float-lg-right{float:right !important}.bsui .float-lg-none{float:none !important}}@media (min-width: 1200px){.bsui .float-xl-left{float:left !important}.bsui .float-xl-right{float:right !important}.bsui .float-xl-none{float:none !important}}@media (min-width: 1400px){.bsui .float-xxl-left{float:left !important}.bsui .float-xxl-right{float:right !important}.bsui .float-xxl-none{float:none !important}}.bsui .user-select-all{user-select:all !important}.bsui .user-select-auto{user-select:auto !important}.bsui .user-select-none{user-select:none !important}.bsui .overflow-auto{overflow:auto !important}.bsui .overflow-hidden{overflow:hidden !important}.bsui .position-static{position:static !important}.bsui .position-relative{position:relative !important}.bsui .position-absolute{position:absolute !important}.bsui .position-fixed{position:fixed !important}.bsui .position-sticky{position:sticky !important}.bsui .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.bsui .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.bsui .sticky-top{position:sticky;top:0;z-index:1020}}.bsui .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.bsui .sr-only-focusable:active,.bsui .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.bsui .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.bsui .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.bsui .shadow-none{box-shadow:none !important}.bsui .w-25{width:25% !important}.bsui .w-50{width:50% !important}.bsui .w-75{width:75% !important}.bsui .w-100{width:100% !important}.bsui .w-auto{width:auto !important}.bsui .h-25{height:25% !important}.bsui .h-50{height:50% !important}.bsui .h-75{height:75% !important}.bsui .h-100{height:100% !important}.bsui .h-auto{height:auto !important}.bsui .mw-100{max-width:100% !important}.bsui .mh-100{max-height:100% !important}.bsui .min-vw-100{min-width:100vw !important}.bsui .min-vh-100{min-height:100vh !important}.bsui .vw-100{width:100vw !important}.bsui .vh-100{height:100vh !important}.bsui .m-0{margin:0 !important}.bsui .mt-0,.bsui .my-0{margin-top:0 !important}.bsui .mr-0,.bsui .mx-0{margin-right:0 !important}.bsui .mb-0,.bsui .my-0{margin-bottom:0 !important}.bsui .ml-0,.bsui .mx-0{margin-left:0 !important}.bsui .m-1{margin:.25rem !important}.bsui .mt-1,.bsui .my-1{margin-top:.25rem !important}.bsui .mr-1,.bsui .mx-1{margin-right:.25rem !important}.bsui .mb-1,.bsui .my-1{margin-bottom:.25rem !important}.bsui .ml-1,.bsui .mx-1{margin-left:.25rem !important}.bsui .m-2{margin:.5rem !important}.bsui .mt-2,.bsui .my-2{margin-top:.5rem !important}.bsui .mr-2,.bsui .mx-2{margin-right:.5rem !important}.bsui .mb-2,.bsui .my-2{margin-bottom:.5rem !important}.bsui .ml-2,.bsui .mx-2{margin-left:.5rem !important}.bsui .m-3{margin:1rem !important}.bsui .mt-3,.bsui .my-3{margin-top:1rem !important}.bsui .mr-3,.bsui .mx-3{margin-right:1rem !important}.bsui .mb-3,.bsui .my-3{margin-bottom:1rem !important}.bsui .ml-3,.bsui .mx-3{margin-left:1rem !important}.bsui .m-4{margin:1.5rem !important}.bsui .mt-4,.bsui .my-4{margin-top:1.5rem !important}.bsui .mr-4,.bsui .mx-4{margin-right:1.5rem !important}.bsui .mb-4,.bsui .my-4{margin-bottom:1.5rem !important}.bsui .ml-4,.bsui .mx-4{margin-left:1.5rem !important}.bsui .m-5{margin:3rem !important}.bsui .mt-5,.bsui .my-5{margin-top:3rem !important}.bsui .mr-5,.bsui .mx-5{margin-right:3rem !important}.bsui .mb-5,.bsui .my-5{margin-bottom:3rem !important}.bsui .ml-5,.bsui .mx-5{margin-left:3rem !important}.bsui .m-6{margin:4rem !important}.bsui .mt-6,.bsui .my-6{margin-top:4rem !important}.bsui .mr-6,.bsui .mx-6{margin-right:4rem !important}.bsui .mb-6,.bsui .my-6{margin-bottom:4rem !important}.bsui .ml-6,.bsui .mx-6{margin-left:4rem !important}.bsui .m-7{margin:6rem !important}.bsui .mt-7,.bsui .my-7{margin-top:6rem !important}.bsui .mr-7,.bsui .mx-7{margin-right:6rem !important}.bsui .mb-7,.bsui .my-7{margin-bottom:6rem !important}.bsui .ml-7,.bsui .mx-7{margin-left:6rem !important}.bsui .m-8{margin:8rem !important}.bsui .mt-8,.bsui .my-8{margin-top:8rem !important}.bsui .mr-8,.bsui .mx-8{margin-right:8rem !important}.bsui .mb-8,.bsui .my-8{margin-bottom:8rem !important}.bsui .ml-8,.bsui .mx-8{margin-left:8rem !important}.bsui .m-9{margin:10rem !important}.bsui .mt-9,.bsui .my-9{margin-top:10rem !important}.bsui .mr-9,.bsui .mx-9{margin-right:10rem !important}.bsui .mb-9,.bsui .my-9{margin-bottom:10rem !important}.bsui .ml-9,.bsui .mx-9{margin-left:10rem !important}.bsui .m-10{margin:12rem !important}.bsui .mt-10,.bsui .my-10{margin-top:12rem !important}.bsui .mr-10,.bsui .mx-10{margin-right:12rem !important}.bsui .mb-10,.bsui .my-10{margin-bottom:12rem !important}.bsui .ml-10,.bsui .mx-10{margin-left:12rem !important}.bsui .m-11{margin:14rem !important}.bsui .mt-11,.bsui .my-11{margin-top:14rem !important}.bsui .mr-11,.bsui .mx-11{margin-right:14rem !important}.bsui .mb-11,.bsui .my-11{margin-bottom:14rem !important}.bsui .ml-11,.bsui .mx-11{margin-left:14rem !important}.bsui .m-12{margin:16rem !important}.bsui .mt-12,.bsui .my-12{margin-top:16rem !important}.bsui .mr-12,.bsui .mx-12{margin-right:16rem !important}.bsui .mb-12,.bsui .my-12{margin-bottom:16rem !important}.bsui .ml-12,.bsui .mx-12{margin-left:16rem !important}.bsui .p-0{padding:0 !important}.bsui .pt-0,.bsui .py-0{padding-top:0 !important}.bsui .pr-0,.bsui .px-0{padding-right:0 !important}.bsui .pb-0,.bsui .py-0{padding-bottom:0 !important}.bsui .pl-0,.bsui .px-0{padding-left:0 !important}.bsui .p-1{padding:.25rem !important}.bsui .pt-1,.bsui .py-1{padding-top:.25rem !important}.bsui .pr-1,.bsui .px-1{padding-right:.25rem !important}.bsui .pb-1,.bsui .py-1{padding-bottom:.25rem !important}.bsui .pl-1,.bsui .px-1{padding-left:.25rem !important}.bsui .p-2{padding:.5rem !important}.bsui .pt-2,.bsui .py-2{padding-top:.5rem !important}.bsui .pr-2,.bsui .px-2{padding-right:.5rem !important}.bsui .pb-2,.bsui .py-2{padding-bottom:.5rem !important}.bsui .pl-2,.bsui .px-2{padding-left:.5rem !important}.bsui .p-3{padding:1rem !important}.bsui .pt-3,.bsui .py-3{padding-top:1rem !important}.bsui .pr-3,.bsui .px-3{padding-right:1rem !important}.bsui .pb-3,.bsui .py-3{padding-bottom:1rem !important}.bsui .pl-3,.bsui .px-3{padding-left:1rem !important}.bsui .p-4{padding:1.5rem !important}.bsui .pt-4,.bsui .py-4{padding-top:1.5rem !important}.bsui .pr-4,.bsui .px-4{padding-right:1.5rem !important}.bsui .pb-4,.bsui .py-4{padding-bottom:1.5rem !important}.bsui .pl-4,.bsui .px-4{padding-left:1.5rem !important}.bsui .p-5{padding:3rem !important}.bsui .pt-5,.bsui .py-5{padding-top:3rem !important}.bsui .pr-5,.bsui .px-5{padding-right:3rem !important}.bsui .pb-5,.bsui .py-5{padding-bottom:3rem !important}.bsui .pl-5,.bsui .px-5{padding-left:3rem !important}.bsui .p-6{padding:4rem !important}.bsui .pt-6,.bsui .py-6{padding-top:4rem !important}.bsui .pr-6,.bsui .px-6{padding-right:4rem !important}.bsui .pb-6,.bsui .py-6{padding-bottom:4rem !important}.bsui .pl-6,.bsui .px-6{padding-left:4rem !important}.bsui .p-7{padding:6rem !important}.bsui .pt-7,.bsui .py-7{padding-top:6rem !important}.bsui .pr-7,.bsui .px-7{padding-right:6rem !important}.bsui .pb-7,.bsui .py-7{padding-bottom:6rem !important}.bsui .pl-7,.bsui .px-7{padding-left:6rem !important}.bsui .p-8{padding:8rem !important}.bsui .pt-8,.bsui .py-8{padding-top:8rem !important}.bsui .pr-8,.bsui .px-8{padding-right:8rem !important}.bsui .pb-8,.bsui .py-8{padding-bottom:8rem !important}.bsui .pl-8,.bsui .px-8{padding-left:8rem !important}.bsui .p-9{padding:10rem !important}.bsui .pt-9,.bsui .py-9{padding-top:10rem !important}.bsui .pr-9,.bsui .px-9{padding-right:10rem !important}.bsui .pb-9,.bsui .py-9{padding-bottom:10rem !important}.bsui .pl-9,.bsui .px-9{padding-left:10rem !important}.bsui .p-10{padding:12rem !important}.bsui .pt-10,.bsui .py-10{padding-top:12rem !important}.bsui .pr-10,.bsui .px-10{padding-right:12rem !important}.bsui .pb-10,.bsui .py-10{padding-bottom:12rem !important}.bsui .pl-10,.bsui .px-10{padding-left:12rem !important}.bsui .p-11{padding:14rem !important}.bsui .pt-11,.bsui .py-11{padding-top:14rem !important}.bsui .pr-11,.bsui .px-11{padding-right:14rem !important}.bsui .pb-11,.bsui .py-11{padding-bottom:14rem !important}.bsui .pl-11,.bsui .px-11{padding-left:14rem !important}.bsui .p-12{padding:16rem !important}.bsui .pt-12,.bsui .py-12{padding-top:16rem !important}.bsui .pr-12,.bsui .px-12{padding-right:16rem !important}.bsui .pb-12,.bsui .py-12{padding-bottom:16rem !important}.bsui .pl-12,.bsui .px-12{padding-left:16rem !important}.bsui .m-n1{margin:-.25rem !important}.bsui .mt-n1,.bsui .my-n1{margin-top:-.25rem !important}.bsui .mr-n1,.bsui .mx-n1{margin-right:-.25rem !important}.bsui .mb-n1,.bsui .my-n1{margin-bottom:-.25rem !important}.bsui .ml-n1,.bsui .mx-n1{margin-left:-.25rem !important}.bsui .m-n2{margin:-.5rem !important}.bsui .mt-n2,.bsui .my-n2{margin-top:-.5rem !important}.bsui .mr-n2,.bsui .mx-n2{margin-right:-.5rem !important}.bsui .mb-n2,.bsui .my-n2{margin-bottom:-.5rem !important}.bsui .ml-n2,.bsui .mx-n2{margin-left:-.5rem !important}.bsui .m-n3{margin:-1rem !important}.bsui .mt-n3,.bsui .my-n3{margin-top:-1rem !important}.bsui .mr-n3,.bsui .mx-n3{margin-right:-1rem !important}.bsui .mb-n3,.bsui .my-n3{margin-bottom:-1rem !important}.bsui .ml-n3,.bsui .mx-n3{margin-left:-1rem !important}.bsui .m-n4{margin:-1.5rem !important}.bsui .mt-n4,.bsui .my-n4{margin-top:-1.5rem !important}.bsui .mr-n4,.bsui .mx-n4{margin-right:-1.5rem !important}.bsui .mb-n4,.bsui .my-n4{margin-bottom:-1.5rem !important}.bsui .ml-n4,.bsui .mx-n4{margin-left:-1.5rem !important}.bsui .m-n5{margin:-3rem !important}.bsui .mt-n5,.bsui .my-n5{margin-top:-3rem !important}.bsui .mr-n5,.bsui .mx-n5{margin-right:-3rem !important}.bsui .mb-n5,.bsui .my-n5{margin-bottom:-3rem !important}.bsui .ml-n5,.bsui .mx-n5{margin-left:-3rem !important}.bsui .m-n6{margin:-4rem !important}.bsui .mt-n6,.bsui .my-n6{margin-top:-4rem !important}.bsui .mr-n6,.bsui .mx-n6{margin-right:-4rem !important}.bsui .mb-n6,.bsui .my-n6{margin-bottom:-4rem !important}.bsui .ml-n6,.bsui .mx-n6{margin-left:-4rem !important}.bsui .m-n7{margin:-6rem !important}.bsui .mt-n7,.bsui .my-n7{margin-top:-6rem !important}.bsui .mr-n7,.bsui .mx-n7{margin-right:-6rem !important}.bsui .mb-n7,.bsui .my-n7{margin-bottom:-6rem !important}.bsui .ml-n7,.bsui .mx-n7{margin-left:-6rem !important}.bsui .m-n8{margin:-8rem !important}.bsui .mt-n8,.bsui .my-n8{margin-top:-8rem !important}.bsui .mr-n8,.bsui .mx-n8{margin-right:-8rem !important}.bsui .mb-n8,.bsui .my-n8{margin-bottom:-8rem !important}.bsui .ml-n8,.bsui .mx-n8{margin-left:-8rem !important}.bsui .m-n9{margin:-10rem !important}.bsui .mt-n9,.bsui .my-n9{margin-top:-10rem !important}.bsui .mr-n9,.bsui .mx-n9{margin-right:-10rem !important}.bsui .mb-n9,.bsui .my-n9{margin-bottom:-10rem !important}.bsui .ml-n9,.bsui .mx-n9{margin-left:-10rem !important}.bsui .m-n10{margin:-12rem !important}.bsui .mt-n10,.bsui .my-n10{margin-top:-12rem !important}.bsui .mr-n10,.bsui .mx-n10{margin-right:-12rem !important}.bsui .mb-n10,.bsui .my-n10{margin-bottom:-12rem !important}.bsui .ml-n10,.bsui .mx-n10{margin-left:-12rem !important}.bsui .m-n11{margin:-14rem !important}.bsui .mt-n11,.bsui .my-n11{margin-top:-14rem !important}.bsui .mr-n11,.bsui .mx-n11{margin-right:-14rem !important}.bsui .mb-n11,.bsui .my-n11{margin-bottom:-14rem !important}.bsui .ml-n11,.bsui .mx-n11{margin-left:-14rem !important}.bsui .m-n12{margin:-16rem !important}.bsui .mt-n12,.bsui .my-n12{margin-top:-16rem !important}.bsui .mr-n12,.bsui .mx-n12{margin-right:-16rem !important}.bsui .mb-n12,.bsui .my-n12{margin-bottom:-16rem !important}.bsui .ml-n12,.bsui .mx-n12{margin-left:-16rem !important}.bsui .m-auto{margin:auto !important}.bsui .mt-auto,.bsui .my-auto{margin-top:auto !important}.bsui .mr-auto,.bsui .mx-auto{margin-right:auto !important}.bsui .mb-auto,.bsui .my-auto{margin-bottom:auto !important}.bsui .ml-auto,.bsui .mx-auto{margin-left:auto !important}@media (min-width: 576px){.bsui .m-sm-0{margin:0 !important}.bsui .mt-sm-0,.bsui .my-sm-0{margin-top:0 !important}.bsui .mr-sm-0,.bsui .mx-sm-0{margin-right:0 !important}.bsui .mb-sm-0,.bsui .my-sm-0{margin-bottom:0 !important}.bsui .ml-sm-0,.bsui .mx-sm-0{margin-left:0 !important}.bsui .m-sm-1{margin:.25rem !important}.bsui .mt-sm-1,.bsui .my-sm-1{margin-top:.25rem !important}.bsui .mr-sm-1,.bsui .mx-sm-1{margin-right:.25rem !important}.bsui .mb-sm-1,.bsui .my-sm-1{margin-bottom:.25rem !important}.bsui .ml-sm-1,.bsui .mx-sm-1{margin-left:.25rem !important}.bsui .m-sm-2{margin:.5rem !important}.bsui .mt-sm-2,.bsui .my-sm-2{margin-top:.5rem !important}.bsui .mr-sm-2,.bsui .mx-sm-2{margin-right:.5rem !important}.bsui .mb-sm-2,.bsui .my-sm-2{margin-bottom:.5rem !important}.bsui .ml-sm-2,.bsui .mx-sm-2{margin-left:.5rem !important}.bsui .m-sm-3{margin:1rem !important}.bsui .mt-sm-3,.bsui .my-sm-3{margin-top:1rem !important}.bsui .mr-sm-3,.bsui .mx-sm-3{margin-right:1rem !important}.bsui .mb-sm-3,.bsui .my-sm-3{margin-bottom:1rem !important}.bsui .ml-sm-3,.bsui .mx-sm-3{margin-left:1rem !important}.bsui .m-sm-4{margin:1.5rem !important}.bsui .mt-sm-4,.bsui .my-sm-4{margin-top:1.5rem !important}.bsui .mr-sm-4,.bsui .mx-sm-4{margin-right:1.5rem !important}.bsui .mb-sm-4,.bsui .my-sm-4{margin-bottom:1.5rem !important}.bsui .ml-sm-4,.bsui .mx-sm-4{margin-left:1.5rem !important}.bsui .m-sm-5{margin:3rem !important}.bsui .mt-sm-5,.bsui .my-sm-5{margin-top:3rem !important}.bsui .mr-sm-5,.bsui .mx-sm-5{margin-right:3rem !important}.bsui .mb-sm-5,.bsui .my-sm-5{margin-bottom:3rem !important}.bsui .ml-sm-5,.bsui .mx-sm-5{margin-left:3rem !important}.bsui .m-sm-6{margin:4rem !important}.bsui .mt-sm-6,.bsui .my-sm-6{margin-top:4rem !important}.bsui .mr-sm-6,.bsui .mx-sm-6{margin-right:4rem !important}.bsui .mb-sm-6,.bsui .my-sm-6{margin-bottom:4rem !important}.bsui .ml-sm-6,.bsui .mx-sm-6{margin-left:4rem !important}.bsui .m-sm-7{margin:6rem !important}.bsui .mt-sm-7,.bsui .my-sm-7{margin-top:6rem !important}.bsui .mr-sm-7,.bsui .mx-sm-7{margin-right:6rem !important}.bsui .mb-sm-7,.bsui .my-sm-7{margin-bottom:6rem !important}.bsui .ml-sm-7,.bsui .mx-sm-7{margin-left:6rem !important}.bsui .m-sm-8{margin:8rem !important}.bsui .mt-sm-8,.bsui .my-sm-8{margin-top:8rem !important}.bsui .mr-sm-8,.bsui .mx-sm-8{margin-right:8rem !important}.bsui .mb-sm-8,.bsui .my-sm-8{margin-bottom:8rem !important}.bsui .ml-sm-8,.bsui .mx-sm-8{margin-left:8rem !important}.bsui .m-sm-9{margin:10rem !important}.bsui .mt-sm-9,.bsui .my-sm-9{margin-top:10rem !important}.bsui .mr-sm-9,.bsui .mx-sm-9{margin-right:10rem !important}.bsui .mb-sm-9,.bsui .my-sm-9{margin-bottom:10rem !important}.bsui .ml-sm-9,.bsui .mx-sm-9{margin-left:10rem !important}.bsui .m-sm-10{margin:12rem !important}.bsui .mt-sm-10,.bsui .my-sm-10{margin-top:12rem !important}.bsui .mr-sm-10,.bsui .mx-sm-10{margin-right:12rem !important}.bsui .mb-sm-10,.bsui .my-sm-10{margin-bottom:12rem !important}.bsui .ml-sm-10,.bsui .mx-sm-10{margin-left:12rem !important}.bsui .m-sm-11{margin:14rem !important}.bsui .mt-sm-11,.bsui .my-sm-11{margin-top:14rem !important}.bsui .mr-sm-11,.bsui .mx-sm-11{margin-right:14rem !important}.bsui .mb-sm-11,.bsui .my-sm-11{margin-bottom:14rem !important}.bsui .ml-sm-11,.bsui .mx-sm-11{margin-left:14rem !important}.bsui .m-sm-12{margin:16rem !important}.bsui .mt-sm-12,.bsui .my-sm-12{margin-top:16rem !important}.bsui .mr-sm-12,.bsui .mx-sm-12{margin-right:16rem !important}.bsui .mb-sm-12,.bsui .my-sm-12{margin-bottom:16rem !important}.bsui .ml-sm-12,.bsui .mx-sm-12{margin-left:16rem !important}.bsui .p-sm-0{padding:0 !important}.bsui .pt-sm-0,.bsui .py-sm-0{padding-top:0 !important}.bsui .pr-sm-0,.bsui .px-sm-0{padding-right:0 !important}.bsui .pb-sm-0,.bsui .py-sm-0{padding-bottom:0 !important}.bsui .pl-sm-0,.bsui .px-sm-0{padding-left:0 !important}.bsui .p-sm-1{padding:.25rem !important}.bsui .pt-sm-1,.bsui .py-sm-1{padding-top:.25rem !important}.bsui .pr-sm-1,.bsui .px-sm-1{padding-right:.25rem !important}.bsui .pb-sm-1,.bsui .py-sm-1{padding-bottom:.25rem !important}.bsui .pl-sm-1,.bsui .px-sm-1{padding-left:.25rem !important}.bsui .p-sm-2{padding:.5rem !important}.bsui .pt-sm-2,.bsui .py-sm-2{padding-top:.5rem !important}.bsui .pr-sm-2,.bsui .px-sm-2{padding-right:.5rem !important}.bsui .pb-sm-2,.bsui .py-sm-2{padding-bottom:.5rem !important}.bsui .pl-sm-2,.bsui .px-sm-2{padding-left:.5rem !important}.bsui .p-sm-3{padding:1rem !important}.bsui .pt-sm-3,.bsui .py-sm-3{padding-top:1rem !important}.bsui .pr-sm-3,.bsui .px-sm-3{padding-right:1rem !important}.bsui .pb-sm-3,.bsui .py-sm-3{padding-bottom:1rem !important}.bsui .pl-sm-3,.bsui .px-sm-3{padding-left:1rem !important}.bsui .p-sm-4{padding:1.5rem !important}.bsui .pt-sm-4,.bsui .py-sm-4{padding-top:1.5rem !important}.bsui .pr-sm-4,.bsui .px-sm-4{padding-right:1.5rem !important}.bsui .pb-sm-4,.bsui .py-sm-4{padding-bottom:1.5rem !important}.bsui .pl-sm-4,.bsui .px-sm-4{padding-left:1.5rem !important}.bsui .p-sm-5{padding:3rem !important}.bsui .pt-sm-5,.bsui .py-sm-5{padding-top:3rem !important}.bsui .pr-sm-5,.bsui .px-sm-5{padding-right:3rem !important}.bsui .pb-sm-5,.bsui .py-sm-5{padding-bottom:3rem !important}.bsui .pl-sm-5,.bsui .px-sm-5{padding-left:3rem !important}.bsui .p-sm-6{padding:4rem !important}.bsui .pt-sm-6,.bsui .py-sm-6{padding-top:4rem !important}.bsui .pr-sm-6,.bsui .px-sm-6{padding-right:4rem !important}.bsui .pb-sm-6,.bsui .py-sm-6{padding-bottom:4rem !important}.bsui .pl-sm-6,.bsui .px-sm-6{padding-left:4rem !important}.bsui .p-sm-7{padding:6rem !important}.bsui .pt-sm-7,.bsui .py-sm-7{padding-top:6rem !important}.bsui .pr-sm-7,.bsui .px-sm-7{padding-right:6rem !important}.bsui .pb-sm-7,.bsui .py-sm-7{padding-bottom:6rem !important}.bsui .pl-sm-7,.bsui .px-sm-7{padding-left:6rem !important}.bsui .p-sm-8{padding:8rem !important}.bsui .pt-sm-8,.bsui .py-sm-8{padding-top:8rem !important}.bsui .pr-sm-8,.bsui .px-sm-8{padding-right:8rem !important}.bsui .pb-sm-8,.bsui .py-sm-8{padding-bottom:8rem !important}.bsui .pl-sm-8,.bsui .px-sm-8{padding-left:8rem !important}.bsui .p-sm-9{padding:10rem !important}.bsui .pt-sm-9,.bsui .py-sm-9{padding-top:10rem !important}.bsui .pr-sm-9,.bsui .px-sm-9{padding-right:10rem !important}.bsui .pb-sm-9,.bsui .py-sm-9{padding-bottom:10rem !important}.bsui .pl-sm-9,.bsui .px-sm-9{padding-left:10rem !important}.bsui .p-sm-10{padding:12rem !important}.bsui .pt-sm-10,.bsui .py-sm-10{padding-top:12rem !important}.bsui .pr-sm-10,.bsui .px-sm-10{padding-right:12rem !important}.bsui .pb-sm-10,.bsui .py-sm-10{padding-bottom:12rem !important}.bsui .pl-sm-10,.bsui .px-sm-10{padding-left:12rem !important}.bsui .p-sm-11{padding:14rem !important}.bsui .pt-sm-11,.bsui .py-sm-11{padding-top:14rem !important}.bsui .pr-sm-11,.bsui .px-sm-11{padding-right:14rem !important}.bsui .pb-sm-11,.bsui .py-sm-11{padding-bottom:14rem !important}.bsui .pl-sm-11,.bsui .px-sm-11{padding-left:14rem !important}.bsui .p-sm-12{padding:16rem !important}.bsui .pt-sm-12,.bsui .py-sm-12{padding-top:16rem !important}.bsui .pr-sm-12,.bsui .px-sm-12{padding-right:16rem !important}.bsui .pb-sm-12,.bsui .py-sm-12{padding-bottom:16rem !important}.bsui .pl-sm-12,.bsui .px-sm-12{padding-left:16rem !important}.bsui .m-sm-n1{margin:-.25rem !important}.bsui .mt-sm-n1,.bsui .my-sm-n1{margin-top:-.25rem !important}.bsui .mr-sm-n1,.bsui .mx-sm-n1{margin-right:-.25rem !important}.bsui .mb-sm-n1,.bsui .my-sm-n1{margin-bottom:-.25rem !important}.bsui .ml-sm-n1,.bsui .mx-sm-n1{margin-left:-.25rem !important}.bsui .m-sm-n2{margin:-.5rem !important}.bsui .mt-sm-n2,.bsui .my-sm-n2{margin-top:-.5rem !important}.bsui .mr-sm-n2,.bsui .mx-sm-n2{margin-right:-.5rem !important}.bsui .mb-sm-n2,.bsui .my-sm-n2{margin-bottom:-.5rem !important}.bsui .ml-sm-n2,.bsui .mx-sm-n2{margin-left:-.5rem !important}.bsui .m-sm-n3{margin:-1rem !important}.bsui .mt-sm-n3,.bsui .my-sm-n3{margin-top:-1rem !important}.bsui .mr-sm-n3,.bsui .mx-sm-n3{margin-right:-1rem !important}.bsui .mb-sm-n3,.bsui .my-sm-n3{margin-bottom:-1rem !important}.bsui .ml-sm-n3,.bsui .mx-sm-n3{margin-left:-1rem !important}.bsui .m-sm-n4{margin:-1.5rem !important}.bsui .mt-sm-n4,.bsui .my-sm-n4{margin-top:-1.5rem !important}.bsui .mr-sm-n4,.bsui .mx-sm-n4{margin-right:-1.5rem !important}.bsui .mb-sm-n4,.bsui .my-sm-n4{margin-bottom:-1.5rem !important}.bsui .ml-sm-n4,.bsui .mx-sm-n4{margin-left:-1.5rem !important}.bsui .m-sm-n5{margin:-3rem !important}.bsui .mt-sm-n5,.bsui .my-sm-n5{margin-top:-3rem !important}.bsui .mr-sm-n5,.bsui .mx-sm-n5{margin-right:-3rem !important}.bsui .mb-sm-n5,.bsui .my-sm-n5{margin-bottom:-3rem !important}.bsui .ml-sm-n5,.bsui .mx-sm-n5{margin-left:-3rem !important}.bsui .m-sm-n6{margin:-4rem !important}.bsui .mt-sm-n6,.bsui .my-sm-n6{margin-top:-4rem !important}.bsui .mr-sm-n6,.bsui .mx-sm-n6{margin-right:-4rem !important}.bsui .mb-sm-n6,.bsui .my-sm-n6{margin-bottom:-4rem !important}.bsui .ml-sm-n6,.bsui .mx-sm-n6{margin-left:-4rem !important}.bsui .m-sm-n7{margin:-6rem !important}.bsui .mt-sm-n7,.bsui .my-sm-n7{margin-top:-6rem !important}.bsui .mr-sm-n7,.bsui .mx-sm-n7{margin-right:-6rem !important}.bsui .mb-sm-n7,.bsui .my-sm-n7{margin-bottom:-6rem !important}.bsui .ml-sm-n7,.bsui .mx-sm-n7{margin-left:-6rem !important}.bsui .m-sm-n8{margin:-8rem !important}.bsui .mt-sm-n8,.bsui .my-sm-n8{margin-top:-8rem !important}.bsui .mr-sm-n8,.bsui .mx-sm-n8{margin-right:-8rem !important}.bsui .mb-sm-n8,.bsui .my-sm-n8{margin-bottom:-8rem !important}.bsui .ml-sm-n8,.bsui .mx-sm-n8{margin-left:-8rem !important}.bsui .m-sm-n9{margin:-10rem !important}.bsui .mt-sm-n9,.bsui .my-sm-n9{margin-top:-10rem !important}.bsui .mr-sm-n9,.bsui .mx-sm-n9{margin-right:-10rem !important}.bsui .mb-sm-n9,.bsui .my-sm-n9{margin-bottom:-10rem !important}.bsui .ml-sm-n9,.bsui .mx-sm-n9{margin-left:-10rem !important}.bsui .m-sm-n10{margin:-12rem !important}.bsui .mt-sm-n10,.bsui .my-sm-n10{margin-top:-12rem !important}.bsui .mr-sm-n10,.bsui .mx-sm-n10{margin-right:-12rem !important}.bsui .mb-sm-n10,.bsui .my-sm-n10{margin-bottom:-12rem !important}.bsui .ml-sm-n10,.bsui .mx-sm-n10{margin-left:-12rem !important}.bsui .m-sm-n11{margin:-14rem !important}.bsui .mt-sm-n11,.bsui .my-sm-n11{margin-top:-14rem !important}.bsui .mr-sm-n11,.bsui .mx-sm-n11{margin-right:-14rem !important}.bsui .mb-sm-n11,.bsui .my-sm-n11{margin-bottom:-14rem !important}.bsui .ml-sm-n11,.bsui .mx-sm-n11{margin-left:-14rem !important}.bsui .m-sm-n12{margin:-16rem !important}.bsui .mt-sm-n12,.bsui .my-sm-n12{margin-top:-16rem !important}.bsui .mr-sm-n12,.bsui .mx-sm-n12{margin-right:-16rem !important}.bsui .mb-sm-n12,.bsui .my-sm-n12{margin-bottom:-16rem !important}.bsui .ml-sm-n12,.bsui .mx-sm-n12{margin-left:-16rem !important}.bsui .m-sm-auto{margin:auto !important}.bsui .mt-sm-auto,.bsui .my-sm-auto{margin-top:auto !important}.bsui .mr-sm-auto,.bsui .mx-sm-auto{margin-right:auto !important}.bsui .mb-sm-auto,.bsui .my-sm-auto{margin-bottom:auto !important}.bsui .ml-sm-auto,.bsui .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.bsui .m-md-0{margin:0 !important}.bsui .mt-md-0,.bsui .my-md-0{margin-top:0 !important}.bsui .mr-md-0,.bsui .mx-md-0{margin-right:0 !important}.bsui .mb-md-0,.bsui .my-md-0{margin-bottom:0 !important}.bsui .ml-md-0,.bsui .mx-md-0{margin-left:0 !important}.bsui .m-md-1{margin:.25rem !important}.bsui .mt-md-1,.bsui .my-md-1{margin-top:.25rem !important}.bsui .mr-md-1,.bsui .mx-md-1{margin-right:.25rem !important}.bsui .mb-md-1,.bsui .my-md-1{margin-bottom:.25rem !important}.bsui .ml-md-1,.bsui .mx-md-1{margin-left:.25rem !important}.bsui .m-md-2{margin:.5rem !important}.bsui .mt-md-2,.bsui .my-md-2{margin-top:.5rem !important}.bsui .mr-md-2,.bsui .mx-md-2{margin-right:.5rem !important}.bsui .mb-md-2,.bsui .my-md-2{margin-bottom:.5rem !important}.bsui .ml-md-2,.bsui .mx-md-2{margin-left:.5rem !important}.bsui .m-md-3{margin:1rem !important}.bsui .mt-md-3,.bsui .my-md-3{margin-top:1rem !important}.bsui .mr-md-3,.bsui .mx-md-3{margin-right:1rem !important}.bsui .mb-md-3,.bsui .my-md-3{margin-bottom:1rem !important}.bsui .ml-md-3,.bsui .mx-md-3{margin-left:1rem !important}.bsui .m-md-4{margin:1.5rem !important}.bsui .mt-md-4,.bsui .my-md-4{margin-top:1.5rem !important}.bsui .mr-md-4,.bsui .mx-md-4{margin-right:1.5rem !important}.bsui .mb-md-4,.bsui .my-md-4{margin-bottom:1.5rem !important}.bsui .ml-md-4,.bsui .mx-md-4{margin-left:1.5rem !important}.bsui .m-md-5{margin:3rem !important}.bsui .mt-md-5,.bsui .my-md-5{margin-top:3rem !important}.bsui .mr-md-5,.bsui .mx-md-5{margin-right:3rem !important}.bsui .mb-md-5,.bsui .my-md-5{margin-bottom:3rem !important}.bsui .ml-md-5,.bsui .mx-md-5{margin-left:3rem !important}.bsui .m-md-6{margin:4rem !important}.bsui .mt-md-6,.bsui .my-md-6{margin-top:4rem !important}.bsui .mr-md-6,.bsui .mx-md-6{margin-right:4rem !important}.bsui .mb-md-6,.bsui .my-md-6{margin-bottom:4rem !important}.bsui .ml-md-6,.bsui .mx-md-6{margin-left:4rem !important}.bsui .m-md-7{margin:6rem !important}.bsui .mt-md-7,.bsui .my-md-7{margin-top:6rem !important}.bsui .mr-md-7,.bsui .mx-md-7{margin-right:6rem !important}.bsui .mb-md-7,.bsui .my-md-7{margin-bottom:6rem !important}.bsui .ml-md-7,.bsui .mx-md-7{margin-left:6rem !important}.bsui .m-md-8{margin:8rem !important}.bsui .mt-md-8,.bsui .my-md-8{margin-top:8rem !important}.bsui .mr-md-8,.bsui .mx-md-8{margin-right:8rem !important}.bsui .mb-md-8,.bsui .my-md-8{margin-bottom:8rem !important}.bsui .ml-md-8,.bsui .mx-md-8{margin-left:8rem !important}.bsui .m-md-9{margin:10rem !important}.bsui .mt-md-9,.bsui .my-md-9{margin-top:10rem !important}.bsui .mr-md-9,.bsui .mx-md-9{margin-right:10rem !important}.bsui .mb-md-9,.bsui .my-md-9{margin-bottom:10rem !important}.bsui .ml-md-9,.bsui .mx-md-9{margin-left:10rem !important}.bsui .m-md-10{margin:12rem !important}.bsui .mt-md-10,.bsui .my-md-10{margin-top:12rem !important}.bsui .mr-md-10,.bsui .mx-md-10{margin-right:12rem !important}.bsui .mb-md-10,.bsui .my-md-10{margin-bottom:12rem !important}.bsui .ml-md-10,.bsui .mx-md-10{margin-left:12rem !important}.bsui .m-md-11{margin:14rem !important}.bsui .mt-md-11,.bsui .my-md-11{margin-top:14rem !important}.bsui .mr-md-11,.bsui .mx-md-11{margin-right:14rem !important}.bsui .mb-md-11,.bsui .my-md-11{margin-bottom:14rem !important}.bsui .ml-md-11,.bsui .mx-md-11{margin-left:14rem !important}.bsui .m-md-12{margin:16rem !important}.bsui .mt-md-12,.bsui .my-md-12{margin-top:16rem !important}.bsui .mr-md-12,.bsui .mx-md-12{margin-right:16rem !important}.bsui .mb-md-12,.bsui .my-md-12{margin-bottom:16rem !important}.bsui .ml-md-12,.bsui .mx-md-12{margin-left:16rem !important}.bsui .p-md-0{padding:0 !important}.bsui .pt-md-0,.bsui .py-md-0{padding-top:0 !important}.bsui .pr-md-0,.bsui .px-md-0{padding-right:0 !important}.bsui .pb-md-0,.bsui .py-md-0{padding-bottom:0 !important}.bsui .pl-md-0,.bsui .px-md-0{padding-left:0 !important}.bsui .p-md-1{padding:.25rem !important}.bsui .pt-md-1,.bsui .py-md-1{padding-top:.25rem !important}.bsui .pr-md-1,.bsui .px-md-1{padding-right:.25rem !important}.bsui .pb-md-1,.bsui .py-md-1{padding-bottom:.25rem !important}.bsui .pl-md-1,.bsui .px-md-1{padding-left:.25rem !important}.bsui .p-md-2{padding:.5rem !important}.bsui .pt-md-2,.bsui .py-md-2{padding-top:.5rem !important}.bsui .pr-md-2,.bsui .px-md-2{padding-right:.5rem !important}.bsui .pb-md-2,.bsui .py-md-2{padding-bottom:.5rem !important}.bsui .pl-md-2,.bsui .px-md-2{padding-left:.5rem !important}.bsui .p-md-3{padding:1rem !important}.bsui .pt-md-3,.bsui .py-md-3{padding-top:1rem !important}.bsui .pr-md-3,.bsui .px-md-3{padding-right:1rem !important}.bsui .pb-md-3,.bsui .py-md-3{padding-bottom:1rem !important}.bsui .pl-md-3,.bsui .px-md-3{padding-left:1rem !important}.bsui .p-md-4{padding:1.5rem !important}.bsui .pt-md-4,.bsui .py-md-4{padding-top:1.5rem !important}.bsui .pr-md-4,.bsui .px-md-4{padding-right:1.5rem !important}.bsui .pb-md-4,.bsui .py-md-4{padding-bottom:1.5rem !important}.bsui .pl-md-4,.bsui .px-md-4{padding-left:1.5rem !important}.bsui .p-md-5{padding:3rem !important}.bsui .pt-md-5,.bsui .py-md-5{padding-top:3rem !important}.bsui .pr-md-5,.bsui .px-md-5{padding-right:3rem !important}.bsui .pb-md-5,.bsui .py-md-5{padding-bottom:3rem !important}.bsui .pl-md-5,.bsui .px-md-5{padding-left:3rem !important}.bsui .p-md-6{padding:4rem !important}.bsui .pt-md-6,.bsui .py-md-6{padding-top:4rem !important}.bsui .pr-md-6,.bsui .px-md-6{padding-right:4rem !important}.bsui .pb-md-6,.bsui .py-md-6{padding-bottom:4rem !important}.bsui .pl-md-6,.bsui .px-md-6{padding-left:4rem !important}.bsui .p-md-7{padding:6rem !important}.bsui .pt-md-7,.bsui .py-md-7{padding-top:6rem !important}.bsui .pr-md-7,.bsui .px-md-7{padding-right:6rem !important}.bsui .pb-md-7,.bsui .py-md-7{padding-bottom:6rem !important}.bsui .pl-md-7,.bsui .px-md-7{padding-left:6rem !important}.bsui .p-md-8{padding:8rem !important}.bsui .pt-md-8,.bsui .py-md-8{padding-top:8rem !important}.bsui .pr-md-8,.bsui .px-md-8{padding-right:8rem !important}.bsui .pb-md-8,.bsui .py-md-8{padding-bottom:8rem !important}.bsui .pl-md-8,.bsui .px-md-8{padding-left:8rem !important}.bsui .p-md-9{padding:10rem !important}.bsui .pt-md-9,.bsui .py-md-9{padding-top:10rem !important}.bsui .pr-md-9,.bsui .px-md-9{padding-right:10rem !important}.bsui .pb-md-9,.bsui .py-md-9{padding-bottom:10rem !important}.bsui .pl-md-9,.bsui .px-md-9{padding-left:10rem !important}.bsui .p-md-10{padding:12rem !important}.bsui .pt-md-10,.bsui .py-md-10{padding-top:12rem !important}.bsui .pr-md-10,.bsui .px-md-10{padding-right:12rem !important}.bsui .pb-md-10,.bsui .py-md-10{padding-bottom:12rem !important}.bsui .pl-md-10,.bsui .px-md-10{padding-left:12rem !important}.bsui .p-md-11{padding:14rem !important}.bsui .pt-md-11,.bsui .py-md-11{padding-top:14rem !important}.bsui .pr-md-11,.bsui .px-md-11{padding-right:14rem !important}.bsui .pb-md-11,.bsui .py-md-11{padding-bottom:14rem !important}.bsui .pl-md-11,.bsui .px-md-11{padding-left:14rem !important}.bsui .p-md-12{padding:16rem !important}.bsui .pt-md-12,.bsui .py-md-12{padding-top:16rem !important}.bsui .pr-md-12,.bsui .px-md-12{padding-right:16rem !important}.bsui .pb-md-12,.bsui .py-md-12{padding-bottom:16rem !important}.bsui .pl-md-12,.bsui .px-md-12{padding-left:16rem !important}.bsui .m-md-n1{margin:-.25rem !important}.bsui .mt-md-n1,.bsui .my-md-n1{margin-top:-.25rem !important}.bsui .mr-md-n1,.bsui .mx-md-n1{margin-right:-.25rem !important}.bsui .mb-md-n1,.bsui .my-md-n1{margin-bottom:-.25rem !important}.bsui .ml-md-n1,.bsui .mx-md-n1{margin-left:-.25rem !important}.bsui .m-md-n2{margin:-.5rem !important}.bsui .mt-md-n2,.bsui .my-md-n2{margin-top:-.5rem !important}.bsui .mr-md-n2,.bsui .mx-md-n2{margin-right:-.5rem !important}.bsui .mb-md-n2,.bsui .my-md-n2{margin-bottom:-.5rem !important}.bsui .ml-md-n2,.bsui .mx-md-n2{margin-left:-.5rem !important}.bsui .m-md-n3{margin:-1rem !important}.bsui .mt-md-n3,.bsui .my-md-n3{margin-top:-1rem !important}.bsui .mr-md-n3,.bsui .mx-md-n3{margin-right:-1rem !important}.bsui .mb-md-n3,.bsui .my-md-n3{margin-bottom:-1rem !important}.bsui .ml-md-n3,.bsui .mx-md-n3{margin-left:-1rem !important}.bsui .m-md-n4{margin:-1.5rem !important}.bsui .mt-md-n4,.bsui .my-md-n4{margin-top:-1.5rem !important}.bsui .mr-md-n4,.bsui .mx-md-n4{margin-right:-1.5rem !important}.bsui .mb-md-n4,.bsui .my-md-n4{margin-bottom:-1.5rem !important}.bsui .ml-md-n4,.bsui .mx-md-n4{margin-left:-1.5rem !important}.bsui .m-md-n5{margin:-3rem !important}.bsui .mt-md-n5,.bsui .my-md-n5{margin-top:-3rem !important}.bsui .mr-md-n5,.bsui .mx-md-n5{margin-right:-3rem !important}.bsui .mb-md-n5,.bsui .my-md-n5{margin-bottom:-3rem !important}.bsui .ml-md-n5,.bsui .mx-md-n5{margin-left:-3rem !important}.bsui .m-md-n6{margin:-4rem !important}.bsui .mt-md-n6,.bsui .my-md-n6{margin-top:-4rem !important}.bsui .mr-md-n6,.bsui .mx-md-n6{margin-right:-4rem !important}.bsui .mb-md-n6,.bsui .my-md-n6{margin-bottom:-4rem !important}.bsui .ml-md-n6,.bsui .mx-md-n6{margin-left:-4rem !important}.bsui .m-md-n7{margin:-6rem !important}.bsui .mt-md-n7,.bsui .my-md-n7{margin-top:-6rem !important}.bsui .mr-md-n7,.bsui .mx-md-n7{margin-right:-6rem !important}.bsui .mb-md-n7,.bsui .my-md-n7{margin-bottom:-6rem !important}.bsui .ml-md-n7,.bsui .mx-md-n7{margin-left:-6rem !important}.bsui .m-md-n8{margin:-8rem !important}.bsui .mt-md-n8,.bsui .my-md-n8{margin-top:-8rem !important}.bsui .mr-md-n8,.bsui .mx-md-n8{margin-right:-8rem !important}.bsui .mb-md-n8,.bsui .my-md-n8{margin-bottom:-8rem !important}.bsui .ml-md-n8,.bsui .mx-md-n8{margin-left:-8rem !important}.bsui .m-md-n9{margin:-10rem !important}.bsui .mt-md-n9,.bsui .my-md-n9{margin-top:-10rem !important}.bsui .mr-md-n9,.bsui .mx-md-n9{margin-right:-10rem !important}.bsui .mb-md-n9,.bsui .my-md-n9{margin-bottom:-10rem !important}.bsui .ml-md-n9,.bsui .mx-md-n9{margin-left:-10rem !important}.bsui .m-md-n10{margin:-12rem !important}.bsui .mt-md-n10,.bsui .my-md-n10{margin-top:-12rem !important}.bsui .mr-md-n10,.bsui .mx-md-n10{margin-right:-12rem !important}.bsui .mb-md-n10,.bsui .my-md-n10{margin-bottom:-12rem !important}.bsui .ml-md-n10,.bsui .mx-md-n10{margin-left:-12rem !important}.bsui .m-md-n11{margin:-14rem !important}.bsui .mt-md-n11,.bsui .my-md-n11{margin-top:-14rem !important}.bsui .mr-md-n11,.bsui .mx-md-n11{margin-right:-14rem !important}.bsui .mb-md-n11,.bsui .my-md-n11{margin-bottom:-14rem !important}.bsui .ml-md-n11,.bsui .mx-md-n11{margin-left:-14rem !important}.bsui .m-md-n12{margin:-16rem !important}.bsui .mt-md-n12,.bsui .my-md-n12{margin-top:-16rem !important}.bsui .mr-md-n12,.bsui .mx-md-n12{margin-right:-16rem !important}.bsui .mb-md-n12,.bsui .my-md-n12{margin-bottom:-16rem !important}.bsui .ml-md-n12,.bsui .mx-md-n12{margin-left:-16rem !important}.bsui .m-md-auto{margin:auto !important}.bsui .mt-md-auto,.bsui .my-md-auto{margin-top:auto !important}.bsui .mr-md-auto,.bsui .mx-md-auto{margin-right:auto !important}.bsui .mb-md-auto,.bsui .my-md-auto{margin-bottom:auto !important}.bsui .ml-md-auto,.bsui .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.bsui .m-lg-0{margin:0 !important}.bsui .mt-lg-0,.bsui .my-lg-0{margin-top:0 !important}.bsui .mr-lg-0,.bsui .mx-lg-0{margin-right:0 !important}.bsui .mb-lg-0,.bsui .my-lg-0{margin-bottom:0 !important}.bsui .ml-lg-0,.bsui .mx-lg-0{margin-left:0 !important}.bsui .m-lg-1{margin:.25rem !important}.bsui .mt-lg-1,.bsui .my-lg-1{margin-top:.25rem !important}.bsui .mr-lg-1,.bsui .mx-lg-1{margin-right:.25rem !important}.bsui .mb-lg-1,.bsui .my-lg-1{margin-bottom:.25rem !important}.bsui .ml-lg-1,.bsui .mx-lg-1{margin-left:.25rem !important}.bsui .m-lg-2{margin:.5rem !important}.bsui .mt-lg-2,.bsui .my-lg-2{margin-top:.5rem !important}.bsui .mr-lg-2,.bsui .mx-lg-2{margin-right:.5rem !important}.bsui .mb-lg-2,.bsui .my-lg-2{margin-bottom:.5rem !important}.bsui .ml-lg-2,.bsui .mx-lg-2{margin-left:.5rem !important}.bsui .m-lg-3{margin:1rem !important}.bsui .mt-lg-3,.bsui .my-lg-3{margin-top:1rem !important}.bsui .mr-lg-3,.bsui .mx-lg-3{margin-right:1rem !important}.bsui .mb-lg-3,.bsui .my-lg-3{margin-bottom:1rem !important}.bsui .ml-lg-3,.bsui .mx-lg-3{margin-left:1rem !important}.bsui .m-lg-4{margin:1.5rem !important}.bsui .mt-lg-4,.bsui .my-lg-4{margin-top:1.5rem !important}.bsui .mr-lg-4,.bsui .mx-lg-4{margin-right:1.5rem !important}.bsui .mb-lg-4,.bsui .my-lg-4{margin-bottom:1.5rem !important}.bsui .ml-lg-4,.bsui .mx-lg-4{margin-left:1.5rem !important}.bsui .m-lg-5{margin:3rem !important}.bsui .mt-lg-5,.bsui .my-lg-5{margin-top:3rem !important}.bsui .mr-lg-5,.bsui .mx-lg-5{margin-right:3rem !important}.bsui .mb-lg-5,.bsui .my-lg-5{margin-bottom:3rem !important}.bsui .ml-lg-5,.bsui .mx-lg-5{margin-left:3rem !important}.bsui .m-lg-6{margin:4rem !important}.bsui .mt-lg-6,.bsui .my-lg-6{margin-top:4rem !important}.bsui .mr-lg-6,.bsui .mx-lg-6{margin-right:4rem !important}.bsui .mb-lg-6,.bsui .my-lg-6{margin-bottom:4rem !important}.bsui .ml-lg-6,.bsui .mx-lg-6{margin-left:4rem !important}.bsui .m-lg-7{margin:6rem !important}.bsui .mt-lg-7,.bsui .my-lg-7{margin-top:6rem !important}.bsui .mr-lg-7,.bsui .mx-lg-7{margin-right:6rem !important}.bsui .mb-lg-7,.bsui .my-lg-7{margin-bottom:6rem !important}.bsui .ml-lg-7,.bsui .mx-lg-7{margin-left:6rem !important}.bsui .m-lg-8{margin:8rem !important}.bsui .mt-lg-8,.bsui .my-lg-8{margin-top:8rem !important}.bsui .mr-lg-8,.bsui .mx-lg-8{margin-right:8rem !important}.bsui .mb-lg-8,.bsui .my-lg-8{margin-bottom:8rem !important}.bsui .ml-lg-8,.bsui .mx-lg-8{margin-left:8rem !important}.bsui .m-lg-9{margin:10rem !important}.bsui .mt-lg-9,.bsui .my-lg-9{margin-top:10rem !important}.bsui .mr-lg-9,.bsui .mx-lg-9{margin-right:10rem !important}.bsui .mb-lg-9,.bsui .my-lg-9{margin-bottom:10rem !important}.bsui .ml-lg-9,.bsui .mx-lg-9{margin-left:10rem !important}.bsui .m-lg-10{margin:12rem !important}.bsui .mt-lg-10,.bsui .my-lg-10{margin-top:12rem !important}.bsui .mr-lg-10,.bsui .mx-lg-10{margin-right:12rem !important}.bsui .mb-lg-10,.bsui .my-lg-10{margin-bottom:12rem !important}.bsui .ml-lg-10,.bsui .mx-lg-10{margin-left:12rem !important}.bsui .m-lg-11{margin:14rem !important}.bsui .mt-lg-11,.bsui .my-lg-11{margin-top:14rem !important}.bsui .mr-lg-11,.bsui .mx-lg-11{margin-right:14rem !important}.bsui .mb-lg-11,.bsui .my-lg-11{margin-bottom:14rem !important}.bsui .ml-lg-11,.bsui .mx-lg-11{margin-left:14rem !important}.bsui .m-lg-12{margin:16rem !important}.bsui .mt-lg-12,.bsui .my-lg-12{margin-top:16rem !important}.bsui .mr-lg-12,.bsui .mx-lg-12{margin-right:16rem !important}.bsui .mb-lg-12,.bsui .my-lg-12{margin-bottom:16rem !important}.bsui .ml-lg-12,.bsui .mx-lg-12{margin-left:16rem !important}.bsui .p-lg-0{padding:0 !important}.bsui .pt-lg-0,.bsui .py-lg-0{padding-top:0 !important}.bsui .pr-lg-0,.bsui .px-lg-0{padding-right:0 !important}.bsui .pb-lg-0,.bsui .py-lg-0{padding-bottom:0 !important}.bsui .pl-lg-0,.bsui .px-lg-0{padding-left:0 !important}.bsui .p-lg-1{padding:.25rem !important}.bsui .pt-lg-1,.bsui .py-lg-1{padding-top:.25rem !important}.bsui .pr-lg-1,.bsui .px-lg-1{padding-right:.25rem !important}.bsui .pb-lg-1,.bsui .py-lg-1{padding-bottom:.25rem !important}.bsui .pl-lg-1,.bsui .px-lg-1{padding-left:.25rem !important}.bsui .p-lg-2{padding:.5rem !important}.bsui .pt-lg-2,.bsui .py-lg-2{padding-top:.5rem !important}.bsui .pr-lg-2,.bsui .px-lg-2{padding-right:.5rem !important}.bsui .pb-lg-2,.bsui .py-lg-2{padding-bottom:.5rem !important}.bsui .pl-lg-2,.bsui .px-lg-2{padding-left:.5rem !important}.bsui .p-lg-3{padding:1rem !important}.bsui .pt-lg-3,.bsui .py-lg-3{padding-top:1rem !important}.bsui .pr-lg-3,.bsui .px-lg-3{padding-right:1rem !important}.bsui .pb-lg-3,.bsui .py-lg-3{padding-bottom:1rem !important}.bsui .pl-lg-3,.bsui .px-lg-3{padding-left:1rem !important}.bsui .p-lg-4{padding:1.5rem !important}.bsui .pt-lg-4,.bsui .py-lg-4{padding-top:1.5rem !important}.bsui .pr-lg-4,.bsui .px-lg-4{padding-right:1.5rem !important}.bsui .pb-lg-4,.bsui .py-lg-4{padding-bottom:1.5rem !important}.bsui .pl-lg-4,.bsui .px-lg-4{padding-left:1.5rem !important}.bsui .p-lg-5{padding:3rem !important}.bsui .pt-lg-5,.bsui .py-lg-5{padding-top:3rem !important}.bsui .pr-lg-5,.bsui .px-lg-5{padding-right:3rem !important}.bsui .pb-lg-5,.bsui .py-lg-5{padding-bottom:3rem !important}.bsui .pl-lg-5,.bsui .px-lg-5{padding-left:3rem !important}.bsui .p-lg-6{padding:4rem !important}.bsui .pt-lg-6,.bsui .py-lg-6{padding-top:4rem !important}.bsui .pr-lg-6,.bsui .px-lg-6{padding-right:4rem !important}.bsui .pb-lg-6,.bsui .py-lg-6{padding-bottom:4rem !important}.bsui .pl-lg-6,.bsui .px-lg-6{padding-left:4rem !important}.bsui .p-lg-7{padding:6rem !important}.bsui .pt-lg-7,.bsui .py-lg-7{padding-top:6rem !important}.bsui .pr-lg-7,.bsui .px-lg-7{padding-right:6rem !important}.bsui .pb-lg-7,.bsui .py-lg-7{padding-bottom:6rem !important}.bsui .pl-lg-7,.bsui .px-lg-7{padding-left:6rem !important}.bsui .p-lg-8{padding:8rem !important}.bsui .pt-lg-8,.bsui .py-lg-8{padding-top:8rem !important}.bsui .pr-lg-8,.bsui .px-lg-8{padding-right:8rem !important}.bsui .pb-lg-8,.bsui .py-lg-8{padding-bottom:8rem !important}.bsui .pl-lg-8,.bsui .px-lg-8{padding-left:8rem !important}.bsui .p-lg-9{padding:10rem !important}.bsui .pt-lg-9,.bsui .py-lg-9{padding-top:10rem !important}.bsui .pr-lg-9,.bsui .px-lg-9{padding-right:10rem !important}.bsui .pb-lg-9,.bsui .py-lg-9{padding-bottom:10rem !important}.bsui .pl-lg-9,.bsui .px-lg-9{padding-left:10rem !important}.bsui .p-lg-10{padding:12rem !important}.bsui .pt-lg-10,.bsui .py-lg-10{padding-top:12rem !important}.bsui .pr-lg-10,.bsui .px-lg-10{padding-right:12rem !important}.bsui .pb-lg-10,.bsui .py-lg-10{padding-bottom:12rem !important}.bsui .pl-lg-10,.bsui .px-lg-10{padding-left:12rem !important}.bsui .p-lg-11{padding:14rem !important}.bsui .pt-lg-11,.bsui .py-lg-11{padding-top:14rem !important}.bsui .pr-lg-11,.bsui .px-lg-11{padding-right:14rem !important}.bsui .pb-lg-11,.bsui .py-lg-11{padding-bottom:14rem !important}.bsui .pl-lg-11,.bsui .px-lg-11{padding-left:14rem !important}.bsui .p-lg-12{padding:16rem !important}.bsui .pt-lg-12,.bsui .py-lg-12{padding-top:16rem !important}.bsui .pr-lg-12,.bsui .px-lg-12{padding-right:16rem !important}.bsui .pb-lg-12,.bsui .py-lg-12{padding-bottom:16rem !important}.bsui .pl-lg-12,.bsui .px-lg-12{padding-left:16rem !important}.bsui .m-lg-n1{margin:-.25rem !important}.bsui .mt-lg-n1,.bsui .my-lg-n1{margin-top:-.25rem !important}.bsui .mr-lg-n1,.bsui .mx-lg-n1{margin-right:-.25rem !important}.bsui .mb-lg-n1,.bsui .my-lg-n1{margin-bottom:-.25rem !important}.bsui .ml-lg-n1,.bsui .mx-lg-n1{margin-left:-.25rem !important}.bsui .m-lg-n2{margin:-.5rem !important}.bsui .mt-lg-n2,.bsui .my-lg-n2{margin-top:-.5rem !important}.bsui .mr-lg-n2,.bsui .mx-lg-n2{margin-right:-.5rem !important}.bsui .mb-lg-n2,.bsui .my-lg-n2{margin-bottom:-.5rem !important}.bsui .ml-lg-n2,.bsui .mx-lg-n2{margin-left:-.5rem !important}.bsui .m-lg-n3{margin:-1rem !important}.bsui .mt-lg-n3,.bsui .my-lg-n3{margin-top:-1rem !important}.bsui .mr-lg-n3,.bsui .mx-lg-n3{margin-right:-1rem !important}.bsui .mb-lg-n3,.bsui .my-lg-n3{margin-bottom:-1rem !important}.bsui .ml-lg-n3,.bsui .mx-lg-n3{margin-left:-1rem !important}.bsui .m-lg-n4{margin:-1.5rem !important}.bsui .mt-lg-n4,.bsui .my-lg-n4{margin-top:-1.5rem !important}.bsui .mr-lg-n4,.bsui .mx-lg-n4{margin-right:-1.5rem !important}.bsui .mb-lg-n4,.bsui .my-lg-n4{margin-bottom:-1.5rem !important}.bsui .ml-lg-n4,.bsui .mx-lg-n4{margin-left:-1.5rem !important}.bsui .m-lg-n5{margin:-3rem !important}.bsui .mt-lg-n5,.bsui .my-lg-n5{margin-top:-3rem !important}.bsui .mr-lg-n5,.bsui .mx-lg-n5{margin-right:-3rem !important}.bsui .mb-lg-n5,.bsui .my-lg-n5{margin-bottom:-3rem !important}.bsui .ml-lg-n5,.bsui .mx-lg-n5{margin-left:-3rem !important}.bsui .m-lg-n6{margin:-4rem !important}.bsui .mt-lg-n6,.bsui .my-lg-n6{margin-top:-4rem !important}.bsui .mr-lg-n6,.bsui .mx-lg-n6{margin-right:-4rem !important}.bsui .mb-lg-n6,.bsui .my-lg-n6{margin-bottom:-4rem !important}.bsui .ml-lg-n6,.bsui .mx-lg-n6{margin-left:-4rem !important}.bsui .m-lg-n7{margin:-6rem !important}.bsui .mt-lg-n7,.bsui .my-lg-n7{margin-top:-6rem !important}.bsui .mr-lg-n7,.bsui .mx-lg-n7{margin-right:-6rem !important}.bsui .mb-lg-n7,.bsui .my-lg-n7{margin-bottom:-6rem !important}.bsui .ml-lg-n7,.bsui .mx-lg-n7{margin-left:-6rem !important}.bsui .m-lg-n8{margin:-8rem !important}.bsui .mt-lg-n8,.bsui .my-lg-n8{margin-top:-8rem !important}.bsui .mr-lg-n8,.bsui .mx-lg-n8{margin-right:-8rem !important}.bsui .mb-lg-n8,.bsui .my-lg-n8{margin-bottom:-8rem !important}.bsui .ml-lg-n8,.bsui .mx-lg-n8{margin-left:-8rem !important}.bsui .m-lg-n9{margin:-10rem !important}.bsui .mt-lg-n9,.bsui .my-lg-n9{margin-top:-10rem !important}.bsui .mr-lg-n9,.bsui .mx-lg-n9{margin-right:-10rem !important}.bsui .mb-lg-n9,.bsui .my-lg-n9{margin-bottom:-10rem !important}.bsui .ml-lg-n9,.bsui .mx-lg-n9{margin-left:-10rem !important}.bsui .m-lg-n10{margin:-12rem !important}.bsui .mt-lg-n10,.bsui .my-lg-n10{margin-top:-12rem !important}.bsui .mr-lg-n10,.bsui .mx-lg-n10{margin-right:-12rem !important}.bsui .mb-lg-n10,.bsui .my-lg-n10{margin-bottom:-12rem !important}.bsui .ml-lg-n10,.bsui .mx-lg-n10{margin-left:-12rem !important}.bsui .m-lg-n11{margin:-14rem !important}.bsui .mt-lg-n11,.bsui .my-lg-n11{margin-top:-14rem !important}.bsui .mr-lg-n11,.bsui .mx-lg-n11{margin-right:-14rem !important}.bsui .mb-lg-n11,.bsui .my-lg-n11{margin-bottom:-14rem !important}.bsui .ml-lg-n11,.bsui .mx-lg-n11{margin-left:-14rem !important}.bsui .m-lg-n12{margin:-16rem !important}.bsui .mt-lg-n12,.bsui .my-lg-n12{margin-top:-16rem !important}.bsui .mr-lg-n12,.bsui .mx-lg-n12{margin-right:-16rem !important}.bsui .mb-lg-n12,.bsui .my-lg-n12{margin-bottom:-16rem !important}.bsui .ml-lg-n12,.bsui .mx-lg-n12{margin-left:-16rem !important}.bsui .m-lg-auto{margin:auto !important}.bsui .mt-lg-auto,.bsui .my-lg-auto{margin-top:auto !important}.bsui .mr-lg-auto,.bsui .mx-lg-auto{margin-right:auto !important}.bsui .mb-lg-auto,.bsui .my-lg-auto{margin-bottom:auto !important}.bsui .ml-lg-auto,.bsui .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.bsui .m-xl-0{margin:0 !important}.bsui .mt-xl-0,.bsui .my-xl-0{margin-top:0 !important}.bsui .mr-xl-0,.bsui .mx-xl-0{margin-right:0 !important}.bsui .mb-xl-0,.bsui .my-xl-0{margin-bottom:0 !important}.bsui .ml-xl-0,.bsui .mx-xl-0{margin-left:0 !important}.bsui .m-xl-1{margin:.25rem !important}.bsui .mt-xl-1,.bsui .my-xl-1{margin-top:.25rem !important}.bsui .mr-xl-1,.bsui .mx-xl-1{margin-right:.25rem !important}.bsui .mb-xl-1,.bsui .my-xl-1{margin-bottom:.25rem !important}.bsui .ml-xl-1,.bsui .mx-xl-1{margin-left:.25rem !important}.bsui .m-xl-2{margin:.5rem !important}.bsui .mt-xl-2,.bsui .my-xl-2{margin-top:.5rem !important}.bsui .mr-xl-2,.bsui .mx-xl-2{margin-right:.5rem !important}.bsui .mb-xl-2,.bsui .my-xl-2{margin-bottom:.5rem !important}.bsui .ml-xl-2,.bsui .mx-xl-2{margin-left:.5rem !important}.bsui .m-xl-3{margin:1rem !important}.bsui .mt-xl-3,.bsui .my-xl-3{margin-top:1rem !important}.bsui .mr-xl-3,.bsui .mx-xl-3{margin-right:1rem !important}.bsui .mb-xl-3,.bsui .my-xl-3{margin-bottom:1rem !important}.bsui .ml-xl-3,.bsui .mx-xl-3{margin-left:1rem !important}.bsui .m-xl-4{margin:1.5rem !important}.bsui .mt-xl-4,.bsui .my-xl-4{margin-top:1.5rem !important}.bsui .mr-xl-4,.bsui .mx-xl-4{margin-right:1.5rem !important}.bsui .mb-xl-4,.bsui .my-xl-4{margin-bottom:1.5rem !important}.bsui .ml-xl-4,.bsui .mx-xl-4{margin-left:1.5rem !important}.bsui .m-xl-5{margin:3rem !important}.bsui .mt-xl-5,.bsui .my-xl-5{margin-top:3rem !important}.bsui .mr-xl-5,.bsui .mx-xl-5{margin-right:3rem !important}.bsui .mb-xl-5,.bsui .my-xl-5{margin-bottom:3rem !important}.bsui .ml-xl-5,.bsui .mx-xl-5{margin-left:3rem !important}.bsui .m-xl-6{margin:4rem !important}.bsui .mt-xl-6,.bsui .my-xl-6{margin-top:4rem !important}.bsui .mr-xl-6,.bsui .mx-xl-6{margin-right:4rem !important}.bsui .mb-xl-6,.bsui .my-xl-6{margin-bottom:4rem !important}.bsui .ml-xl-6,.bsui .mx-xl-6{margin-left:4rem !important}.bsui .m-xl-7{margin:6rem !important}.bsui .mt-xl-7,.bsui .my-xl-7{margin-top:6rem !important}.bsui .mr-xl-7,.bsui .mx-xl-7{margin-right:6rem !important}.bsui .mb-xl-7,.bsui .my-xl-7{margin-bottom:6rem !important}.bsui .ml-xl-7,.bsui .mx-xl-7{margin-left:6rem !important}.bsui .m-xl-8{margin:8rem !important}.bsui .mt-xl-8,.bsui .my-xl-8{margin-top:8rem !important}.bsui .mr-xl-8,.bsui .mx-xl-8{margin-right:8rem !important}.bsui .mb-xl-8,.bsui .my-xl-8{margin-bottom:8rem !important}.bsui .ml-xl-8,.bsui .mx-xl-8{margin-left:8rem !important}.bsui .m-xl-9{margin:10rem !important}.bsui .mt-xl-9,.bsui .my-xl-9{margin-top:10rem !important}.bsui .mr-xl-9,.bsui .mx-xl-9{margin-right:10rem !important}.bsui .mb-xl-9,.bsui .my-xl-9{margin-bottom:10rem !important}.bsui .ml-xl-9,.bsui .mx-xl-9{margin-left:10rem !important}.bsui .m-xl-10{margin:12rem !important}.bsui .mt-xl-10,.bsui .my-xl-10{margin-top:12rem !important}.bsui .mr-xl-10,.bsui .mx-xl-10{margin-right:12rem !important}.bsui .mb-xl-10,.bsui .my-xl-10{margin-bottom:12rem !important}.bsui .ml-xl-10,.bsui .mx-xl-10{margin-left:12rem !important}.bsui .m-xl-11{margin:14rem !important}.bsui .mt-xl-11,.bsui .my-xl-11{margin-top:14rem !important}.bsui .mr-xl-11,.bsui .mx-xl-11{margin-right:14rem !important}.bsui .mb-xl-11,.bsui .my-xl-11{margin-bottom:14rem !important}.bsui .ml-xl-11,.bsui .mx-xl-11{margin-left:14rem !important}.bsui .m-xl-12{margin:16rem !important}.bsui .mt-xl-12,.bsui .my-xl-12{margin-top:16rem !important}.bsui .mr-xl-12,.bsui .mx-xl-12{margin-right:16rem !important}.bsui .mb-xl-12,.bsui .my-xl-12{margin-bottom:16rem !important}.bsui .ml-xl-12,.bsui .mx-xl-12{margin-left:16rem !important}.bsui .p-xl-0{padding:0 !important}.bsui .pt-xl-0,.bsui .py-xl-0{padding-top:0 !important}.bsui .pr-xl-0,.bsui .px-xl-0{padding-right:0 !important}.bsui .pb-xl-0,.bsui .py-xl-0{padding-bottom:0 !important}.bsui .pl-xl-0,.bsui .px-xl-0{padding-left:0 !important}.bsui .p-xl-1{padding:.25rem !important}.bsui .pt-xl-1,.bsui .py-xl-1{padding-top:.25rem !important}.bsui .pr-xl-1,.bsui .px-xl-1{padding-right:.25rem !important}.bsui .pb-xl-1,.bsui .py-xl-1{padding-bottom:.25rem !important}.bsui .pl-xl-1,.bsui .px-xl-1{padding-left:.25rem !important}.bsui .p-xl-2{padding:.5rem !important}.bsui .pt-xl-2,.bsui .py-xl-2{padding-top:.5rem !important}.bsui .pr-xl-2,.bsui .px-xl-2{padding-right:.5rem !important}.bsui .pb-xl-2,.bsui .py-xl-2{padding-bottom:.5rem !important}.bsui .pl-xl-2,.bsui .px-xl-2{padding-left:.5rem !important}.bsui .p-xl-3{padding:1rem !important}.bsui .pt-xl-3,.bsui .py-xl-3{padding-top:1rem !important}.bsui .pr-xl-3,.bsui .px-xl-3{padding-right:1rem !important}.bsui .pb-xl-3,.bsui .py-xl-3{padding-bottom:1rem !important}.bsui .pl-xl-3,.bsui .px-xl-3{padding-left:1rem !important}.bsui .p-xl-4{padding:1.5rem !important}.bsui .pt-xl-4,.bsui .py-xl-4{padding-top:1.5rem !important}.bsui .pr-xl-4,.bsui .px-xl-4{padding-right:1.5rem !important}.bsui .pb-xl-4,.bsui .py-xl-4{padding-bottom:1.5rem !important}.bsui .pl-xl-4,.bsui .px-xl-4{padding-left:1.5rem !important}.bsui .p-xl-5{padding:3rem !important}.bsui .pt-xl-5,.bsui .py-xl-5{padding-top:3rem !important}.bsui .pr-xl-5,.bsui .px-xl-5{padding-right:3rem !important}.bsui .pb-xl-5,.bsui .py-xl-5{padding-bottom:3rem !important}.bsui .pl-xl-5,.bsui .px-xl-5{padding-left:3rem !important}.bsui .p-xl-6{padding:4rem !important}.bsui .pt-xl-6,.bsui .py-xl-6{padding-top:4rem !important}.bsui .pr-xl-6,.bsui .px-xl-6{padding-right:4rem !important}.bsui .pb-xl-6,.bsui .py-xl-6{padding-bottom:4rem !important}.bsui .pl-xl-6,.bsui .px-xl-6{padding-left:4rem !important}.bsui .p-xl-7{padding:6rem !important}.bsui .pt-xl-7,.bsui .py-xl-7{padding-top:6rem !important}.bsui .pr-xl-7,.bsui .px-xl-7{padding-right:6rem !important}.bsui .pb-xl-7,.bsui .py-xl-7{padding-bottom:6rem !important}.bsui .pl-xl-7,.bsui .px-xl-7{padding-left:6rem !important}.bsui .p-xl-8{padding:8rem !important}.bsui .pt-xl-8,.bsui .py-xl-8{padding-top:8rem !important}.bsui .pr-xl-8,.bsui .px-xl-8{padding-right:8rem !important}.bsui .pb-xl-8,.bsui .py-xl-8{padding-bottom:8rem !important}.bsui .pl-xl-8,.bsui .px-xl-8{padding-left:8rem !important}.bsui .p-xl-9{padding:10rem !important}.bsui .pt-xl-9,.bsui .py-xl-9{padding-top:10rem !important}.bsui .pr-xl-9,.bsui .px-xl-9{padding-right:10rem !important}.bsui .pb-xl-9,.bsui .py-xl-9{padding-bottom:10rem !important}.bsui .pl-xl-9,.bsui .px-xl-9{padding-left:10rem !important}.bsui .p-xl-10{padding:12rem !important}.bsui .pt-xl-10,.bsui .py-xl-10{padding-top:12rem !important}.bsui .pr-xl-10,.bsui .px-xl-10{padding-right:12rem !important}.bsui .pb-xl-10,.bsui .py-xl-10{padding-bottom:12rem !important}.bsui .pl-xl-10,.bsui .px-xl-10{padding-left:12rem !important}.bsui .p-xl-11{padding:14rem !important}.bsui .pt-xl-11,.bsui .py-xl-11{padding-top:14rem !important}.bsui .pr-xl-11,.bsui .px-xl-11{padding-right:14rem !important}.bsui .pb-xl-11,.bsui .py-xl-11{padding-bottom:14rem !important}.bsui .pl-xl-11,.bsui .px-xl-11{padding-left:14rem !important}.bsui .p-xl-12{padding:16rem !important}.bsui .pt-xl-12,.bsui .py-xl-12{padding-top:16rem !important}.bsui .pr-xl-12,.bsui .px-xl-12{padding-right:16rem !important}.bsui .pb-xl-12,.bsui .py-xl-12{padding-bottom:16rem !important}.bsui .pl-xl-12,.bsui .px-xl-12{padding-left:16rem !important}.bsui .m-xl-n1{margin:-.25rem !important}.bsui .mt-xl-n1,.bsui .my-xl-n1{margin-top:-.25rem !important}.bsui .mr-xl-n1,.bsui .mx-xl-n1{margin-right:-.25rem !important}.bsui .mb-xl-n1,.bsui .my-xl-n1{margin-bottom:-.25rem !important}.bsui .ml-xl-n1,.bsui .mx-xl-n1{margin-left:-.25rem !important}.bsui .m-xl-n2{margin:-.5rem !important}.bsui .mt-xl-n2,.bsui .my-xl-n2{margin-top:-.5rem !important}.bsui .mr-xl-n2,.bsui .mx-xl-n2{margin-right:-.5rem !important}.bsui .mb-xl-n2,.bsui .my-xl-n2{margin-bottom:-.5rem !important}.bsui .ml-xl-n2,.bsui .mx-xl-n2{margin-left:-.5rem !important}.bsui .m-xl-n3{margin:-1rem !important}.bsui .mt-xl-n3,.bsui .my-xl-n3{margin-top:-1rem !important}.bsui .mr-xl-n3,.bsui .mx-xl-n3{margin-right:-1rem !important}.bsui .mb-xl-n3,.bsui .my-xl-n3{margin-bottom:-1rem !important}.bsui .ml-xl-n3,.bsui .mx-xl-n3{margin-left:-1rem !important}.bsui .m-xl-n4{margin:-1.5rem !important}.bsui .mt-xl-n4,.bsui .my-xl-n4{margin-top:-1.5rem !important}.bsui .mr-xl-n4,.bsui .mx-xl-n4{margin-right:-1.5rem !important}.bsui .mb-xl-n4,.bsui .my-xl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xl-n4,.bsui .mx-xl-n4{margin-left:-1.5rem !important}.bsui .m-xl-n5{margin:-3rem !important}.bsui .mt-xl-n5,.bsui .my-xl-n5{margin-top:-3rem !important}.bsui .mr-xl-n5,.bsui .mx-xl-n5{margin-right:-3rem !important}.bsui .mb-xl-n5,.bsui .my-xl-n5{margin-bottom:-3rem !important}.bsui .ml-xl-n5,.bsui .mx-xl-n5{margin-left:-3rem !important}.bsui .m-xl-n6{margin:-4rem !important}.bsui .mt-xl-n6,.bsui .my-xl-n6{margin-top:-4rem !important}.bsui .mr-xl-n6,.bsui .mx-xl-n6{margin-right:-4rem !important}.bsui .mb-xl-n6,.bsui .my-xl-n6{margin-bottom:-4rem !important}.bsui .ml-xl-n6,.bsui .mx-xl-n6{margin-left:-4rem !important}.bsui .m-xl-n7{margin:-6rem !important}.bsui .mt-xl-n7,.bsui .my-xl-n7{margin-top:-6rem !important}.bsui .mr-xl-n7,.bsui .mx-xl-n7{margin-right:-6rem !important}.bsui .mb-xl-n7,.bsui .my-xl-n7{margin-bottom:-6rem !important}.bsui .ml-xl-n7,.bsui .mx-xl-n7{margin-left:-6rem !important}.bsui .m-xl-n8{margin:-8rem !important}.bsui .mt-xl-n8,.bsui .my-xl-n8{margin-top:-8rem !important}.bsui .mr-xl-n8,.bsui .mx-xl-n8{margin-right:-8rem !important}.bsui .mb-xl-n8,.bsui .my-xl-n8{margin-bottom:-8rem !important}.bsui .ml-xl-n8,.bsui .mx-xl-n8{margin-left:-8rem !important}.bsui .m-xl-n9{margin:-10rem !important}.bsui .mt-xl-n9,.bsui .my-xl-n9{margin-top:-10rem !important}.bsui .mr-xl-n9,.bsui .mx-xl-n9{margin-right:-10rem !important}.bsui .mb-xl-n9,.bsui .my-xl-n9{margin-bottom:-10rem !important}.bsui .ml-xl-n9,.bsui .mx-xl-n9{margin-left:-10rem !important}.bsui .m-xl-n10{margin:-12rem !important}.bsui .mt-xl-n10,.bsui .my-xl-n10{margin-top:-12rem !important}.bsui .mr-xl-n10,.bsui .mx-xl-n10{margin-right:-12rem !important}.bsui .mb-xl-n10,.bsui .my-xl-n10{margin-bottom:-12rem !important}.bsui .ml-xl-n10,.bsui .mx-xl-n10{margin-left:-12rem !important}.bsui .m-xl-n11{margin:-14rem !important}.bsui .mt-xl-n11,.bsui .my-xl-n11{margin-top:-14rem !important}.bsui .mr-xl-n11,.bsui .mx-xl-n11{margin-right:-14rem !important}.bsui .mb-xl-n11,.bsui .my-xl-n11{margin-bottom:-14rem !important}.bsui .ml-xl-n11,.bsui .mx-xl-n11{margin-left:-14rem !important}.bsui .m-xl-n12{margin:-16rem !important}.bsui .mt-xl-n12,.bsui .my-xl-n12{margin-top:-16rem !important}.bsui .mr-xl-n12,.bsui .mx-xl-n12{margin-right:-16rem !important}.bsui .mb-xl-n12,.bsui .my-xl-n12{margin-bottom:-16rem !important}.bsui .ml-xl-n12,.bsui .mx-xl-n12{margin-left:-16rem !important}.bsui .m-xl-auto{margin:auto !important}.bsui .mt-xl-auto,.bsui .my-xl-auto{margin-top:auto !important}.bsui .mr-xl-auto,.bsui .mx-xl-auto{margin-right:auto !important}.bsui .mb-xl-auto,.bsui .my-xl-auto{margin-bottom:auto !important}.bsui .ml-xl-auto,.bsui .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.bsui .m-xxl-0{margin:0 !important}.bsui .mt-xxl-0,.bsui .my-xxl-0{margin-top:0 !important}.bsui .mr-xxl-0,.bsui .mx-xxl-0{margin-right:0 !important}.bsui .mb-xxl-0,.bsui .my-xxl-0{margin-bottom:0 !important}.bsui .ml-xxl-0,.bsui .mx-xxl-0{margin-left:0 !important}.bsui .m-xxl-1{margin:.25rem !important}.bsui .mt-xxl-1,.bsui .my-xxl-1{margin-top:.25rem !important}.bsui .mr-xxl-1,.bsui .mx-xxl-1{margin-right:.25rem !important}.bsui .mb-xxl-1,.bsui .my-xxl-1{margin-bottom:.25rem !important}.bsui .ml-xxl-1,.bsui .mx-xxl-1{margin-left:.25rem !important}.bsui .m-xxl-2{margin:.5rem !important}.bsui .mt-xxl-2,.bsui .my-xxl-2{margin-top:.5rem !important}.bsui .mr-xxl-2,.bsui .mx-xxl-2{margin-right:.5rem !important}.bsui .mb-xxl-2,.bsui .my-xxl-2{margin-bottom:.5rem !important}.bsui .ml-xxl-2,.bsui .mx-xxl-2{margin-left:.5rem !important}.bsui .m-xxl-3{margin:1rem !important}.bsui .mt-xxl-3,.bsui .my-xxl-3{margin-top:1rem !important}.bsui .mr-xxl-3,.bsui .mx-xxl-3{margin-right:1rem !important}.bsui .mb-xxl-3,.bsui .my-xxl-3{margin-bottom:1rem !important}.bsui .ml-xxl-3,.bsui .mx-xxl-3{margin-left:1rem !important}.bsui .m-xxl-4{margin:1.5rem !important}.bsui .mt-xxl-4,.bsui .my-xxl-4{margin-top:1.5rem !important}.bsui .mr-xxl-4,.bsui .mx-xxl-4{margin-right:1.5rem !important}.bsui .mb-xxl-4,.bsui .my-xxl-4{margin-bottom:1.5rem !important}.bsui .ml-xxl-4,.bsui .mx-xxl-4{margin-left:1.5rem !important}.bsui .m-xxl-5{margin:3rem !important}.bsui .mt-xxl-5,.bsui .my-xxl-5{margin-top:3rem !important}.bsui .mr-xxl-5,.bsui .mx-xxl-5{margin-right:3rem !important}.bsui .mb-xxl-5,.bsui .my-xxl-5{margin-bottom:3rem !important}.bsui .ml-xxl-5,.bsui .mx-xxl-5{margin-left:3rem !important}.bsui .m-xxl-6{margin:4rem !important}.bsui .mt-xxl-6,.bsui .my-xxl-6{margin-top:4rem !important}.bsui .mr-xxl-6,.bsui .mx-xxl-6{margin-right:4rem !important}.bsui .mb-xxl-6,.bsui .my-xxl-6{margin-bottom:4rem !important}.bsui .ml-xxl-6,.bsui .mx-xxl-6{margin-left:4rem !important}.bsui .m-xxl-7{margin:6rem !important}.bsui .mt-xxl-7,.bsui .my-xxl-7{margin-top:6rem !important}.bsui .mr-xxl-7,.bsui .mx-xxl-7{margin-right:6rem !important}.bsui .mb-xxl-7,.bsui .my-xxl-7{margin-bottom:6rem !important}.bsui .ml-xxl-7,.bsui .mx-xxl-7{margin-left:6rem !important}.bsui .m-xxl-8{margin:8rem !important}.bsui .mt-xxl-8,.bsui .my-xxl-8{margin-top:8rem !important}.bsui .mr-xxl-8,.bsui .mx-xxl-8{margin-right:8rem !important}.bsui .mb-xxl-8,.bsui .my-xxl-8{margin-bottom:8rem !important}.bsui .ml-xxl-8,.bsui .mx-xxl-8{margin-left:8rem !important}.bsui .m-xxl-9{margin:10rem !important}.bsui .mt-xxl-9,.bsui .my-xxl-9{margin-top:10rem !important}.bsui .mr-xxl-9,.bsui .mx-xxl-9{margin-right:10rem !important}.bsui .mb-xxl-9,.bsui .my-xxl-9{margin-bottom:10rem !important}.bsui .ml-xxl-9,.bsui .mx-xxl-9{margin-left:10rem !important}.bsui .m-xxl-10{margin:12rem !important}.bsui .mt-xxl-10,.bsui .my-xxl-10{margin-top:12rem !important}.bsui .mr-xxl-10,.bsui .mx-xxl-10{margin-right:12rem !important}.bsui .mb-xxl-10,.bsui .my-xxl-10{margin-bottom:12rem !important}.bsui .ml-xxl-10,.bsui .mx-xxl-10{margin-left:12rem !important}.bsui .m-xxl-11{margin:14rem !important}.bsui .mt-xxl-11,.bsui .my-xxl-11{margin-top:14rem !important}.bsui .mr-xxl-11,.bsui .mx-xxl-11{margin-right:14rem !important}.bsui .mb-xxl-11,.bsui .my-xxl-11{margin-bottom:14rem !important}.bsui .ml-xxl-11,.bsui .mx-xxl-11{margin-left:14rem !important}.bsui .m-xxl-12{margin:16rem !important}.bsui .mt-xxl-12,.bsui .my-xxl-12{margin-top:16rem !important}.bsui .mr-xxl-12,.bsui .mx-xxl-12{margin-right:16rem !important}.bsui .mb-xxl-12,.bsui .my-xxl-12{margin-bottom:16rem !important}.bsui .ml-xxl-12,.bsui .mx-xxl-12{margin-left:16rem !important}.bsui .p-xxl-0{padding:0 !important}.bsui .pt-xxl-0,.bsui .py-xxl-0{padding-top:0 !important}.bsui .pr-xxl-0,.bsui .px-xxl-0{padding-right:0 !important}.bsui .pb-xxl-0,.bsui .py-xxl-0{padding-bottom:0 !important}.bsui .pl-xxl-0,.bsui .px-xxl-0{padding-left:0 !important}.bsui .p-xxl-1{padding:.25rem !important}.bsui .pt-xxl-1,.bsui .py-xxl-1{padding-top:.25rem !important}.bsui .pr-xxl-1,.bsui .px-xxl-1{padding-right:.25rem !important}.bsui .pb-xxl-1,.bsui .py-xxl-1{padding-bottom:.25rem !important}.bsui .pl-xxl-1,.bsui .px-xxl-1{padding-left:.25rem !important}.bsui .p-xxl-2{padding:.5rem !important}.bsui .pt-xxl-2,.bsui .py-xxl-2{padding-top:.5rem !important}.bsui .pr-xxl-2,.bsui .px-xxl-2{padding-right:.5rem !important}.bsui .pb-xxl-2,.bsui .py-xxl-2{padding-bottom:.5rem !important}.bsui .pl-xxl-2,.bsui .px-xxl-2{padding-left:.5rem !important}.bsui .p-xxl-3{padding:1rem !important}.bsui .pt-xxl-3,.bsui .py-xxl-3{padding-top:1rem !important}.bsui .pr-xxl-3,.bsui .px-xxl-3{padding-right:1rem !important}.bsui .pb-xxl-3,.bsui .py-xxl-3{padding-bottom:1rem !important}.bsui .pl-xxl-3,.bsui .px-xxl-3{padding-left:1rem !important}.bsui .p-xxl-4{padding:1.5rem !important}.bsui .pt-xxl-4,.bsui .py-xxl-4{padding-top:1.5rem !important}.bsui .pr-xxl-4,.bsui .px-xxl-4{padding-right:1.5rem !important}.bsui .pb-xxl-4,.bsui .py-xxl-4{padding-bottom:1.5rem !important}.bsui .pl-xxl-4,.bsui .px-xxl-4{padding-left:1.5rem !important}.bsui .p-xxl-5{padding:3rem !important}.bsui .pt-xxl-5,.bsui .py-xxl-5{padding-top:3rem !important}.bsui .pr-xxl-5,.bsui .px-xxl-5{padding-right:3rem !important}.bsui .pb-xxl-5,.bsui .py-xxl-5{padding-bottom:3rem !important}.bsui .pl-xxl-5,.bsui .px-xxl-5{padding-left:3rem !important}.bsui .p-xxl-6{padding:4rem !important}.bsui .pt-xxl-6,.bsui .py-xxl-6{padding-top:4rem !important}.bsui .pr-xxl-6,.bsui .px-xxl-6{padding-right:4rem !important}.bsui .pb-xxl-6,.bsui .py-xxl-6{padding-bottom:4rem !important}.bsui .pl-xxl-6,.bsui .px-xxl-6{padding-left:4rem !important}.bsui .p-xxl-7{padding:6rem !important}.bsui .pt-xxl-7,.bsui .py-xxl-7{padding-top:6rem !important}.bsui .pr-xxl-7,.bsui .px-xxl-7{padding-right:6rem !important}.bsui .pb-xxl-7,.bsui .py-xxl-7{padding-bottom:6rem !important}.bsui .pl-xxl-7,.bsui .px-xxl-7{padding-left:6rem !important}.bsui .p-xxl-8{padding:8rem !important}.bsui .pt-xxl-8,.bsui .py-xxl-8{padding-top:8rem !important}.bsui .pr-xxl-8,.bsui .px-xxl-8{padding-right:8rem !important}.bsui .pb-xxl-8,.bsui .py-xxl-8{padding-bottom:8rem !important}.bsui .pl-xxl-8,.bsui .px-xxl-8{padding-left:8rem !important}.bsui .p-xxl-9{padding:10rem !important}.bsui .pt-xxl-9,.bsui .py-xxl-9{padding-top:10rem !important}.bsui .pr-xxl-9,.bsui .px-xxl-9{padding-right:10rem !important}.bsui .pb-xxl-9,.bsui .py-xxl-9{padding-bottom:10rem !important}.bsui .pl-xxl-9,.bsui .px-xxl-9{padding-left:10rem !important}.bsui .p-xxl-10{padding:12rem !important}.bsui .pt-xxl-10,.bsui .py-xxl-10{padding-top:12rem !important}.bsui .pr-xxl-10,.bsui .px-xxl-10{padding-right:12rem !important}.bsui .pb-xxl-10,.bsui .py-xxl-10{padding-bottom:12rem !important}.bsui .pl-xxl-10,.bsui .px-xxl-10{padding-left:12rem !important}.bsui .p-xxl-11{padding:14rem !important}.bsui .pt-xxl-11,.bsui .py-xxl-11{padding-top:14rem !important}.bsui .pr-xxl-11,.bsui .px-xxl-11{padding-right:14rem !important}.bsui .pb-xxl-11,.bsui .py-xxl-11{padding-bottom:14rem !important}.bsui .pl-xxl-11,.bsui .px-xxl-11{padding-left:14rem !important}.bsui .p-xxl-12{padding:16rem !important}.bsui .pt-xxl-12,.bsui .py-xxl-12{padding-top:16rem !important}.bsui .pr-xxl-12,.bsui .px-xxl-12{padding-right:16rem !important}.bsui .pb-xxl-12,.bsui .py-xxl-12{padding-bottom:16rem !important}.bsui .pl-xxl-12,.bsui .px-xxl-12{padding-left:16rem !important}.bsui .m-xxl-n1{margin:-.25rem !important}.bsui .mt-xxl-n1,.bsui .my-xxl-n1{margin-top:-.25rem !important}.bsui .mr-xxl-n1,.bsui .mx-xxl-n1{margin-right:-.25rem !important}.bsui .mb-xxl-n1,.bsui .my-xxl-n1{margin-bottom:-.25rem !important}.bsui .ml-xxl-n1,.bsui .mx-xxl-n1{margin-left:-.25rem !important}.bsui .m-xxl-n2{margin:-.5rem !important}.bsui .mt-xxl-n2,.bsui .my-xxl-n2{margin-top:-.5rem !important}.bsui .mr-xxl-n2,.bsui .mx-xxl-n2{margin-right:-.5rem !important}.bsui .mb-xxl-n2,.bsui .my-xxl-n2{margin-bottom:-.5rem !important}.bsui .ml-xxl-n2,.bsui .mx-xxl-n2{margin-left:-.5rem !important}.bsui .m-xxl-n3{margin:-1rem !important}.bsui .mt-xxl-n3,.bsui .my-xxl-n3{margin-top:-1rem !important}.bsui .mr-xxl-n3,.bsui .mx-xxl-n3{margin-right:-1rem !important}.bsui .mb-xxl-n3,.bsui .my-xxl-n3{margin-bottom:-1rem !important}.bsui .ml-xxl-n3,.bsui .mx-xxl-n3{margin-left:-1rem !important}.bsui .m-xxl-n4{margin:-1.5rem !important}.bsui .mt-xxl-n4,.bsui .my-xxl-n4{margin-top:-1.5rem !important}.bsui .mr-xxl-n4,.bsui .mx-xxl-n4{margin-right:-1.5rem !important}.bsui .mb-xxl-n4,.bsui .my-xxl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xxl-n4,.bsui .mx-xxl-n4{margin-left:-1.5rem !important}.bsui .m-xxl-n5{margin:-3rem !important}.bsui .mt-xxl-n5,.bsui .my-xxl-n5{margin-top:-3rem !important}.bsui .mr-xxl-n5,.bsui .mx-xxl-n5{margin-right:-3rem !important}.bsui .mb-xxl-n5,.bsui .my-xxl-n5{margin-bottom:-3rem !important}.bsui .ml-xxl-n5,.bsui .mx-xxl-n5{margin-left:-3rem !important}.bsui .m-xxl-n6{margin:-4rem !important}.bsui .mt-xxl-n6,.bsui .my-xxl-n6{margin-top:-4rem !important}.bsui .mr-xxl-n6,.bsui .mx-xxl-n6{margin-right:-4rem !important}.bsui .mb-xxl-n6,.bsui .my-xxl-n6{margin-bottom:-4rem !important}.bsui .ml-xxl-n6,.bsui .mx-xxl-n6{margin-left:-4rem !important}.bsui .m-xxl-n7{margin:-6rem !important}.bsui .mt-xxl-n7,.bsui .my-xxl-n7{margin-top:-6rem !important}.bsui .mr-xxl-n7,.bsui .mx-xxl-n7{margin-right:-6rem !important}.bsui .mb-xxl-n7,.bsui .my-xxl-n7{margin-bottom:-6rem !important}.bsui .ml-xxl-n7,.bsui .mx-xxl-n7{margin-left:-6rem !important}.bsui .m-xxl-n8{margin:-8rem !important}.bsui .mt-xxl-n8,.bsui .my-xxl-n8{margin-top:-8rem !important}.bsui .mr-xxl-n8,.bsui .mx-xxl-n8{margin-right:-8rem !important}.bsui .mb-xxl-n8,.bsui .my-xxl-n8{margin-bottom:-8rem !important}.bsui .ml-xxl-n8,.bsui .mx-xxl-n8{margin-left:-8rem !important}.bsui .m-xxl-n9{margin:-10rem !important}.bsui .mt-xxl-n9,.bsui .my-xxl-n9{margin-top:-10rem !important}.bsui .mr-xxl-n9,.bsui .mx-xxl-n9{margin-right:-10rem !important}.bsui .mb-xxl-n9,.bsui .my-xxl-n9{margin-bottom:-10rem !important}.bsui .ml-xxl-n9,.bsui .mx-xxl-n9{margin-left:-10rem !important}.bsui .m-xxl-n10{margin:-12rem !important}.bsui .mt-xxl-n10,.bsui .my-xxl-n10{margin-top:-12rem !important}.bsui .mr-xxl-n10,.bsui .mx-xxl-n10{margin-right:-12rem !important}.bsui .mb-xxl-n10,.bsui .my-xxl-n10{margin-bottom:-12rem !important}.bsui .ml-xxl-n10,.bsui .mx-xxl-n10{margin-left:-12rem !important}.bsui .m-xxl-n11{margin:-14rem !important}.bsui .mt-xxl-n11,.bsui .my-xxl-n11{margin-top:-14rem !important}.bsui .mr-xxl-n11,.bsui .mx-xxl-n11{margin-right:-14rem !important}.bsui .mb-xxl-n11,.bsui .my-xxl-n11{margin-bottom:-14rem !important}.bsui .ml-xxl-n11,.bsui .mx-xxl-n11{margin-left:-14rem !important}.bsui .m-xxl-n12{margin:-16rem !important}.bsui .mt-xxl-n12,.bsui .my-xxl-n12{margin-top:-16rem !important}.bsui .mr-xxl-n12,.bsui .mx-xxl-n12{margin-right:-16rem !important}.bsui .mb-xxl-n12,.bsui .my-xxl-n12{margin-bottom:-16rem !important}.bsui .ml-xxl-n12,.bsui .mx-xxl-n12{margin-left:-16rem !important}.bsui .m-xxl-auto{margin:auto !important}.bsui .mt-xxl-auto,.bsui .my-xxl-auto{margin-top:auto !important}.bsui .mr-xxl-auto,.bsui .mx-xxl-auto{margin-right:auto !important}.bsui .mb-xxl-auto,.bsui .my-xxl-auto{margin-bottom:auto !important}.bsui .ml-xxl-auto,.bsui .mx-xxl-auto{margin-left:auto !important}}.bsui .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.bsui .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.bsui .text-justify{text-align:justify !important}.bsui .text-wrap{white-space:normal !important}.bsui .text-nowrap{white-space:nowrap !important}.bsui .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bsui .text-left{text-align:left !important}.bsui .text-right{text-align:right !important}.bsui .text-center{text-align:center !important}@media (min-width: 576px){.bsui .text-sm-left{text-align:left !important}.bsui .text-sm-right{text-align:right !important}.bsui .text-sm-center{text-align:center !important}}@media (min-width: 768px){.bsui .text-md-left{text-align:left !important}.bsui .text-md-right{text-align:right !important}.bsui .text-md-center{text-align:center !important}}@media (min-width: 992px){.bsui .text-lg-left{text-align:left !important}.bsui .text-lg-right{text-align:right !important}.bsui .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.bsui .text-xl-left{text-align:left !important}.bsui .text-xl-right{text-align:right !important}.bsui .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.bsui .text-xxl-left{text-align:left !important}.bsui .text-xxl-right{text-align:right !important}.bsui .text-xxl-center{text-align:center !important}}.bsui .text-lowercase{text-transform:lowercase !important}.bsui .text-uppercase{text-transform:uppercase !important}.bsui .text-capitalize{text-transform:capitalize !important}.bsui .font-weight-light{font-weight:300 !important}.bsui .font-weight-lighter{font-weight:lighter !important}.bsui .font-weight-normal{font-weight:400 !important}.bsui .font-weight-bold{font-weight:700 !important}.bsui .font-weight-bolder{font-weight:bolder !important}.bsui .font-italic{font-style:italic !important}.bsui .text-white{color:#fff !important}.bsui .text-primary{color:#1e73be !important}.bsui a.text-primary:hover,.bsui a.text-primary:focus{color:#144b7c !important}.bsui .text-secondary{color:#6c757d !important}.bsui a.text-secondary:hover,.bsui a.text-secondary:focus{color:#494f54 !important}.bsui .text-success{color:#44c553 !important}.bsui a.text-success:hover,.bsui a.text-success:focus{color:#2d9038 !important}.bsui .text-info{color:#17a2b8 !important}.bsui a.text-info:hover,.bsui a.text-info:focus{color:#0f6674 !important}.bsui .text-warning{color:#ffc107 !important}.bsui a.text-warning:hover,.bsui a.text-warning:focus{color:#ba8b00 !important}.bsui .text-danger{color:#dc3545 !important}.bsui a.text-danger:hover,.bsui a.text-danger:focus{color:#a71d2a !important}.bsui .text-light{color:#f8f9fa !important}.bsui a.text-light:hover,.bsui a.text-light:focus{color:#cbd3da !important}.bsui .text-dark{color:#343a40 !important}.bsui a.text-dark:hover,.bsui a.text-dark:focus{color:#121416 !important}.bsui .text-white{color:#fff !important}.bsui a.text-white:hover,.bsui a.text-white:focus{color:#d9d9d9 !important}.bsui .text-purple{color:#ad6edd !important}.bsui a.text-purple:hover,.bsui a.text-purple:focus{color:#8a30ce !important}.bsui .text-salmon{color:#ff977a !important}.bsui a.text-salmon:hover,.bsui a.text-salmon:focus{color:#ff5b2e !important}.bsui .text-cyan{color:#35bdff !important}.bsui a.text-cyan:hover,.bsui a.text-cyan:focus{color:#009ce8 !important}.bsui .text-gray{color:#ced4da !important}.bsui a.text-gray:hover,.bsui a.text-gray:focus{color:#a2aeb9 !important}.bsui .text-gray-dark{color:#6c757d !important}.bsui a.text-gray-dark:hover,.bsui a.text-gray-dark:focus{color:#494f54 !important}.bsui .text-indigo{color:#502c6c !important}.bsui a.text-indigo:hover,.bsui a.text-indigo:focus{color:#281636 !important}.bsui .text-orange{color:#fbb500 !important}.bsui a.text-orange:hover,.bsui a.text-orange:focus{color:#af7e00 !important}.bsui .text-body{color:#212529 !important}.bsui .text-muted{color:#6c757d !important}.bsui .text-black-50{color:rgba(0,0,0,0.5) !important}.bsui .text-white-50{color:rgba(255,255,255,0.5) !important}.bsui .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bsui .text-decoration-none{text-decoration:none !important}.bsui .text-break{word-break:break-word !important;word-wrap:break-word !important}.bsui .text-reset{color:inherit !important}.bsui .visible{visibility:visible !important}.bsui .invisible{visibility:hidden !important}@media print{.bsui *,.bsui *::before,.bsui *::after{text-shadow:none !important;box-shadow:none !important}.bsui a:not(.btn){text-decoration:underline}.bsui abbr[title]::after{content:" (" attr(title) ")"}.bsui pre{white-space:pre-wrap !important}.bsui pre,.bsui blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.bsui tr,.bsui img{page-break-inside:avoid}.bsui p,.bsui h2,.bsui h3{orphans:3;widows:3}.bsui h2,.bsui h3{page-break-after:avoid}@page{.bsui{size:a3}}.bsui body{min-width:992px !important}.bsui .container{min-width:992px !important}.bsui .navbar{display:none}.bsui .badge{border:1px solid #000}.bsui .table{border-collapse:collapse !important}.bsui .table td,.bsui .table th{background-color:#fff !important}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6 !important}.bsui .table-dark{color:inherit}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#dee2e6}.bsui .table .thead-dark th{color:inherit;border-color:#dee2e6}}.bsui .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.bsui .iconpicker-popover.popover.top,.bsui .iconpicker-popover.popover.topLeftCorner,.bsui .iconpicker-popover.popover.topLeft,.bsui .iconpicker-popover.popover.topRight,.bsui .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.bsui .iconpicker-popover.popover.right,.bsui .iconpicker-popover.popover.rightTop,.bsui .iconpicker-popover.popover.rightBottom{margin-left:10px}.bsui .iconpicker-popover.popover.bottom,.bsui .iconpicker-popover.popover.bottomRightCorner,.bsui .iconpicker-popover.popover.bottomRight,.bsui .iconpicker-popover.popover.bottomLeft,.bsui .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.bsui .iconpicker-popover.popover.left,.bsui .iconpicker-popover.popover.leftBottom,.bsui .iconpicker-popover.popover.leftTop{margin-left:-10px}.bsui .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.bsui .iconpicker-popover.popover.inline>.arrow{display:none}.bsui .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.bsui .dropdown-menu.iconpicker-container{padding:0}.bsui .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.bsui .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.bsui .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.bsui .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover .popover-footer:before,.bsui .iconpicker-popover .popover-footer:after{content:" ";display:table}.bsui .iconpicker-popover .popover-footer:after{clear:both}.bsui .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.bsui .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.bsui .iconpicker-popover.popover>.arrow,.bsui .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bsui .iconpicker-popover.popover>.arrow{border-width:11px}.bsui .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.bsui .iconpicker-popover.popover.top>.arrow,.bsui .iconpicker-popover.popover.topLeft>.arrow,.bsui .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.bsui .iconpicker-popover.popover.top>.arrow:after,.bsui .iconpicker-popover.popover.topLeft>.arrow:after,.bsui .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.bsui .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.right>.arrow,.bsui .iconpicker-popover.popover.rightTop>.arrow,.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.right>.arrow:after,.bsui .iconpicker-popover.popover.rightTop>.arrow:after,.bsui .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.bsui .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.bottom>.arrow,.bsui .iconpicker-popover.popover.bottomRight>.arrow,.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.bsui .iconpicker-popover.popover.bottom>.arrow:after,.bsui .iconpicker-popover.popover.bottomRight>.arrow:after,.bsui .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.left>.arrow,.bsui .iconpicker-popover.popover.leftBottom>.arrow,.bsui .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.left>.arrow:after,.bsui .iconpicker-popover.popover.leftBottom>.arrow:after,.bsui .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.bsui .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.bsui .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.bsui .iconpicker:before,.bsui .iconpicker:after{content:" ";display:table}.bsui .iconpicker:after{clear:both}.bsui .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.bsui .iconpicker .iconpicker-items:before,.bsui .iconpicker .iconpicker-items:after{content:" ";display:table}.bsui .iconpicker .iconpicker-items:after{clear:both}.bsui .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.bsui .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.bsui .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.bsui .iconpicker-component{cursor:pointer}.bsui .tofront{position:relative;z-index:1}.bsui .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.bsui .c-pointer:hover{cursor:pointer}.bsui .c-move:hover{cursor:move}.bsui .z-index-1{z-index:1}@media (max-width: 991.98px){.bsui .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.bsui .display-3{font-size:2rem}}.bsui .row.gap-y>.col,.bsui .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.bsui .mt-neg5{margin-top:-5rem}.bsui .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.bsui .h-md-100-v{height:100vh}.bsui .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.bsui .h-xl-300{height:300px}.bsui .h-max-380{max-height:380px}}.bsui .btn-round{border-radius:30px !important}.bsui .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.bsui .btn:hover,.bsui .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-link:hover,.bsui .btn-link:focus{box-shadow:none}.bsui .btn-link.btn-primary{color:#1e73be;border-color:transparent}.bsui .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-success{color:#44c553;border-color:transparent}.bsui .btn-link.btn-info{color:#17a2b8;border-color:transparent}.bsui .btn-link.btn-warning{color:#ffc107;border-color:transparent}.bsui .btn-link.btn-danger{color:#dc3545;border-color:transparent}.bsui .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.bsui .btn-link.btn-dark{color:#343a40;border-color:transparent}.bsui .btn-link.btn-white{color:#fff;border-color:transparent}.bsui .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.bsui .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.bsui .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.bsui .btn-link.btn-gray{color:#ced4da;border-color:transparent}.bsui .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.bsui .btn-link.btn-orange{color:#fbb500;border-color:transparent}.bsui .btn-white{background-color:#fff}.bsui .input-round{border-radius:30px !important}.bsui .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.bsui .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.bsui .navbar{font-weight:400}.bsui .navbar-brand{margin-right:2rem;font-size:1.25rem}.bsui .dropdown-item{font-weight:300}.bsui .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.bsui .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.bsui .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.bsui .dropdown-menu.dropdown-caret-0:before{content:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.bsui .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.bsui .jumbotron-lg{padding:10rem 0}.bsui .jumbotron-xl{padding:15rem 0}.bsui .jumbotron-xl{min-height:100vh}.bsui .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bsui .bg-black{background-color:#000}.bsui .overlay{position:relative}.bsui .overlay .container{position:relative}.bsui .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.bsui .overlay-black:before{background-color:rgba(0,0,0,0.5)}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .bg-primary{fill:#1e73be !important}.bsui .bg-secondary{fill:#6c757d !important}.bsui .bg-success{fill:#44c553 !important}.bsui .bg-info{fill:#17a2b8 !important}.bsui .bg-warning{fill:#ffc107 !important}.bsui .bg-danger{fill:#dc3545 !important}.bsui .bg-light{fill:#f8f9fa !important}.bsui .bg-dark{fill:#343a40 !important}.bsui .bg-white{fill:#fff !important}.bsui .bg-purple{fill:#ad6edd !important}.bsui .bg-salmon{fill:#ff977a !important}.bsui .bg-cyan{fill:#35bdff !important}.bsui .bg-gray{fill:#ced4da !important}.bsui .bg-gray-dark{fill:#6c757d !important}.bsui .bg-indigo{fill:#502c6c !important}.bsui .bg-orange{fill:#fbb500 !important}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#e6e6e6}.bsui .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#e6e6e6}.bsui .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#e6e6e6}.bsui .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#e6e6e6}.bsui .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#e6e6e6}.bsui .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#e6e6e6}.bsui .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#e6e6e6}.bsui .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#e6e6e6}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#e6e6e6}.bsui .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#e6e6e6}.bsui .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#e6e6e6}.bsui .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#e6e6e6}.bsui .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#e6e6e6}.bsui .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#e6e6e6}.bsui .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#e6e6e6}.bsui ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.bsui .loginarea{z-index:1111}}.bsui .geodir-add-files .moxie-shim{position:initial !important;background:transparent}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .btn-round{border-radius:30px !important}.bsui .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.bsui .btn-facebook:focus,.bsui .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-facebook.disabled,.bsui .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:not(:disabled):not(.disabled):active,.bsui .btn-facebook:not(:disabled):not(.disabled).active,.show>.bsui .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.bsui .btn-facebook:not(:disabled):not(.disabled):active:focus,.bsui .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.bsui .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.bsui .btn-twitter:focus,.bsui .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-twitter.disabled,.bsui .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.bsui .btn-twitter:not(:disabled):not(.disabled):active,.bsui .btn-twitter:not(:disabled):not(.disabled).active,.show>.bsui .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.bsui .btn-twitter:not(:disabled):not(.disabled):active:focus,.bsui .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.bsui .btn-instagram:focus,.bsui .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram.disabled,.bsui .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.bsui .btn-instagram:not(:disabled):not(.disabled):active,.bsui .btn-instagram:not(:disabled):not(.disabled).active,.show>.bsui .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.bsui .btn-instagram:not(:disabled):not(.disabled):active:focus,.bsui .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.bsui .btn-linkedin:focus,.bsui .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-linkedin.disabled,.bsui .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:not(:disabled):not(.disabled):active,.bsui .btn-linkedin:not(:disabled):not(.disabled).active,.show>.bsui .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.bsui .btn-linkedin:not(:disabled):not(.disabled):active:focus,.bsui .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.bsui .btn-flickr:focus,.bsui .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr.disabled,.bsui .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:not(:disabled):not(.disabled):active,.bsui .btn-flickr:not(:disabled):not(.disabled).active,.show>.bsui .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.bsui .btn-flickr:not(:disabled):not(.disabled):active:focus,.bsui .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.bsui .btn-github:focus,.bsui .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github.disabled,.bsui .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:not(:disabled):not(.disabled):active,.bsui .btn-github:not(:disabled):not(.disabled).active,.show>.bsui .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.bsui .btn-github:not(:disabled):not(.disabled):active:focus,.bsui .btn-github:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.bsui .btn-youtube:focus,.bsui .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube.disabled,.bsui .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:not(:disabled):not(.disabled):active,.bsui .btn-youtube:not(:disabled):not(.disabled).active,.show>.bsui .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.bsui .btn-youtube:not(:disabled):not(.disabled):active:focus,.bsui .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.bsui .btn-wordpress:focus,.bsui .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress.disabled,.bsui .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:not(:disabled):not(.disabled):active,.bsui .btn-wordpress:not(:disabled):not(.disabled).active,.show>.bsui .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.bsui .btn-wordpress:not(:disabled):not(.disabled):active:focus,.bsui .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.bsui .btn-google:focus,.bsui .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google.disabled,.bsui .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:not(:disabled):not(.disabled):active,.bsui .btn-google:not(:disabled):not(.disabled).active,.show>.bsui .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.bsui .btn-google:not(:disabled):not(.disabled):active:focus,.bsui .btn-google:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.bsui .btn-yahoo:focus,.bsui .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo.disabled,.bsui .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:not(:disabled):not(.disabled):active,.bsui .btn-yahoo:not(:disabled):not(.disabled).active,.show>.bsui .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.bsui .btn-yahoo:not(:disabled):not(.disabled):active:focus,.bsui .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.bsui .btn-vkontakte:focus,.bsui .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte.disabled,.bsui .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.bsui .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.bsui .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.bsui .btn-tiktok:focus,.bsui .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok.disabled,.bsui .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.bsui .btn-tiktok:not(:disabled):not(.disabled):active,.bsui .btn-tiktok:not(:disabled):not(.disabled).active,.show>.bsui .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.bsui .btn-tiktok:not(:disabled):not(.disabled):active:focus,.bsui .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-circle.btn-sm,.bsui .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-circle.btn-lg,.bsui .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-square.btn-sm,.bsui .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-square.btn-lg,.bsui .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.bsui .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split.btn-sm .icon,.bsui .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.bsui .btn-icon-split.btn-sm .text,.bsui .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.bsui .btn-icon-split.btn-lg .icon,.bsui .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.bsui .btn-icon-split.btn-lg .text,.bsui .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.bsui .alert a{color:inherit;text-decoration:underline}.bsui .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.bsui .row.row-cols-md-0{display:block}.bsui .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.bsui .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.bsui .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.bsui .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.bsui .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.bsui .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.bsui .row.row-cols-md-0 .card .card-footer{flex:1 100%}.bsui .row.row-cols-md-0 .gv-hide-0{display:none}}.bsui .row-cols-md-2 .gv-hide-2{display:none}.bsui .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.bsui .row-cols-md-3 .gv-hide-2,.bsui .row-cols-md-3 .gv-hide-3{display:none}.bsui .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.bsui .row-cols-md-4 .gv-hide-2,.bsui .row-cols-md-4 .gv-hide-3,.bsui .row-cols-md-4 .gv-hide-4{display:none}.bsui .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.bsui .row-cols-md-5 .gv-hide-2,.bsui .row-cols-md-5 .gv-hide-3,.bsui .row-cols-md-5 .gv-hide-4,.bsui .row-cols-md-5 .gv-hide-5{display:none}.bsui .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.bsui .row .gv-hide-0,.bsui .row .gv-hide-2,.bsui .row .gv-hide-3,.bsui .row .gv-hide-4,.bsui .row .gv-hide-5{display:none}.bsui .row .gv-hide-s-2 .gv-secondary,.bsui .row .gv-hide-s-3 .gv-secondary,.bsui .row .gv-hide-s-4 .gv-secondary,.bsui .row .gv-hide-s-5 .gv-secondary{display:none}}.bsui .border-width-1{border-width:1px !important}.bsui .border-width-2{border-width:2px !important}.bsui .border-width-3{border-width:3px !important}.bsui .border-width-4{border-width:4px !important}.bsui .border-width-5{border-width:5px !important}.bsui .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bsui .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.bsui .hover-content{display:none}.bsui .hover-content.fas{display:none}.bsui .btn:hover .hover-content,.bsui .badge:hover .hover-content,.bsui .hover-swap:hover .hover-content{display:initial}.bsui .btn:hover .hover-content-original,.bsui .badge:hover .hover-content-original,.bsui .hover-swap:hover .hover-content-original{display:none}.bsui .overflow-visible{overflow:visible}.bsui .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.bsui .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.bsui .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.bsui .embed-item-cover-xy{object-fit:cover;height:100%}.bsui .embed-item-cover-x{height:auto !important}.bsui .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.bsui .embed-item-contain{object-fit:contain}.bsui .embed-has-action{transition:all .3s ease-in-out}.bsui .embed-has-action i,.bsui .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.bsui .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover i,.bsui .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.bsui .flatpickr-month .flatpickr-current-month>*{display:inline-block}.bsui .custom-select{-webkit-appearance:none;-moz-appearance:none}.bsui .badge-facebook{color:#fff;background-color:#3b5998}.bsui a.badge-facebook:hover,.bsui a.badge-facebook:focus{color:#fff;background-color:#2d4373}.bsui a.badge-facebook:focus,.bsui a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.bsui .badge-twitter{color:#212529;background-color:#55acee}.bsui a.badge-twitter:hover,.bsui a.badge-twitter:focus{color:#212529;background-color:#2795e9}.bsui a.badge-twitter:focus,.bsui a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-linkedin{color:#fff;background-color:#0976b4}.bsui a.badge-linkedin:hover,.bsui a.badge-linkedin:focus{color:#fff;background-color:#075683}.bsui a.badge-linkedin:focus,.bsui a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.bsui .badge-flickr{color:#fff;background-color:#f8457e}.bsui a.badge-flickr:hover,.bsui a.badge-flickr:focus{color:#fff;background-color:#f6145c}.bsui a.badge-flickr:focus,.bsui a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.bsui .badge-github{color:#fff;background-color:#333}.bsui a.badge-github:hover,.bsui a.badge-github:focus{color:#fff;background-color:#1a1a1a}.bsui a.badge-github:focus,.bsui a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.bsui .badge-youtube{color:#fff;background-color:#e52d27}.bsui a.badge-youtube:hover,.bsui a.badge-youtube:focus{color:#fff;background-color:#c21d17}.bsui a.badge-youtube:focus,.bsui a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.bsui .badge-wordpress{color:#fff;background-color:#207297}.bsui a.badge-wordpress:hover,.bsui a.badge-wordpress:focus{color:#fff;background-color:#17526d}.bsui a.badge-wordpress:focus,.bsui a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.bsui .badge-google{color:#fff;background-color:#ea4335}.bsui a.badge-google:hover,.bsui a.badge-google:focus{color:#fff;background-color:#d62516}.bsui a.badge-google:focus,.bsui a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.bsui .badge-yahoo{color:#fff;background-color:#6040d2}.bsui a.badge-yahoo:hover,.bsui a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.bsui a.badge-yahoo:focus,.bsui a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.bsui .badge-vkontakte{color:#fff;background-color:#4a76a8}.bsui a.badge-vkontakte:hover,.bsui a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.bsui a.badge-vkontakte:focus,.bsui a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.bsui .badge-tiktok{color:#fff;background-color:#010101}.bsui a.badge-tiktok:hover,.bsui a.badge-tiktok:focus{color:#fff;background-color:#000}.bsui a.badge-tiktok:focus,.bsui a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .bg-initial{background:initial !important}.bsui .bg-inherit{background:inherit !important}.bsui .overlay-white:before{background-color:rgba(255,255,255,0.5)}.bsui .form-label-group{position:relative;margin-bottom:1rem}.bsui .form-label-group>input,.bsui .form-label-group>textarea,.bsui .form-label-group>label{padding:.45rem 1.2rem}.bsui .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.bsui .form-label-group input::-webkit-input-placeholder,.bsui .form-label-group input:-ms-input-placeholder,.bsui .form-label-group input::-ms-input-placeholder,.bsui .form-label-group input::-moz-placeholder,.bsui .form-label-group input::placeholder,.bsui .form-label-group textarea::-webkit-input-placeholder,.bsui .form-label-group textarea:-ms-input-placeholder,.bsui .form-label-group textarea::-ms-input-placeholder,.bsui .form-label-group textarea::-moz-placeholder,.bsui .form-label-group textarea::placeholder{color:transparent}.bsui .form-label-group input:not(:placeholder-shown),.bsui .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.bsui .form-label-group input:not(:placeholder-shown) ~ label,.bsui .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.bsui .ab-left,.bsui .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.bsui .ab-left-angle,.bsui .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-left-angle .badge,.bsui .ab-top-left-angle .badge{display:block}.bsui .ab-right,.bsui .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.bsui .ab-right-angle,.bsui .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-right-angle .badge,.bsui .ab-top-right-angle .badge{display:block}.bsui .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.bsui .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-left-angle .badge{display:block}.bsui .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.bsui .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-right-angle .badge{display:block}.bsui .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.bsui .clear-both{clear:both}.bsui .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.bsui .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.bsui .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.bsui .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.bsui .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.bsui .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.bsui .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.bsui .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.bsui .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.bsui .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.bsui .hover-zoom{transition:transform .2s}.bsui .hover-zoom:hover{transform:scale(1.2)}.bsui .hover-shadow{transition:all ease 0.3s}.bsui .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-up:hover{top:-10px !important}.bsui .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-down:hover{bottom:-10px !important}.bsui .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-left:hover{left:-10px !important}.bsui .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-right:hover{right:-10px !important}.bsui .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;right:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem auto -1rem -1rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} diff --git a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css index c2ab36b..824e93f 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-compatibility.css @@ -11,4 +11,4 @@ * Licensed under the MIT License * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE * - */}.bsui :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.bsui *,.bsui *::before,.bsui *::after{box-sizing:border-box}.bsui html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}.bsui article,.bsui aside,.bsui figcaption,.bsui figure,.bsui footer,.bsui header,.bsui hgroup,.bsui main,.bsui nav,.bsui section{display:block}.bsui body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:left;background-color:#fff}.bsui [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.bsui hr{box-sizing:content-box;height:0;overflow:visible}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6{margin-top:0;margin-bottom:.5rem}.bsui p{margin-top:0;margin-bottom:1rem}.bsui abbr[title],.bsui abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.bsui address{margin-bottom:1rem;font-style:normal;line-height:inherit}.bsui ol,.bsui ul,.bsui dl{margin-top:0;margin-bottom:1rem}.bsui ol ol,.bsui ul ul,.bsui ol ul,.bsui ul ol{margin-bottom:0}.bsui dt{font-weight:700}.bsui dd{margin-bottom:.5rem;margin-left:0}.bsui blockquote{margin:0 0 1rem}.bsui b,.bsui strong{font-weight:bolder}.bsui small{font-size:80%}.bsui sub,.bsui sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.bsui sub{bottom:-.25em}.bsui sup{top:-.5em}.bsui a{color:#1e73be;text-decoration:none;background-color:transparent}.bsui a:hover{color:#144b7c;text-decoration:underline}.bsui a:not([href]):not([class]){color:inherit;text-decoration:none}.bsui a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.bsui pre,.bsui code,.bsui kbd,.bsui samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.bsui pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.bsui figure{margin:0 0 1rem}.bsui img{vertical-align:middle;border-style:none}.bsui svg{overflow:hidden;vertical-align:middle}.bsui table{border-collapse:collapse}.bsui caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}.bsui th{text-align:inherit;text-align:-webkit-match-parent}.bsui label{display:inline-block;margin-bottom:.5rem}.bsui button{border-radius:0}.bsui button:focus:not(:focus-visible){outline:0}.bsui input,.bsui button,.bsui select,.bsui optgroup,.bsui textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.bsui button,.bsui input{overflow:visible}.bsui button,.bsui select{text-transform:none}.bsui [role="button"]{cursor:pointer}.bsui select{word-wrap:normal}.bsui button,.bsui [type="button"],.bsui [type="reset"],.bsui [type="submit"]{-webkit-appearance:button}.bsui button:not(:disabled),.bsui [type="button"]:not(:disabled),.bsui [type="reset"]:not(:disabled),.bsui [type="submit"]:not(:disabled){cursor:pointer}.bsui button::-moz-focus-inner,.bsui [type="button"]::-moz-focus-inner,.bsui [type="reset"]::-moz-focus-inner,.bsui [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.bsui input[type="radio"],.bsui input[type="checkbox"]{box-sizing:border-box;padding:0}.bsui textarea{overflow:auto;resize:vertical}.bsui fieldset{min-width:0;padding:0;margin:0;border:0}.bsui legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.bsui progress{vertical-align:baseline}.bsui [type="number"]::-webkit-inner-spin-button,.bsui [type="number"]::-webkit-outer-spin-button{height:auto}.bsui [type="search"]{outline-offset:-2px;-webkit-appearance:none}.bsui [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.bsui ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.bsui output{display:inline-block}.bsui summary{display:list-item;cursor:pointer}.bsui template{display:none}.bsui [hidden]{display:none !important}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6,.bsui .h1,.bsui .h2,.bsui .h3,.bsui .h4,.bsui .h5,.bsui .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.bsui h1,.bsui .h1{font-size:2.5rem}.bsui h2,.bsui .h2{font-size:2rem}.bsui h3,.bsui .h3{font-size:1.75rem}.bsui h4,.bsui .h4{font-size:1.5rem}.bsui h5,.bsui .h5{font-size:1.25rem}.bsui h6,.bsui .h6{font-size:1rem}.bsui .lead{font-size:1.25rem;font-weight:300}.bsui .display-1{font-size:6rem;font-weight:300;line-height:1.2}.bsui .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.bsui .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.bsui .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.bsui hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.bsui small,.bsui .small{font-size:85%;font-weight:400}.bsui mark,.bsui .mark{padding:.2em;background-color:#fcf8e3}.bsui .list-unstyled{padding-left:0;list-style:none}.bsui .list-inline{padding-left:0;list-style:none}.bsui .list-inline-item{display:inline-block}.bsui .list-inline-item:not(:last-child){margin-right:.5rem}.bsui .initialism{font-size:90%;text-transform:uppercase}.bsui .blockquote{margin-bottom:1rem;font-size:1.25rem}.bsui .blockquote-footer{display:block;font-size:85%;color:#6c757d}.bsui .blockquote-footer::before{content:"\2014\00A0"}.bsui .img-fluid{max-width:100%;height:auto}.bsui .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.bsui .figure{display:inline-block}.bsui .figure-img{margin-bottom:.5rem;line-height:1}.bsui .figure-caption{font-size:90%;color:#6c757d}.bsui code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.bsui code{color:inherit}.bsui kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.bsui kbd kbd{padding:0;font-size:100%;font-weight:700}.bsui pre{display:block;font-size:100%;color:#212529}.bsui pre code{font-size:inherit;color:inherit;word-break:normal}.bsui .pre-scrollable{max-height:340px;overflow-y:scroll}.bsui .container,.bsui .container-fluid,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.bsui .container,.bsui .container-sm{max-width:540px}}@media (min-width: 768px){.bsui .container,.bsui .container-sm,.bsui .container-md{max-width:720px}}@media (min-width: 992px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg{max-width:960px}}@media (min-width: 1200px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl{max-width:1140px}}@media (min-width: 1400px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{max-width:1320px}}.bsui .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.bsui .no-gutters{margin-right:0;margin-left:0}.bsui .no-gutters>.col,.bsui .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.bsui .col-1,.bsui .col-2,.bsui .col-3,.bsui .col-4,.bsui .col-5,.bsui .col-6,.bsui .col-7,.bsui .col-8,.bsui .col-9,.bsui .col-10,.bsui .col-11,.bsui .col-12,.bsui .col,.bsui .col-auto,.bsui .col-sm-1,.bsui .col-sm-2,.bsui .col-sm-3,.bsui .col-sm-4,.bsui .col-sm-5,.bsui .col-sm-6,.bsui .col-sm-7,.bsui .col-sm-8,.bsui .col-sm-9,.bsui .col-sm-10,.bsui .col-sm-11,.bsui .col-sm-12,.bsui .col-sm,.bsui .col-sm-auto,.bsui .col-md-1,.bsui .col-md-2,.bsui .col-md-3,.bsui .col-md-4,.bsui .col-md-5,.bsui .col-md-6,.bsui .col-md-7,.bsui .col-md-8,.bsui .col-md-9,.bsui .col-md-10,.bsui .col-md-11,.bsui .col-md-12,.bsui .col-md,.bsui .col-md-auto,.bsui .col-lg-1,.bsui .col-lg-2,.bsui .col-lg-3,.bsui .col-lg-4,.bsui .col-lg-5,.bsui .col-lg-6,.bsui .col-lg-7,.bsui .col-lg-8,.bsui .col-lg-9,.bsui .col-lg-10,.bsui .col-lg-11,.bsui .col-lg-12,.bsui .col-lg,.bsui .col-lg-auto,.bsui .col-xl-1,.bsui .col-xl-2,.bsui .col-xl-3,.bsui .col-xl-4,.bsui .col-xl-5,.bsui .col-xl-6,.bsui .col-xl-7,.bsui .col-xl-8,.bsui .col-xl-9,.bsui .col-xl-10,.bsui .col-xl-11,.bsui .col-xl-12,.bsui .col-xl,.bsui .col-xl-auto,.bsui .col-xxl-1,.bsui .col-xxl-2,.bsui .col-xxl-3,.bsui .col-xxl-4,.bsui .col-xxl-5,.bsui .col-xxl-6,.bsui .col-xxl-7,.bsui .col-xxl-8,.bsui .col-xxl-9,.bsui .col-xxl-10,.bsui .col-xxl-11,.bsui .col-xxl-12,.bsui .col-xxl,.bsui .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.bsui .col{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-3{flex:0 0 25%;max-width:25%}.bsui .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-6{flex:0 0 50%;max-width:50%}.bsui .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-9{flex:0 0 75%;max-width:75%}.bsui .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-12{flex:0 0 100%;max-width:100%}.bsui .order-first{order:-1}.bsui .order-last{order:13}.bsui .order-0{order:0}.bsui .order-1{order:1}.bsui .order-2{order:2}.bsui .order-3{order:3}.bsui .order-4{order:4}.bsui .order-5{order:5}.bsui .order-6{order:6}.bsui .order-7{order:7}.bsui .order-8{order:8}.bsui .order-9{order:9}.bsui .order-10{order:10}.bsui .order-11{order:11}.bsui .order-12{order:12}.bsui .offset-1{margin-left:8.33333333%}.bsui .offset-2{margin-left:16.66666667%}.bsui .offset-3{margin-left:25%}.bsui .offset-4{margin-left:33.33333333%}.bsui .offset-5{margin-left:41.66666667%}.bsui .offset-6{margin-left:50%}.bsui .offset-7{margin-left:58.33333333%}.bsui .offset-8{margin-left:66.66666667%}.bsui .offset-9{margin-left:75%}.bsui .offset-10{margin-left:83.33333333%}.bsui .offset-11{margin-left:91.66666667%}@media (min-width: 576px){.bsui .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-sm-3{flex:0 0 25%;max-width:25%}.bsui .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-sm-6{flex:0 0 50%;max-width:50%}.bsui .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-sm-9{flex:0 0 75%;max-width:75%}.bsui .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-sm-12{flex:0 0 100%;max-width:100%}.bsui .order-sm-first{order:-1}.bsui .order-sm-last{order:13}.bsui .order-sm-0{order:0}.bsui .order-sm-1{order:1}.bsui .order-sm-2{order:2}.bsui .order-sm-3{order:3}.bsui .order-sm-4{order:4}.bsui .order-sm-5{order:5}.bsui .order-sm-6{order:6}.bsui .order-sm-7{order:7}.bsui .order-sm-8{order:8}.bsui .order-sm-9{order:9}.bsui .order-sm-10{order:10}.bsui .order-sm-11{order:11}.bsui .order-sm-12{order:12}.bsui .offset-sm-0{margin-left:0}.bsui .offset-sm-1{margin-left:8.33333333%}.bsui .offset-sm-2{margin-left:16.66666667%}.bsui .offset-sm-3{margin-left:25%}.bsui .offset-sm-4{margin-left:33.33333333%}.bsui .offset-sm-5{margin-left:41.66666667%}.bsui .offset-sm-6{margin-left:50%}.bsui .offset-sm-7{margin-left:58.33333333%}.bsui .offset-sm-8{margin-left:66.66666667%}.bsui .offset-sm-9{margin-left:75%}.bsui .offset-sm-10{margin-left:83.33333333%}.bsui .offset-sm-11{margin-left:91.66666667%}}@media (min-width: 768px){.bsui .col-md{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-md-3{flex:0 0 25%;max-width:25%}.bsui .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-md-6{flex:0 0 50%;max-width:50%}.bsui .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-md-9{flex:0 0 75%;max-width:75%}.bsui .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-md-12{flex:0 0 100%;max-width:100%}.bsui .order-md-first{order:-1}.bsui .order-md-last{order:13}.bsui .order-md-0{order:0}.bsui .order-md-1{order:1}.bsui .order-md-2{order:2}.bsui .order-md-3{order:3}.bsui .order-md-4{order:4}.bsui .order-md-5{order:5}.bsui .order-md-6{order:6}.bsui .order-md-7{order:7}.bsui .order-md-8{order:8}.bsui .order-md-9{order:9}.bsui .order-md-10{order:10}.bsui .order-md-11{order:11}.bsui .order-md-12{order:12}.bsui .offset-md-0{margin-left:0}.bsui .offset-md-1{margin-left:8.33333333%}.bsui .offset-md-2{margin-left:16.66666667%}.bsui .offset-md-3{margin-left:25%}.bsui .offset-md-4{margin-left:33.33333333%}.bsui .offset-md-5{margin-left:41.66666667%}.bsui .offset-md-6{margin-left:50%}.bsui .offset-md-7{margin-left:58.33333333%}.bsui .offset-md-8{margin-left:66.66666667%}.bsui .offset-md-9{margin-left:75%}.bsui .offset-md-10{margin-left:83.33333333%}.bsui .offset-md-11{margin-left:91.66666667%}}@media (min-width: 992px){.bsui .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-lg-3{flex:0 0 25%;max-width:25%}.bsui .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-lg-6{flex:0 0 50%;max-width:50%}.bsui .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-lg-9{flex:0 0 75%;max-width:75%}.bsui .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-lg-12{flex:0 0 100%;max-width:100%}.bsui .order-lg-first{order:-1}.bsui .order-lg-last{order:13}.bsui .order-lg-0{order:0}.bsui .order-lg-1{order:1}.bsui .order-lg-2{order:2}.bsui .order-lg-3{order:3}.bsui .order-lg-4{order:4}.bsui .order-lg-5{order:5}.bsui .order-lg-6{order:6}.bsui .order-lg-7{order:7}.bsui .order-lg-8{order:8}.bsui .order-lg-9{order:9}.bsui .order-lg-10{order:10}.bsui .order-lg-11{order:11}.bsui .order-lg-12{order:12}.bsui .offset-lg-0{margin-left:0}.bsui .offset-lg-1{margin-left:8.33333333%}.bsui .offset-lg-2{margin-left:16.66666667%}.bsui .offset-lg-3{margin-left:25%}.bsui .offset-lg-4{margin-left:33.33333333%}.bsui .offset-lg-5{margin-left:41.66666667%}.bsui .offset-lg-6{margin-left:50%}.bsui .offset-lg-7{margin-left:58.33333333%}.bsui .offset-lg-8{margin-left:66.66666667%}.bsui .offset-lg-9{margin-left:75%}.bsui .offset-lg-10{margin-left:83.33333333%}.bsui .offset-lg-11{margin-left:91.66666667%}}@media (min-width: 1200px){.bsui .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xl-3{flex:0 0 25%;max-width:25%}.bsui .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xl-6{flex:0 0 50%;max-width:50%}.bsui .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xl-9{flex:0 0 75%;max-width:75%}.bsui .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xl-12{flex:0 0 100%;max-width:100%}.bsui .order-xl-first{order:-1}.bsui .order-xl-last{order:13}.bsui .order-xl-0{order:0}.bsui .order-xl-1{order:1}.bsui .order-xl-2{order:2}.bsui .order-xl-3{order:3}.bsui .order-xl-4{order:4}.bsui .order-xl-5{order:5}.bsui .order-xl-6{order:6}.bsui .order-xl-7{order:7}.bsui .order-xl-8{order:8}.bsui .order-xl-9{order:9}.bsui .order-xl-10{order:10}.bsui .order-xl-11{order:11}.bsui .order-xl-12{order:12}.bsui .offset-xl-0{margin-left:0}.bsui .offset-xl-1{margin-left:8.33333333%}.bsui .offset-xl-2{margin-left:16.66666667%}.bsui .offset-xl-3{margin-left:25%}.bsui .offset-xl-4{margin-left:33.33333333%}.bsui .offset-xl-5{margin-left:41.66666667%}.bsui .offset-xl-6{margin-left:50%}.bsui .offset-xl-7{margin-left:58.33333333%}.bsui .offset-xl-8{margin-left:66.66666667%}.bsui .offset-xl-9{margin-left:75%}.bsui .offset-xl-10{margin-left:83.33333333%}.bsui .offset-xl-11{margin-left:91.66666667%}}@media (min-width: 1400px){.bsui .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xxl-3{flex:0 0 25%;max-width:25%}.bsui .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xxl-6{flex:0 0 50%;max-width:50%}.bsui .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xxl-9{flex:0 0 75%;max-width:75%}.bsui .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xxl-12{flex:0 0 100%;max-width:100%}.bsui .order-xxl-first{order:-1}.bsui .order-xxl-last{order:13}.bsui .order-xxl-0{order:0}.bsui .order-xxl-1{order:1}.bsui .order-xxl-2{order:2}.bsui .order-xxl-3{order:3}.bsui .order-xxl-4{order:4}.bsui .order-xxl-5{order:5}.bsui .order-xxl-6{order:6}.bsui .order-xxl-7{order:7}.bsui .order-xxl-8{order:8}.bsui .order-xxl-9{order:9}.bsui .order-xxl-10{order:10}.bsui .order-xxl-11{order:11}.bsui .order-xxl-12{order:12}.bsui .offset-xxl-0{margin-left:0}.bsui .offset-xxl-1{margin-left:8.33333333%}.bsui .offset-xxl-2{margin-left:16.66666667%}.bsui .offset-xxl-3{margin-left:25%}.bsui .offset-xxl-4{margin-left:33.33333333%}.bsui .offset-xxl-5{margin-left:41.66666667%}.bsui .offset-xxl-6{margin-left:50%}.bsui .offset-xxl-7{margin-left:58.33333333%}.bsui .offset-xxl-8{margin-left:66.66666667%}.bsui .offset-xxl-9{margin-left:75%}.bsui .offset-xxl-10{margin-left:83.33333333%}.bsui .offset-xxl-11{margin-left:91.66666667%}}.bsui .table{width:100%;margin-bottom:1rem;color:#212529}.bsui .table th,.bsui .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.bsui .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.bsui .table tbody+tbody{border-top:2px solid #dee2e6}.bsui .table-sm th,.bsui .table-sm td{padding:.3rem}.bsui .table-bordered{border:1px solid #dee2e6}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6}.bsui .table-bordered thead th,.bsui .table-bordered thead td{border-bottom-width:2px}.bsui .table-borderless th,.bsui .table-borderless td,.bsui .table-borderless thead th,.bsui .table-borderless tbody+tbody{border:0}.bsui .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.bsui .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.bsui .table-primary,.bsui .table-primary>th,.bsui .table-primary>td{background-color:#c0d8ed}.bsui .table-primary th,.bsui .table-primary td,.bsui .table-primary thead th,.bsui .table-primary tbody+tbody{border-color:#8ab6dd}.bsui .table-hover .table-primary:hover{background-color:#accce7}.bsui .table-hover .table-primary:hover>td,.bsui .table-hover .table-primary:hover>th{background-color:#accce7}.bsui .table-secondary,.bsui .table-secondary>th,.bsui .table-secondary>td{background-color:#d6d8db}.bsui .table-secondary th,.bsui .table-secondary td,.bsui .table-secondary thead th,.bsui .table-secondary tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-secondary:hover{background-color:#c8cbcf}.bsui .table-hover .table-secondary:hover>td,.bsui .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.bsui .table-success,.bsui .table-success>th,.bsui .table-success>td{background-color:#cbefcf}.bsui .table-success th,.bsui .table-success td,.bsui .table-success thead th,.bsui .table-success tbody+tbody{border-color:#9ee1a6}.bsui .table-hover .table-success:hover{background-color:#b8e9bd}.bsui .table-hover .table-success:hover>td,.bsui .table-hover .table-success:hover>th{background-color:#b8e9bd}.bsui .table-info,.bsui .table-info>th,.bsui .table-info>td{background-color:#bee5eb}.bsui .table-info th,.bsui .table-info td,.bsui .table-info thead th,.bsui .table-info tbody+tbody{border-color:#86cfda}.bsui .table-hover .table-info:hover{background-color:#abdde5}.bsui .table-hover .table-info:hover>td,.bsui .table-hover .table-info:hover>th{background-color:#abdde5}.bsui .table-warning,.bsui .table-warning>th,.bsui .table-warning>td{background-color:#ffeeba}.bsui .table-warning th,.bsui .table-warning td,.bsui .table-warning thead th,.bsui .table-warning tbody+tbody{border-color:#ffdf7e}.bsui .table-hover .table-warning:hover{background-color:#ffe8a1}.bsui .table-hover .table-warning:hover>td,.bsui .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bsui .table-danger,.bsui .table-danger>th,.bsui .table-danger>td{background-color:#f5c6cb}.bsui .table-danger th,.bsui .table-danger td,.bsui .table-danger thead th,.bsui .table-danger tbody+tbody{border-color:#ed969e}.bsui .table-hover .table-danger:hover{background-color:#f1b0b7}.bsui .table-hover .table-danger:hover>td,.bsui .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bsui .table-light,.bsui .table-light>th,.bsui .table-light>td{background-color:#fdfdfe}.bsui .table-light th,.bsui .table-light td,.bsui .table-light thead th,.bsui .table-light tbody+tbody{border-color:#fbfcfc}.bsui .table-hover .table-light:hover{background-color:#ececf6}.bsui .table-hover .table-light:hover>td,.bsui .table-hover .table-light:hover>th{background-color:#ececf6}.bsui .table-dark,.bsui .table-dark>th,.bsui .table-dark>td{background-color:#c6c8ca}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#95999c}.bsui .table-hover .table-dark:hover{background-color:#b9bbbe}.bsui .table-hover .table-dark:hover>td,.bsui .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bsui .table-white,.bsui .table-white>th,.bsui .table-white>td{background-color:#fff}.bsui .table-white th,.bsui .table-white td,.bsui .table-white thead th,.bsui .table-white tbody+tbody{border-color:#fff}.bsui .table-hover .table-white:hover{background-color:#f2f2f2}.bsui .table-hover .table-white:hover>td,.bsui .table-hover .table-white:hover>th{background-color:#f2f2f2}.bsui .table-purple,.bsui .table-purple>th,.bsui .table-purple>td{background-color:#e8d6f5}.bsui .table-purple th,.bsui .table-purple td,.bsui .table-purple thead th,.bsui .table-purple tbody+tbody{border-color:#d4b4ed}.bsui .table-hover .table-purple:hover{background-color:#ddc2f0}.bsui .table-hover .table-purple:hover>td,.bsui .table-hover .table-purple:hover>th{background-color:#ddc2f0}.bsui .table-salmon,.bsui .table-salmon>th,.bsui .table-salmon>td{background-color:#ffe2da}.bsui .table-salmon th,.bsui .table-salmon td,.bsui .table-salmon thead th,.bsui .table-salmon tbody+tbody{border-color:#ffc9ba}.bsui .table-hover .table-salmon:hover{background-color:#ffcec1}.bsui .table-hover .table-salmon:hover>td,.bsui .table-hover .table-salmon:hover>th{background-color:#ffcec1}.bsui .table-cyan,.bsui .table-cyan>th,.bsui .table-cyan>td{background-color:#c6edff}.bsui .table-cyan th,.bsui .table-cyan td,.bsui .table-cyan thead th,.bsui .table-cyan tbody+tbody{border-color:#96ddff}.bsui .table-hover .table-cyan:hover{background-color:#ade5ff}.bsui .table-hover .table-cyan:hover>td,.bsui .table-hover .table-cyan:hover>th{background-color:#ade5ff}.bsui .table-gray,.bsui .table-gray>th,.bsui .table-gray>td{background-color:#f1f3f5}.bsui .table-gray th,.bsui .table-gray td,.bsui .table-gray thead th,.bsui .table-gray tbody+tbody{border-color:#e6e9ec}.bsui .table-hover .table-gray:hover{background-color:#e2e6ea}.bsui .table-hover .table-gray:hover>td,.bsui .table-hover .table-gray:hover>th{background-color:#e2e6ea}.bsui .table-gray-dark,.bsui .table-gray-dark>th,.bsui .table-gray-dark>td{background-color:#d6d8db}.bsui .table-gray-dark th,.bsui .table-gray-dark td,.bsui .table-gray-dark thead th,.bsui .table-gray-dark tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.bsui .table-hover .table-gray-dark:hover>td,.bsui .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.bsui .table-indigo,.bsui .table-indigo>th,.bsui .table-indigo>td{background-color:#cec4d6}.bsui .table-indigo th,.bsui .table-indigo td,.bsui .table-indigo thead th,.bsui .table-indigo tbody+tbody{border-color:#a491b3}.bsui .table-hover .table-indigo:hover{background-color:#c2b5cc}.bsui .table-hover .table-indigo:hover>td,.bsui .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.bsui .table-orange,.bsui .table-orange>th,.bsui .table-orange>td{background-color:#feeab8}.bsui .table-orange th,.bsui .table-orange td,.bsui .table-orange thead th,.bsui .table-orange tbody+tbody{border-color:#fdd97a}.bsui .table-hover .table-orange:hover{background-color:#fee39f}.bsui .table-hover .table-orange:hover>td,.bsui .table-hover .table-orange:hover>th{background-color:#fee39f}.bsui .table-active,.bsui .table-active>th,.bsui .table-active>td{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover>td,.bsui .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.bsui .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.bsui .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.bsui .table-dark{color:#fff;background-color:#343a40}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th{border-color:#454d55}.bsui .table-dark.table-bordered{border:0}.bsui .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.bsui .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.bsui .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.bsui .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.bsui .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.bsui .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.bsui .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xxl>.table-bordered{border:0}}.bsui .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive>.table-bordered{border:0}.bsui .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .form-control{transition:none}}.bsui .form-control::-ms-expand{background-color:transparent;border:0}.bsui .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .form-control::placeholder{color:#6c757d;opacity:1}.bsui .form-control:disabled,.bsui .form-control[readonly]{background-color:#e9ecef;opacity:1}.bsui input[type="date"].form-control,.bsui input[type="time"].form-control,.bsui input[type="datetime-local"].form-control,.bsui input[type="month"].form-control{appearance:none}.bsui select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.bsui .form-control-file,.bsui .form-control-range{display:block;width:100%}.bsui .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.bsui .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.bsui .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.bsui .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.bsui .form-control-plaintext.form-control-sm,.bsui .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.bsui .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui select.form-control[size],.bsui select.form-control[multiple]{height:auto}.bsui textarea.form-control{height:auto}.bsui .form-group{margin-bottom:1rem}.bsui .form-text{display:block;margin-top:.25rem}.bsui .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.bsui .form-row>.col,.bsui .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.bsui .form-check{position:relative;display:block;padding-left:1.25rem}.bsui .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.bsui .form-check-input[disabled] ~ .form-check-label,.bsui .form-check-input:disabled ~ .form-check-label{color:#6c757d}.bsui .form-check-label{margin-bottom:0}.bsui .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.bsui .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.bsui .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.bsui .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.bsui .valid-tooltip,.form-row>[class*="col-"]>.bsui .valid-tooltip{left:5px}.was-validated .bsui:valid ~ .valid-feedback,.was-validated .bsui:valid ~ .valid-tooltip,.bsui.is-valid ~ .valid-feedback,.bsui.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .form-control:valid,.bsui .form-control.is-valid{border-color:#44c553;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:valid:focus,.bsui .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui select.form-control:valid,.bsui select.form-control.is-valid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .bsui textarea.form-control:valid,.bsui textarea.form-control.is-valid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .bsui .custom-select:valid,.bsui .custom-select.is-valid{border-color:#44c553;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:valid:focus,.bsui .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .form-check-input:valid ~ .form-check-label,.bsui .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .bsui .form-check-input:valid ~ .valid-feedback,.was-validated .bsui .form-check-input:valid ~ .valid-tooltip,.bsui .form-check-input.is-valid ~ .valid-feedback,.bsui .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label,.bsui .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label::before,.bsui .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-control-input:valid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .bsui .custom-control-input:valid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-file-input:valid ~ .custom-file-label,.bsui .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .bsui .custom-file-input:valid:focus ~ .custom-file-label,.bsui .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.bsui .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.bsui .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.bsui .invalid-tooltip,.form-row>[class*="col-"]>.bsui .invalid-tooltip{left:5px}.was-validated .bsui:invalid ~ .invalid-feedback,.was-validated .bsui:invalid ~ .invalid-tooltip,.bsui.is-invalid ~ .invalid-feedback,.bsui.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .form-control:invalid,.bsui .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:invalid:focus,.bsui .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui select.form-control:invalid,.bsui select.form-control.is-invalid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .bsui textarea.form-control:invalid,.bsui textarea.form-control.is-invalid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .bsui .custom-select:invalid,.bsui .custom-select.is-invalid{border-color:#dc3545;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:invalid:focus,.bsui .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .form-check-input:invalid ~ .form-check-label,.bsui .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .bsui .form-check-input:invalid ~ .invalid-feedback,.was-validated .bsui .form-check-input:invalid ~ .invalid-tooltip,.bsui .form-check-input.is-invalid ~ .invalid-feedback,.bsui .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label,.bsui .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-control-input:invalid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .bsui .custom-control-input:invalid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid ~ .custom-file-label,.bsui .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid:focus ~ .custom-file-label,.bsui .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.bsui .form-inline{display:flex;flex-flow:row wrap;align-items:center}.bsui .form-inline .form-check{width:100%}@media (min-width: 576px){.bsui .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.bsui .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.bsui .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.bsui .form-inline .form-control-plaintext{display:inline-block}.bsui .form-inline .input-group,.bsui .form-inline .custom-select{width:auto}.bsui .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.bsui .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.bsui .form-inline .custom-control{align-items:center;justify-content:center}.bsui .form-inline .custom-control-label{margin-bottom:0}}.bsui .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .btn{transition:none}}.bsui .btn:hover{color:#212529;text-decoration:none}.bsui .btn:focus,.bsui .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .btn.disabled,.bsui .btn:disabled{opacity:.65}.bsui .btn:not(:disabled):not(.disabled){cursor:pointer}.bsui a.btn.disabled,.bsui fieldset:disabled a.btn{pointer-events:none}.bsui .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.bsui .btn-primary:focus,.bsui .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-primary.disabled,.bsui .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:not(:disabled):not(.disabled):active,.bsui .btn-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.bsui .btn-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-secondary:focus,.bsui .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-secondary.disabled,.bsui .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:not(:disabled):not(.disabled):active,.bsui .btn-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.bsui .btn-success:focus,.bsui .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-success.disabled,.bsui .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:not(:disabled):not(.disabled):active,.bsui .btn-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.bsui .btn-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.bsui .btn-info:focus,.bsui .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-info.disabled,.bsui .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:not(:disabled):not(.disabled):active,.bsui .btn-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.bsui .btn-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.bsui .btn-warning:focus,.bsui .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-warning.disabled,.bsui .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:not(:disabled):not(.disabled):active,.bsui .btn-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.bsui .btn-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.bsui .btn-danger:focus,.bsui .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-danger.disabled,.bsui .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:not(:disabled):not(.disabled):active,.bsui .btn-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.bsui .btn-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.bsui .btn-light:focus,.bsui .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-light.disabled,.bsui .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:not(:disabled):not(.disabled):active,.bsui .btn-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.bsui .btn-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.bsui .btn-dark:focus,.bsui .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-dark.disabled,.bsui .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:not(:disabled):not(.disabled):active,.bsui .btn-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.bsui .btn-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-white{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.bsui .btn-white:focus,.bsui .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-white.disabled,.bsui .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:not(:disabled):not(.disabled):active,.bsui .btn-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.bsui .btn-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.bsui .btn-purple:focus,.bsui .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-purple.disabled,.bsui .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:not(:disabled):not(.disabled):active,.bsui .btn-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.bsui .btn-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.bsui .btn-salmon:focus,.bsui .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-salmon.disabled,.bsui .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:not(:disabled):not(.disabled):active,.bsui .btn-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.bsui .btn-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.bsui .btn-cyan:focus,.bsui .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-cyan.disabled,.bsui .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:not(:disabled):not(.disabled):active,.bsui .btn-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.bsui .btn-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.bsui .btn-gray:focus,.bsui .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray.disabled,.bsui .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:not(:disabled):not(.disabled):active,.bsui .btn-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.bsui .btn-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-gray-dark:focus,.bsui .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-gray-dark.disabled,.bsui .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.bsui .btn-indigo:focus,.bsui .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-indigo.disabled,.bsui .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:not(:disabled):not(.disabled):active,.bsui .btn-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.bsui .btn-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.bsui .btn-orange:focus,.bsui .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-orange.disabled,.bsui .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:not(:disabled):not(.disabled):active,.bsui .btn-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.bsui .btn-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-outline-primary{color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:focus,.bsui .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-primary.disabled,.bsui .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:focus,.bsui .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-secondary.disabled,.bsui .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-success{color:#44c553;border-color:#44c553}.bsui .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:focus,.bsui .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-success.disabled,.bsui .btn-outline-success:disabled{color:#44c553;background-color:transparent}.bsui .btn-outline-success:not(:disabled):not(.disabled):active,.bsui .btn-outline-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:focus,.bsui .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-info.disabled,.bsui .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.bsui .btn-outline-info:not(:disabled):not(.disabled):active,.bsui .btn-outline-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-warning{color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:focus,.bsui .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-warning.disabled,.bsui .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-danger{color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:focus,.bsui .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-danger.disabled,.bsui .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:focus,.bsui .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-light.disabled,.bsui .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.bsui .btn-outline-light:not(:disabled):not(.disabled):active,.bsui .btn-outline-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-dark{color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:focus,.bsui .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-dark.disabled,.bsui .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-white{color:#fff;border-color:#fff}.bsui .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:focus,.bsui .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-white.disabled,.bsui .btn-outline-white:disabled{color:#fff;background-color:transparent}.bsui .btn-outline-white:not(:disabled):not(.disabled):active,.bsui .btn-outline-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:focus,.bsui .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-purple.disabled,.bsui .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:focus,.bsui .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-salmon.disabled,.bsui .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:focus,.bsui .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-cyan.disabled,.bsui .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-gray{color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:focus,.bsui .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray.disabled,.bsui .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:focus,.bsui .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-gray-dark.disabled,.bsui .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:focus,.bsui .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-indigo.disabled,.bsui .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-orange{color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:focus,.bsui .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-outline-orange.disabled,.bsui .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.bsui .btn-link:hover{color:#144b7c;text-decoration:underline}.bsui .btn-link:focus,.bsui .btn-link.focus{text-decoration:underline}.bsui .btn-link:disabled,.bsui .btn-link.disabled{color:#6c757d;pointer-events:none}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-block{display:block;width:100%}.bsui .btn-block+.btn-block{margin-top:.5rem}.bsui input[type="submit"].btn-block,.bsui input[type="reset"].btn-block,.bsui input[type="button"].btn-block{width:100%}.bsui .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.bsui .fade{transition:none}}.bsui .fade:not(.show){opacity:0}.bsui .collapse:not(.show){display:none}.bsui .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing{transition:none}}.bsui .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing.width{transition:none}}.bsui .dropup,.bsui .dropright,.bsui .dropdown,.bsui .dropleft{position:relative}.bsui .dropdown-toggle{white-space:nowrap}.bsui .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.bsui .dropdown-toggle:empty::after{margin-left:0}.bsui .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.bsui .dropdown-menu-left{right:auto;left:0}.bsui .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.bsui .dropdown-menu-sm-left{right:auto;left:0}.bsui .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.bsui .dropdown-menu-md-left{right:auto;left:0}.bsui .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.bsui .dropdown-menu-lg-left{right:auto;left:0}.bsui .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.bsui .dropdown-menu-xl-left{right:auto;left:0}.bsui .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.bsui .dropdown-menu-xxl-left{right:auto;left:0}.bsui .dropdown-menu-xxl-right{right:0;left:auto}}.bsui .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.bsui .dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.bsui .dropup .dropdown-toggle:empty::after{margin-left:0}.bsui .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.bsui .dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.bsui .dropright .dropdown-toggle:empty::after{margin-left:0}.bsui .dropright .dropdown-toggle::after{vertical-align:0}.bsui .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.bsui .dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.bsui .dropleft .dropdown-toggle::after{display:none}.bsui .dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.bsui .dropleft .dropdown-toggle:empty::after{margin-left:0}.bsui .dropleft .dropdown-toggle::before{vertical-align:0}.bsui .dropdown-menu[x-placement^="top"],.bsui .dropdown-menu[x-placement^="right"],.bsui .dropdown-menu[x-placement^="bottom"],.bsui .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.bsui .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.bsui .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.bsui .dropdown-item:hover,.bsui .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.bsui .dropdown-item.active,.bsui .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.bsui .dropdown-item.disabled,.bsui .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.bsui .dropdown-menu.show{display:block}.bsui .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.bsui .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.bsui .btn-group,.bsui .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.bsui .btn-group>.btn,.bsui .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.bsui .btn-group>.btn:hover,.bsui .btn-group-vertical>.btn:hover{z-index:1}.bsui .btn-group>.btn:focus,.bsui .btn-group>.btn:active,.bsui .btn-group>.btn.active,.bsui .btn-group-vertical>.btn:focus,.bsui .btn-group-vertical>.btn:active,.bsui .btn-group-vertical>.btn.active{z-index:1}.bsui .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.bsui .btn-toolbar .input-group{width:auto}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child){margin-left:-1px}.bsui .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.bsui .dropdown-toggle-split::after,.dropup .bsui .dropdown-toggle-split::after,.dropright .bsui .dropdown-toggle-split::after{margin-left:0}.dropleft .bsui .dropdown-toggle-split::before{margin-right:0}.bsui .btn-sm+.dropdown-toggle-split,.bsui .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.bsui .btn-lg+.dropdown-toggle-split,.bsui .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.bsui .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.bsui .btn-group-vertical>.btn,.bsui .btn-group-vertical>.btn-group{width:100%}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.bsui .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.bsui .btn-group-toggle>.btn,.bsui .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.bsui .btn-group-toggle>.btn input[type="radio"],.bsui .btn-group-toggle>.btn input[type="checkbox"],.bsui .btn-group-toggle>.btn-group>.btn input[type="radio"],.bsui .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.bsui .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.bsui .input-group>.form-control,.bsui .input-group>.form-control-plaintext,.bsui .input-group>.custom-select,.bsui .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.bsui .input-group>.form-control+.form-control,.bsui .input-group>.form-control+.custom-select,.bsui .input-group>.form-control+.custom-file,.bsui .input-group>.form-control-plaintext+.form-control,.bsui .input-group>.form-control-plaintext+.custom-select,.bsui .input-group>.form-control-plaintext+.custom-file,.bsui .input-group>.custom-select+.form-control,.bsui .input-group>.custom-select+.custom-select,.bsui .input-group>.custom-select+.custom-file,.bsui .input-group>.custom-file+.form-control,.bsui .input-group>.custom-file+.custom-select,.bsui .input-group>.custom-file+.custom-file{margin-left:-1px}.bsui .input-group>.form-control:focus,.bsui .input-group>.custom-select:focus,.bsui .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.bsui .input-group>.custom-file .custom-file-input:focus{z-index:4}.bsui .input-group>.form-control:not(:first-child),.bsui .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.custom-file{display:flex;align-items:center}.bsui .input-group>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group:not(.has-validation)>.form-control:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-select:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group.has-validation>.form-control:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-select:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group-prepend,.bsui .input-group-append{display:flex}.bsui .input-group-prepend .btn,.bsui .input-group-append .btn{position:relative;z-index:2}.bsui .input-group-prepend .btn:focus,.bsui .input-group-append .btn:focus{z-index:3}.bsui .input-group-prepend .btn+.btn,.bsui .input-group-prepend .btn+.input-group-text,.bsui .input-group-prepend .input-group-text+.input-group-text,.bsui .input-group-prepend .input-group-text+.btn,.bsui .input-group-append .btn+.btn,.bsui .input-group-append .btn+.input-group-text,.bsui .input-group-append .input-group-text+.input-group-text,.bsui .input-group-append .input-group-text+.btn{margin-left:-1px}.bsui .input-group-prepend{margin-right:-1px}.bsui .input-group-append{margin-left:-1px}.bsui .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.bsui .input-group-text input[type="radio"],.bsui .input-group-text input[type="checkbox"]{margin-top:0}.bsui .input-group-lg>.form-control:not(textarea),.bsui .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.bsui .input-group-lg>.form-control,.bsui .input-group-lg>.custom-select,.bsui .input-group-lg>.input-group-prepend>.input-group-text,.bsui .input-group-lg>.input-group-append>.input-group-text,.bsui .input-group-lg>.input-group-prepend>.btn,.bsui .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .input-group-sm>.form-control:not(textarea),.bsui .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.bsui .input-group-sm>.form-control,.bsui .input-group-sm>.custom-select,.bsui .input-group-sm>.input-group-prepend>.input-group-text,.bsui .input-group-sm>.input-group-append>.input-group-text,.bsui .input-group-sm>.input-group-prepend>.btn,.bsui .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .input-group-lg>.custom-select,.bsui .input-group-sm>.custom-select{padding-right:2.2rem}.bsui .input-group>.input-group-prepend>.btn,.bsui .input-group>.input-group-prepend>.input-group-text,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.bsui .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.bsui .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.input-group-append>.btn,.bsui .input-group>.input-group-append>.input-group-text,.bsui .input-group>.input-group-prepend:not(:first-child)>.btn,.bsui .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.bsui .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.bsui .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-left:1.5rem;print-color-adjust:exact}.bsui .custom-control-inline{display:inline-flex;margin-right:1rem}.bsui .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.bsui .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.bsui .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.bsui .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.bsui .custom-control-input[disabled] ~ .custom-control-label,.bsui .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.bsui .custom-control-input[disabled] ~ .custom-control-label::before,.bsui .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.bsui .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.bsui .custom-control-label::before{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.bsui .custom-control-label::after{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.bsui .custom-checkbox .custom-control-label::before{border-radius:.25rem}.bsui .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-radio .custom-control-label::before{border-radius:50%}.bsui .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.bsui .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-switch{padding-left:2.25rem}.bsui .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.bsui .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-switch .custom-control-label::after{transition:none}}.bsui .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.bsui .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 2.2rem .45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.bsui .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.bsui .custom-select[multiple],.bsui .custom-select[size]:not([size="1"]){height:auto;padding-right:1.2rem;background-image:none}.bsui .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.bsui .custom-select::-ms-expand{display:none}.bsui .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:1rem;font-size:.875rem}.bsui .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-bottom:.65rem;padding-left:2rem;font-size:1.15rem}.bsui .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.bsui .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.bsui .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-file-input[disabled] ~ .custom-file-label,.bsui .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.bsui .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.bsui .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.bsui .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.bsui .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.bsui .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.bsui .custom-range:focus{outline:0}.bsui .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range::-moz-focus-outer{border:0}.bsui .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-webkit-slider-thumb{transition:none}}.bsui .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-moz-range-thumb{transition:none}}.bsui .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-ms-thumb{transition:none}}.bsui .custom-range::-ms-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.bsui .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.bsui .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.bsui .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.bsui .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-moz-range-track{cursor:default}.bsui .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:none}}.bsui .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.bsui .nav-link{display:block;padding:.8rem 1rem}.bsui .nav-link:hover,.bsui .nav-link:focus{text-decoration:none}.bsui .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.bsui .nav-tabs{border-bottom:1px solid #dee2e6}.bsui .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.bsui .nav-tabs .nav-link:hover,.bsui .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.bsui .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.bsui .nav-tabs .nav-link.active,.bsui .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.bsui .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.bsui .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.bsui .nav-pills .nav-link.active,.bsui .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.bsui .nav-fill>.nav-link,.bsui .nav-fill .nav-item{flex:1 1 auto;text-align:center}.bsui .nav-justified>.nav-link,.bsui .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.bsui .tab-content>.tab-pane{display:none}.bsui .tab-content>.active{display:block}.bsui .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.bsui .navbar .container,.bsui .navbar .container-fluid,.bsui .navbar .container-sm,.bsui .navbar .container-md,.bsui .navbar .container-lg,.bsui .navbar .container-xl,.bsui .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.bsui .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-right:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.bsui .navbar-brand:hover,.bsui .navbar-brand:focus{text-decoration:none}.bsui .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.bsui .navbar-nav .nav-link{padding-right:0;padding-left:0}.bsui .navbar-nav .dropdown-menu{position:static;float:none}.bsui .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.bsui .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.bsui .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.bsui .navbar-toggler:hover,.bsui .navbar-toggler:focus{text-decoration:none}.bsui .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.bsui .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.bsui .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-sm .navbar-nav{flex-direction:row}.bsui .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.bsui .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-md .navbar-nav{flex-direction:row}.bsui .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-md .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.bsui .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-lg .navbar-nav{flex-direction:row}.bsui .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.bsui .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.bsui .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xxl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xxl .navbar-toggler{display:none}}.bsui .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.bsui .navbar-expand .navbar-nav{flex-direction:row}.bsui .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand .navbar-toggler{display:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-dark .navbar-brand{color:#fff}.bsui .navbar-dark .navbar-brand:hover,.bsui .navbar-dark .navbar-brand:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-nav .nav-link:hover,.bsui .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.bsui .navbar-dark .navbar-nav .show>.nav-link,.bsui .navbar-dark .navbar-nav .active>.nav-link,.bsui .navbar-dark .navbar-nav .nav-link.show,.bsui .navbar-dark .navbar-nav .nav-link.active{color:#fff}.bsui .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.bsui .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-text a{color:#fff}.bsui .navbar-dark .navbar-text a:hover,.bsui .navbar-dark .navbar-text a:focus{color:#fff}.bsui .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.bsui .card>hr{margin-right:0;margin-left:0}.bsui .card>.list-group{border-top:inherit;border-bottom:inherit}.bsui .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card>.card-header+.list-group,.bsui .card>.list-group+.card-footer{border-top:0}.bsui .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.bsui .card-title{margin-bottom:.75rem}.bsui .card-subtitle{margin-top:-.375rem;margin-bottom:0}.bsui .card-text:last-child{margin-bottom:0}.bsui .card-link:hover{text-decoration:none}.bsui .card-link+.card-link{margin-left:1.25rem}.bsui .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.bsui .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.bsui .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.bsui .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.bsui .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.bsui .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.bsui .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-top,.bsui .card-img-bottom{flex-shrink:0;width:100%}.bsui .card-img,.bsui .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.bsui .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.bsui .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-group{display:flex;flex-flow:row wrap}.bsui .card-group>.card{flex:1 0 0%;margin-bottom:0}.bsui .card-group>.card+.card{margin-left:0;border-left:0}.bsui .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-top,.bsui .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-bottom,.bsui .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.bsui .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-top,.bsui .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-bottom,.bsui .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.bsui .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.bsui .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.bsui .card-columns .card{display:inline-block;width:100%}}.bsui .accordion{overflow-anchor:none}.bsui .accordion>.card{overflow:hidden}.bsui .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.bsui .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.bsui .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.bsui .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.bsui .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.bsui .breadcrumb-item.active{color:#6c757d}.bsui .pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.bsui .page-link{position:relative;display:block;padding:.75rem 1rem;margin-left:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.bsui .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.bsui .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bsui .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.bsui .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.bsui .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.bsui .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.bsui .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.bsui .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.bsui .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.bsui .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.bsui .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .badge{transition:none}}.bsui a.badge:hover,.bsui a.badge:focus{text-decoration:none}.bsui .badge:empty{display:none}.bsui .btn .badge{position:relative;top:-1px}.bsui .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.bsui .badge-primary{color:#fff;background-color:#1e73be}.bsui a.badge-primary:hover,.bsui a.badge-primary:focus{color:#fff;background-color:#175892}.bsui a.badge-primary:focus,.bsui a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .badge-secondary{color:#fff;background-color:#6c757d}.bsui a.badge-secondary:hover,.bsui a.badge-secondary:focus{color:#fff;background-color:#545b62}.bsui a.badge-secondary:focus,.bsui a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-success{color:#fff;background-color:#44c553}.bsui a.badge-success:hover,.bsui a.badge-success:focus{color:#fff;background-color:#33a340}.bsui a.badge-success:focus,.bsui a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .badge-info{color:#fff;background-color:#17a2b8}.bsui a.badge-info:hover,.bsui a.badge-info:focus{color:#fff;background-color:#117a8b}.bsui a.badge-info:focus,.bsui a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .badge-warning{color:#212529;background-color:#ffc107}.bsui a.badge-warning:hover,.bsui a.badge-warning:focus{color:#212529;background-color:#d39e00}.bsui a.badge-warning:focus,.bsui a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .badge-danger{color:#fff;background-color:#dc3545}.bsui a.badge-danger:hover,.bsui a.badge-danger:focus{color:#fff;background-color:#bd2130}.bsui a.badge-danger:focus,.bsui a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .badge-light{color:#212529;background-color:#f8f9fa}.bsui a.badge-light:hover,.bsui a.badge-light:focus{color:#212529;background-color:#dae0e5}.bsui a.badge-light:focus,.bsui a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .badge-dark{color:#fff;background-color:#343a40}.bsui a.badge-dark:hover,.bsui a.badge-dark:focus{color:#fff;background-color:#1d2124}.bsui a.badge-dark:focus,.bsui a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .badge-white{color:#212529;background-color:#fff}.bsui a.badge-white:hover,.bsui a.badge-white:focus{color:#212529;background-color:#e6e6e6}.bsui a.badge-white:focus,.bsui a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .badge-purple{color:#fff;background-color:#ad6edd}.bsui a.badge-purple:hover,.bsui a.badge-purple:focus{color:#fff;background-color:#9645d3}.bsui a.badge-purple:focus,.bsui a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .badge-salmon{color:#212529;background-color:#ff977a}.bsui a.badge-salmon:hover,.bsui a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.bsui a.badge-salmon:focus,.bsui a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .badge-cyan{color:#212529;background-color:#35bdff}.bsui a.badge-cyan:hover,.bsui a.badge-cyan:focus{color:#212529;background-color:#02acff}.bsui a.badge-cyan:focus,.bsui a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .badge-gray{color:#212529;background-color:#ced4da}.bsui a.badge-gray:hover,.bsui a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.bsui a.badge-gray:focus,.bsui a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .badge-gray-dark{color:#fff;background-color:#6c757d}.bsui a.badge-gray-dark:hover,.bsui a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.bsui a.badge-gray-dark:focus,.bsui a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-indigo{color:#fff;background-color:#502c6c}.bsui a.badge-indigo:hover,.bsui a.badge-indigo:focus{color:#fff;background-color:#351d48}.bsui a.badge-indigo:focus,.bsui a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .badge-orange{color:#212529;background-color:#fbb500}.bsui a.badge-orange:hover,.bsui a.badge-orange:focus{color:#212529;background-color:#c89000}.bsui a.badge-orange:focus,.bsui a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.bsui .jumbotron{padding:4rem 2rem}}.bsui .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.bsui .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.bsui .alert-heading{color:inherit}.bsui .alert-link{font-weight:700}.bsui .alert-dismissible{padding-right:4rem}.bsui .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.bsui .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#175892}.bsui .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#545b62}.bsui .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#33a340}.bsui .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#117a8b}.bsui .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#d39e00}.bsui .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#bd2130}.bsui .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#dae0e5}.bsui .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#1d2124}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#9645d3}.bsui .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#ff6f47}.bsui .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#02acff}.bsui .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#b1bbc4}.bsui .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#545b62}.bsui .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#351d48}.bsui .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.bsui .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.bsui .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .progress-bar{transition:none}}.bsui .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.bsui .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.bsui .progress-bar-animated{animation:none}}.bsui .media{display:flex;align-items:flex-start}.bsui .media-body{flex:1}.bsui .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.bsui .list-group-item-action{width:100%;color:#495057;text-align:inherit}.bsui .list-group-item-action:hover,.bsui .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.bsui .list-group-item-action:active{color:#212529;background-color:#e9ecef}.bsui .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.bsui .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.bsui .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.bsui .list-group-item.disabled,.bsui .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.bsui .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .list-group-item+.list-group-item{border-top-width:0}.bsui .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.bsui .list-group-horizontal{flex-direction:row}.bsui .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.bsui .list-group-horizontal-sm{flex-direction:row}.bsui .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.bsui .list-group-horizontal-md{flex-direction:row}.bsui .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-md>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.bsui .list-group-horizontal-lg{flex-direction:row}.bsui .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.bsui .list-group-horizontal-xl{flex-direction:row}.bsui .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.bsui .list-group-horizontal-xxl{flex-direction:row}.bsui .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.bsui .list-group-flush{border-radius:0}.bsui .list-group-flush>.list-group-item{border-width:0 0 1px}.bsui .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.bsui .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.bsui .list-group-item-primary.list-group-item-action:hover,.bsui .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.bsui .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.bsui .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-secondary.list-group-item-action:hover,.bsui .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-success{color:#23662b;background-color:#cbefcf}.bsui .list-group-item-success.list-group-item-action:hover,.bsui .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.bsui .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.bsui .list-group-item-info{color:#0c5460;background-color:#bee5eb}.bsui .list-group-item-info.list-group-item-action:hover,.bsui .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.bsui .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.bsui .list-group-item-warning{color:#856404;background-color:#ffeeba}.bsui .list-group-item-warning.list-group-item-action:hover,.bsui .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.bsui .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.bsui .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.bsui .list-group-item-danger.list-group-item-action:hover,.bsui .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.bsui .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.bsui .list-group-item-light{color:#818182;background-color:#fdfdfe}.bsui .list-group-item-light.list-group-item-action:hover,.bsui .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.bsui .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.bsui .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.bsui .list-group-item-dark.list-group-item-action:hover,.bsui .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.bsui .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.bsui .list-group-item-white{color:#858585;background-color:#fff}.bsui .list-group-item-white.list-group-item-action:hover,.bsui .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.bsui .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.bsui .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.bsui .list-group-item-purple.list-group-item-action:hover,.bsui .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.bsui .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.bsui .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.bsui .list-group-item-salmon.list-group-item-action:hover,.bsui .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.bsui .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.bsui .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.bsui .list-group-item-cyan.list-group-item-action:hover,.bsui .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.bsui .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.bsui .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.bsui .list-group-item-gray.list-group-item-action:hover,.bsui .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.bsui .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.bsui .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-gray-dark.list-group-item-action:hover,.bsui .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.bsui .list-group-item-indigo.list-group-item-action:hover,.bsui .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.bsui .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.bsui .list-group-item-orange{color:#835e00;background-color:#feeab8}.bsui .list-group-item-orange.list-group-item-action:hover,.bsui .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.bsui .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.bsui .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.bsui .close:hover{color:#000;text-decoration:none}.bsui .close:not(:disabled):not(.disabled):hover,.bsui .close:not(:disabled):not(.disabled):focus{opacity:.75}.bsui button.close{padding:0;background-color:transparent;border:0}.bsui a.close.disabled{pointer-events:none}.bsui .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.bsui .toast:not(:last-child){margin-bottom:.75rem}.bsui .toast.showing{opacity:1}.bsui .toast.show{display:block;opacity:1}.bsui .toast.hide{display:none}.bsui .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .toast-body{padding:.75rem}.bsui .modal-open{overflow:hidden}.bsui .modal-open .modal{overflow-x:hidden;overflow-y:auto}.bsui .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.bsui .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .bsui .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .bsui .modal-dialog{transition:none}}.modal.show .bsui .modal-dialog{transform:none}.modal.modal-static .bsui .modal-dialog{transform:scale(1.02)}.bsui .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.bsui .modal-dialog-scrollable .modal-header,.bsui .modal-dialog-scrollable .modal-footer{flex-shrink:0}.bsui .modal-dialog-scrollable .modal-body{overflow-y:auto}.bsui .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.bsui .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.bsui .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.bsui .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.bsui .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.bsui .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.bsui .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.bsui .modal-backdrop.fade{opacity:0}.bsui .modal-backdrop.show{opacity:.5}.bsui .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.bsui .modal-title{margin-bottom:0;line-height:1.6}.bsui .modal-body{position:relative;flex:1 1 auto;padding:1rem}.bsui .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.bsui .modal-footer>*{margin:.25rem}.bsui .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.bsui .modal-dialog{max-width:500px;margin:1.75rem auto}.bsui .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.bsui .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.bsui .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.bsui .modal-sm{max-width:300px}}@media (min-width: 992px){.bsui .modal-lg,.bsui .modal-xl{max-width:800px}}@media (min-width: 1200px){.bsui .modal-xl{max-width:1140px}}.bsui .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.bsui .tooltip.show{opacity:.9}.bsui .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.bsui .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bsui .bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bsui .bs-tooltip-top .arrow,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bsui .bs-tooltip-top .arrow::before,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bsui .bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bsui .bs-tooltip-right .arrow,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-right .arrow::before,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bsui .bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bsui .bs-tooltip-bottom .arrow,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bsui .bs-tooltip-bottom .arrow::before,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bsui .bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bsui .bs-tooltip-left .arrow,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-left .arrow::before,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bsui .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.bsui .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.bsui .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.bsui .popover .arrow::before,.bsui .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bsui .bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bsui .bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bsui .bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bsui .bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bsui .bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bsui .bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bsui .bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bsui .bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bsui .bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bsui .bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bsui .bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bsui .bs-popover-bottom .popover-header::before,.bsui .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bsui .bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bsui .bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bsui .bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bsui .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .popover-header:empty{display:none}.bsui .popover-body{padding:.5rem .75rem;color:#212529}.bsui .carousel{position:relative}.bsui .carousel.pointer-event{touch-action:pan-y}.bsui .carousel-inner{position:relative;width:100%;overflow:hidden}.bsui .carousel-inner::after{display:block;clear:both;content:""}.bsui .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .carousel-item{transition:none}}.bsui .carousel-item.active,.bsui .carousel-item-next,.bsui .carousel-item-prev{display:block}.bsui .carousel-item-next:not(.carousel-item-left),.bsui .active.carousel-item-right{transform:translateX(100%)}.bsui .carousel-item-prev:not(.carousel-item-right),.bsui .active.carousel-item-left{transform:translateX(-100%)}.bsui .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.bsui .carousel-fade .carousel-item.active,.bsui .carousel-fade .carousel-item-next.carousel-item-left,.bsui .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{transition:none}}.bsui .carousel-control-prev,.bsui .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-control-prev,.bsui .carousel-control-next{transition:none}}.bsui .carousel-control-prev:hover,.bsui .carousel-control-prev:focus,.bsui .carousel-control-next:hover,.bsui .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.bsui .carousel-control-prev{left:0}.bsui .carousel-control-next{right:0}.bsui .carousel-control-prev-icon,.bsui .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.bsui .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.bsui .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.bsui .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.bsui .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-indicators li{transition:none}}.bsui .carousel-indicators .active{opacity:1}.bsui .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.bsui .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.bsui .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.bsui .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.bsui .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.bsui .spinner-border,.bsui .spinner-grow{animation-duration:1.5s}}.bsui .align-baseline{vertical-align:baseline !important}.bsui .align-top{vertical-align:top !important}.bsui .align-middle{vertical-align:middle !important}.bsui .align-bottom{vertical-align:bottom !important}.bsui .align-text-bottom{vertical-align:text-bottom !important}.bsui .align-text-top{vertical-align:text-top !important}.bsui .bg-primary{background-color:#1e73be !important}.bsui a.bg-primary:hover,.bsui a.bg-primary:focus,.bsui button.bg-primary:hover,.bsui button.bg-primary:focus{background-color:#175892 !important}.bsui .bg-secondary{background-color:#6c757d !important}.bsui a.bg-secondary:hover,.bsui a.bg-secondary:focus,.bsui button.bg-secondary:hover,.bsui button.bg-secondary:focus{background-color:#545b62 !important}.bsui .bg-success{background-color:#44c553 !important}.bsui a.bg-success:hover,.bsui a.bg-success:focus,.bsui button.bg-success:hover,.bsui button.bg-success:focus{background-color:#33a340 !important}.bsui .bg-info{background-color:#17a2b8 !important}.bsui a.bg-info:hover,.bsui a.bg-info:focus,.bsui button.bg-info:hover,.bsui button.bg-info:focus{background-color:#117a8b !important}.bsui .bg-warning{background-color:#ffc107 !important}.bsui a.bg-warning:hover,.bsui a.bg-warning:focus,.bsui button.bg-warning:hover,.bsui button.bg-warning:focus{background-color:#d39e00 !important}.bsui .bg-danger{background-color:#dc3545 !important}.bsui a.bg-danger:hover,.bsui a.bg-danger:focus,.bsui button.bg-danger:hover,.bsui button.bg-danger:focus{background-color:#bd2130 !important}.bsui .bg-light{background-color:#f8f9fa !important}.bsui a.bg-light:hover,.bsui a.bg-light:focus,.bsui button.bg-light:hover,.bsui button.bg-light:focus{background-color:#dae0e5 !important}.bsui .bg-dark{background-color:#343a40 !important}.bsui a.bg-dark:hover,.bsui a.bg-dark:focus,.bsui button.bg-dark:hover,.bsui button.bg-dark:focus{background-color:#1d2124 !important}.bsui .bg-white{background-color:#fff !important}.bsui a.bg-white:hover,.bsui a.bg-white:focus,.bsui button.bg-white:hover,.bsui button.bg-white:focus{background-color:#e6e6e6 !important}.bsui .bg-purple{background-color:#ad6edd !important}.bsui a.bg-purple:hover,.bsui a.bg-purple:focus,.bsui button.bg-purple:hover,.bsui button.bg-purple:focus{background-color:#9645d3 !important}.bsui .bg-salmon{background-color:#ff977a !important}.bsui a.bg-salmon:hover,.bsui a.bg-salmon:focus,.bsui button.bg-salmon:hover,.bsui button.bg-salmon:focus{background-color:#ff6f47 !important}.bsui .bg-cyan{background-color:#35bdff !important}.bsui a.bg-cyan:hover,.bsui a.bg-cyan:focus,.bsui button.bg-cyan:hover,.bsui button.bg-cyan:focus{background-color:#02acff !important}.bsui .bg-gray{background-color:#ced4da !important}.bsui a.bg-gray:hover,.bsui a.bg-gray:focus,.bsui button.bg-gray:hover,.bsui button.bg-gray:focus{background-color:#b1bbc4 !important}.bsui .bg-gray-dark{background-color:#6c757d !important}.bsui a.bg-gray-dark:hover,.bsui a.bg-gray-dark:focus,.bsui button.bg-gray-dark:hover,.bsui button.bg-gray-dark:focus{background-color:#545b62 !important}.bsui .bg-indigo{background-color:#502c6c !important}.bsui a.bg-indigo:hover,.bsui a.bg-indigo:focus,.bsui button.bg-indigo:hover,.bsui button.bg-indigo:focus{background-color:#351d48 !important}.bsui .bg-orange{background-color:#fbb500 !important}.bsui a.bg-orange:hover,.bsui a.bg-orange:focus,.bsui button.bg-orange:hover,.bsui button.bg-orange:focus{background-color:#c89000 !important}.bsui .bg-white{background-color:#fff !important}.bsui .bg-transparent{background-color:transparent !important}.bsui .border{border:1px solid #dee2e6 !important}.bsui .border-top{border-top:1px solid #dee2e6 !important}.bsui .border-right{border-right:1px solid #dee2e6 !important}.bsui .border-bottom{border-bottom:1px solid #dee2e6 !important}.bsui .border-left{border-left:1px solid #dee2e6 !important}.bsui .border-0{border:0 !important}.bsui .border-top-0{border-top:0 !important}.bsui .border-right-0{border-right:0 !important}.bsui .border-bottom-0{border-bottom:0 !important}.bsui .border-left-0{border-left:0 !important}.bsui .border-primary{border-color:#1e73be !important}.bsui .border-secondary{border-color:#6c757d !important}.bsui .border-success{border-color:#44c553 !important}.bsui .border-info{border-color:#17a2b8 !important}.bsui .border-warning{border-color:#ffc107 !important}.bsui .border-danger{border-color:#dc3545 !important}.bsui .border-light{border-color:#f8f9fa !important}.bsui .border-dark{border-color:#343a40 !important}.bsui .border-white{border-color:#fff !important}.bsui .border-purple{border-color:#ad6edd !important}.bsui .border-salmon{border-color:#ff977a !important}.bsui .border-cyan{border-color:#35bdff !important}.bsui .border-gray{border-color:#ced4da !important}.bsui .border-gray-dark{border-color:#6c757d !important}.bsui .border-indigo{border-color:#502c6c !important}.bsui .border-orange{border-color:#fbb500 !important}.bsui .border-white{border-color:#fff !important}.bsui .rounded-sm{border-radius:.2rem !important}.bsui .rounded{border-radius:.25rem !important}.bsui .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.bsui .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.bsui .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-lg{border-radius:.3rem !important}.bsui .rounded-circle{border-radius:50% !important}.bsui .rounded-pill{border-radius:50rem !important}.bsui .rounded-0{border-radius:0 !important}.bsui .clearfix::after{display:block;clear:both;content:""}.bsui .d-none{display:none !important}.bsui .d-inline{display:inline !important}.bsui .d-inline-block{display:inline-block !important}.bsui .d-block{display:block !important}.bsui .d-table{display:table !important}.bsui .d-table-row{display:table-row !important}.bsui .d-table-cell{display:table-cell !important}.bsui .d-flex{display:flex !important}.bsui .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.bsui .d-sm-none{display:none !important}.bsui .d-sm-inline{display:inline !important}.bsui .d-sm-inline-block{display:inline-block !important}.bsui .d-sm-block{display:block !important}.bsui .d-sm-table{display:table !important}.bsui .d-sm-table-row{display:table-row !important}.bsui .d-sm-table-cell{display:table-cell !important}.bsui .d-sm-flex{display:flex !important}.bsui .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.bsui .d-md-none{display:none !important}.bsui .d-md-inline{display:inline !important}.bsui .d-md-inline-block{display:inline-block !important}.bsui .d-md-block{display:block !important}.bsui .d-md-table{display:table !important}.bsui .d-md-table-row{display:table-row !important}.bsui .d-md-table-cell{display:table-cell !important}.bsui .d-md-flex{display:flex !important}.bsui .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.bsui .d-lg-none{display:none !important}.bsui .d-lg-inline{display:inline !important}.bsui .d-lg-inline-block{display:inline-block !important}.bsui .d-lg-block{display:block !important}.bsui .d-lg-table{display:table !important}.bsui .d-lg-table-row{display:table-row !important}.bsui .d-lg-table-cell{display:table-cell !important}.bsui .d-lg-flex{display:flex !important}.bsui .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.bsui .d-xl-none{display:none !important}.bsui .d-xl-inline{display:inline !important}.bsui .d-xl-inline-block{display:inline-block !important}.bsui .d-xl-block{display:block !important}.bsui .d-xl-table{display:table !important}.bsui .d-xl-table-row{display:table-row !important}.bsui .d-xl-table-cell{display:table-cell !important}.bsui .d-xl-flex{display:flex !important}.bsui .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.bsui .d-xxl-none{display:none !important}.bsui .d-xxl-inline{display:inline !important}.bsui .d-xxl-inline-block{display:inline-block !important}.bsui .d-xxl-block{display:block !important}.bsui .d-xxl-table{display:table !important}.bsui .d-xxl-table-row{display:table-row !important}.bsui .d-xxl-table-cell{display:table-cell !important}.bsui .d-xxl-flex{display:flex !important}.bsui .d-xxl-inline-flex{display:inline-flex !important}}@media print{.bsui .d-print-none{display:none !important}.bsui .d-print-inline{display:inline !important}.bsui .d-print-inline-block{display:inline-block !important}.bsui .d-print-block{display:block !important}.bsui .d-print-table{display:table !important}.bsui .d-print-table-row{display:table-row !important}.bsui .d-print-table-cell{display:table-cell !important}.bsui .d-print-flex{display:flex !important}.bsui .d-print-inline-flex{display:inline-flex !important}}.bsui .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.bsui .embed-responsive::before{display:block;content:""}.bsui .embed-responsive .embed-responsive-item,.bsui .embed-responsive iframe,.bsui .embed-responsive embed,.bsui .embed-responsive object,.bsui .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.bsui .embed-responsive-21by9::before{padding-top:42.85714286%}.bsui .embed-responsive-16by9::before{padding-top:56.25%}.bsui .embed-responsive-4by3::before{padding-top:75%}.bsui .embed-responsive-1by1::before{padding-top:100%}.bsui .flex-row{flex-direction:row !important}.bsui .flex-column{flex-direction:column !important}.bsui .flex-row-reverse{flex-direction:row-reverse !important}.bsui .flex-column-reverse{flex-direction:column-reverse !important}.bsui .flex-wrap{flex-wrap:wrap !important}.bsui .flex-nowrap{flex-wrap:nowrap !important}.bsui .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-fill{flex:1 1 auto !important}.bsui .flex-grow-0{flex-grow:0 !important}.bsui .flex-grow-1{flex-grow:1 !important}.bsui .flex-shrink-0{flex-shrink:0 !important}.bsui .flex-shrink-1{flex-shrink:1 !important}.bsui .justify-content-start{justify-content:flex-start !important}.bsui .justify-content-end{justify-content:flex-end !important}.bsui .justify-content-center{justify-content:center !important}.bsui .justify-content-between{justify-content:space-between !important}.bsui .justify-content-around{justify-content:space-around !important}.bsui .align-items-start{align-items:flex-start !important}.bsui .align-items-end{align-items:flex-end !important}.bsui .align-items-center{align-items:center !important}.bsui .align-items-baseline{align-items:baseline !important}.bsui .align-items-stretch{align-items:stretch !important}.bsui .align-content-start{align-content:flex-start !important}.bsui .align-content-end{align-content:flex-end !important}.bsui .align-content-center{align-content:center !important}.bsui .align-content-between{align-content:space-between !important}.bsui .align-content-around{align-content:space-around !important}.bsui .align-content-stretch{align-content:stretch !important}.bsui .align-self-auto{align-self:auto !important}.bsui .align-self-start{align-self:flex-start !important}.bsui .align-self-end{align-self:flex-end !important}.bsui .align-self-center{align-self:center !important}.bsui .align-self-baseline{align-self:baseline !important}.bsui .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.bsui .flex-sm-row{flex-direction:row !important}.bsui .flex-sm-column{flex-direction:column !important}.bsui .flex-sm-row-reverse{flex-direction:row-reverse !important}.bsui .flex-sm-column-reverse{flex-direction:column-reverse !important}.bsui .flex-sm-wrap{flex-wrap:wrap !important}.bsui .flex-sm-nowrap{flex-wrap:nowrap !important}.bsui .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-sm-fill{flex:1 1 auto !important}.bsui .flex-sm-grow-0{flex-grow:0 !important}.bsui .flex-sm-grow-1{flex-grow:1 !important}.bsui .flex-sm-shrink-0{flex-shrink:0 !important}.bsui .flex-sm-shrink-1{flex-shrink:1 !important}.bsui .justify-content-sm-start{justify-content:flex-start !important}.bsui .justify-content-sm-end{justify-content:flex-end !important}.bsui .justify-content-sm-center{justify-content:center !important}.bsui .justify-content-sm-between{justify-content:space-between !important}.bsui .justify-content-sm-around{justify-content:space-around !important}.bsui .align-items-sm-start{align-items:flex-start !important}.bsui .align-items-sm-end{align-items:flex-end !important}.bsui .align-items-sm-center{align-items:center !important}.bsui .align-items-sm-baseline{align-items:baseline !important}.bsui .align-items-sm-stretch{align-items:stretch !important}.bsui .align-content-sm-start{align-content:flex-start !important}.bsui .align-content-sm-end{align-content:flex-end !important}.bsui .align-content-sm-center{align-content:center !important}.bsui .align-content-sm-between{align-content:space-between !important}.bsui .align-content-sm-around{align-content:space-around !important}.bsui .align-content-sm-stretch{align-content:stretch !important}.bsui .align-self-sm-auto{align-self:auto !important}.bsui .align-self-sm-start{align-self:flex-start !important}.bsui .align-self-sm-end{align-self:flex-end !important}.bsui .align-self-sm-center{align-self:center !important}.bsui .align-self-sm-baseline{align-self:baseline !important}.bsui .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.bsui .flex-md-row{flex-direction:row !important}.bsui .flex-md-column{flex-direction:column !important}.bsui .flex-md-row-reverse{flex-direction:row-reverse !important}.bsui .flex-md-column-reverse{flex-direction:column-reverse !important}.bsui .flex-md-wrap{flex-wrap:wrap !important}.bsui .flex-md-nowrap{flex-wrap:nowrap !important}.bsui .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-md-fill{flex:1 1 auto !important}.bsui .flex-md-grow-0{flex-grow:0 !important}.bsui .flex-md-grow-1{flex-grow:1 !important}.bsui .flex-md-shrink-0{flex-shrink:0 !important}.bsui .flex-md-shrink-1{flex-shrink:1 !important}.bsui .justify-content-md-start{justify-content:flex-start !important}.bsui .justify-content-md-end{justify-content:flex-end !important}.bsui .justify-content-md-center{justify-content:center !important}.bsui .justify-content-md-between{justify-content:space-between !important}.bsui .justify-content-md-around{justify-content:space-around !important}.bsui .align-items-md-start{align-items:flex-start !important}.bsui .align-items-md-end{align-items:flex-end !important}.bsui .align-items-md-center{align-items:center !important}.bsui .align-items-md-baseline{align-items:baseline !important}.bsui .align-items-md-stretch{align-items:stretch !important}.bsui .align-content-md-start{align-content:flex-start !important}.bsui .align-content-md-end{align-content:flex-end !important}.bsui .align-content-md-center{align-content:center !important}.bsui .align-content-md-between{align-content:space-between !important}.bsui .align-content-md-around{align-content:space-around !important}.bsui .align-content-md-stretch{align-content:stretch !important}.bsui .align-self-md-auto{align-self:auto !important}.bsui .align-self-md-start{align-self:flex-start !important}.bsui .align-self-md-end{align-self:flex-end !important}.bsui .align-self-md-center{align-self:center !important}.bsui .align-self-md-baseline{align-self:baseline !important}.bsui .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.bsui .flex-lg-row{flex-direction:row !important}.bsui .flex-lg-column{flex-direction:column !important}.bsui .flex-lg-row-reverse{flex-direction:row-reverse !important}.bsui .flex-lg-column-reverse{flex-direction:column-reverse !important}.bsui .flex-lg-wrap{flex-wrap:wrap !important}.bsui .flex-lg-nowrap{flex-wrap:nowrap !important}.bsui .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-lg-fill{flex:1 1 auto !important}.bsui .flex-lg-grow-0{flex-grow:0 !important}.bsui .flex-lg-grow-1{flex-grow:1 !important}.bsui .flex-lg-shrink-0{flex-shrink:0 !important}.bsui .flex-lg-shrink-1{flex-shrink:1 !important}.bsui .justify-content-lg-start{justify-content:flex-start !important}.bsui .justify-content-lg-end{justify-content:flex-end !important}.bsui .justify-content-lg-center{justify-content:center !important}.bsui .justify-content-lg-between{justify-content:space-between !important}.bsui .justify-content-lg-around{justify-content:space-around !important}.bsui .align-items-lg-start{align-items:flex-start !important}.bsui .align-items-lg-end{align-items:flex-end !important}.bsui .align-items-lg-center{align-items:center !important}.bsui .align-items-lg-baseline{align-items:baseline !important}.bsui .align-items-lg-stretch{align-items:stretch !important}.bsui .align-content-lg-start{align-content:flex-start !important}.bsui .align-content-lg-end{align-content:flex-end !important}.bsui .align-content-lg-center{align-content:center !important}.bsui .align-content-lg-between{align-content:space-between !important}.bsui .align-content-lg-around{align-content:space-around !important}.bsui .align-content-lg-stretch{align-content:stretch !important}.bsui .align-self-lg-auto{align-self:auto !important}.bsui .align-self-lg-start{align-self:flex-start !important}.bsui .align-self-lg-end{align-self:flex-end !important}.bsui .align-self-lg-center{align-self:center !important}.bsui .align-self-lg-baseline{align-self:baseline !important}.bsui .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.bsui .flex-xl-row{flex-direction:row !important}.bsui .flex-xl-column{flex-direction:column !important}.bsui .flex-xl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xl-wrap{flex-wrap:wrap !important}.bsui .flex-xl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xl-fill{flex:1 1 auto !important}.bsui .flex-xl-grow-0{flex-grow:0 !important}.bsui .flex-xl-grow-1{flex-grow:1 !important}.bsui .flex-xl-shrink-0{flex-shrink:0 !important}.bsui .flex-xl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xl-start{justify-content:flex-start !important}.bsui .justify-content-xl-end{justify-content:flex-end !important}.bsui .justify-content-xl-center{justify-content:center !important}.bsui .justify-content-xl-between{justify-content:space-between !important}.bsui .justify-content-xl-around{justify-content:space-around !important}.bsui .align-items-xl-start{align-items:flex-start !important}.bsui .align-items-xl-end{align-items:flex-end !important}.bsui .align-items-xl-center{align-items:center !important}.bsui .align-items-xl-baseline{align-items:baseline !important}.bsui .align-items-xl-stretch{align-items:stretch !important}.bsui .align-content-xl-start{align-content:flex-start !important}.bsui .align-content-xl-end{align-content:flex-end !important}.bsui .align-content-xl-center{align-content:center !important}.bsui .align-content-xl-between{align-content:space-between !important}.bsui .align-content-xl-around{align-content:space-around !important}.bsui .align-content-xl-stretch{align-content:stretch !important}.bsui .align-self-xl-auto{align-self:auto !important}.bsui .align-self-xl-start{align-self:flex-start !important}.bsui .align-self-xl-end{align-self:flex-end !important}.bsui .align-self-xl-center{align-self:center !important}.bsui .align-self-xl-baseline{align-self:baseline !important}.bsui .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.bsui .flex-xxl-row{flex-direction:row !important}.bsui .flex-xxl-column{flex-direction:column !important}.bsui .flex-xxl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xxl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xxl-wrap{flex-wrap:wrap !important}.bsui .flex-xxl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xxl-fill{flex:1 1 auto !important}.bsui .flex-xxl-grow-0{flex-grow:0 !important}.bsui .flex-xxl-grow-1{flex-grow:1 !important}.bsui .flex-xxl-shrink-0{flex-shrink:0 !important}.bsui .flex-xxl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xxl-start{justify-content:flex-start !important}.bsui .justify-content-xxl-end{justify-content:flex-end !important}.bsui .justify-content-xxl-center{justify-content:center !important}.bsui .justify-content-xxl-between{justify-content:space-between !important}.bsui .justify-content-xxl-around{justify-content:space-around !important}.bsui .align-items-xxl-start{align-items:flex-start !important}.bsui .align-items-xxl-end{align-items:flex-end !important}.bsui .align-items-xxl-center{align-items:center !important}.bsui .align-items-xxl-baseline{align-items:baseline !important}.bsui .align-items-xxl-stretch{align-items:stretch !important}.bsui .align-content-xxl-start{align-content:flex-start !important}.bsui .align-content-xxl-end{align-content:flex-end !important}.bsui .align-content-xxl-center{align-content:center !important}.bsui .align-content-xxl-between{align-content:space-between !important}.bsui .align-content-xxl-around{align-content:space-around !important}.bsui .align-content-xxl-stretch{align-content:stretch !important}.bsui .align-self-xxl-auto{align-self:auto !important}.bsui .align-self-xxl-start{align-self:flex-start !important}.bsui .align-self-xxl-end{align-self:flex-end !important}.bsui .align-self-xxl-center{align-self:center !important}.bsui .align-self-xxl-baseline{align-self:baseline !important}.bsui .align-self-xxl-stretch{align-self:stretch !important}}.bsui .float-left{float:left !important}.bsui .float-right{float:right !important}.bsui .float-none{float:none !important}@media (min-width: 576px){.bsui .float-sm-left{float:left !important}.bsui .float-sm-right{float:right !important}.bsui .float-sm-none{float:none !important}}@media (min-width: 768px){.bsui .float-md-left{float:left !important}.bsui .float-md-right{float:right !important}.bsui .float-md-none{float:none !important}}@media (min-width: 992px){.bsui .float-lg-left{float:left !important}.bsui .float-lg-right{float:right !important}.bsui .float-lg-none{float:none !important}}@media (min-width: 1200px){.bsui .float-xl-left{float:left !important}.bsui .float-xl-right{float:right !important}.bsui .float-xl-none{float:none !important}}@media (min-width: 1400px){.bsui .float-xxl-left{float:left !important}.bsui .float-xxl-right{float:right !important}.bsui .float-xxl-none{float:none !important}}.bsui .user-select-all{user-select:all !important}.bsui .user-select-auto{user-select:auto !important}.bsui .user-select-none{user-select:none !important}.bsui .overflow-auto{overflow:auto !important}.bsui .overflow-hidden{overflow:hidden !important}.bsui .position-static{position:static !important}.bsui .position-relative{position:relative !important}.bsui .position-absolute{position:absolute !important}.bsui .position-fixed{position:fixed !important}.bsui .position-sticky{position:sticky !important}.bsui .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.bsui .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.bsui .sticky-top{position:sticky;top:0;z-index:1020}}.bsui .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.bsui .sr-only-focusable:active,.bsui .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.bsui .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.bsui .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.bsui .shadow-none{box-shadow:none !important}.bsui .w-25{width:25% !important}.bsui .w-50{width:50% !important}.bsui .w-75{width:75% !important}.bsui .w-100{width:100% !important}.bsui .w-auto{width:auto !important}.bsui .h-25{height:25% !important}.bsui .h-50{height:50% !important}.bsui .h-75{height:75% !important}.bsui .h-100{height:100% !important}.bsui .h-auto{height:auto !important}.bsui .mw-100{max-width:100% !important}.bsui .mh-100{max-height:100% !important}.bsui .min-vw-100{min-width:100vw !important}.bsui .min-vh-100{min-height:100vh !important}.bsui .vw-100{width:100vw !important}.bsui .vh-100{height:100vh !important}.bsui .m-0{margin:0 !important}.bsui .mt-0,.bsui .my-0{margin-top:0 !important}.bsui .mr-0,.bsui .mx-0{margin-right:0 !important}.bsui .mb-0,.bsui .my-0{margin-bottom:0 !important}.bsui .ml-0,.bsui .mx-0{margin-left:0 !important}.bsui .m-1{margin:.25rem !important}.bsui .mt-1,.bsui .my-1{margin-top:.25rem !important}.bsui .mr-1,.bsui .mx-1{margin-right:.25rem !important}.bsui .mb-1,.bsui .my-1{margin-bottom:.25rem !important}.bsui .ml-1,.bsui .mx-1{margin-left:.25rem !important}.bsui .m-2{margin:.5rem !important}.bsui .mt-2,.bsui .my-2{margin-top:.5rem !important}.bsui .mr-2,.bsui .mx-2{margin-right:.5rem !important}.bsui .mb-2,.bsui .my-2{margin-bottom:.5rem !important}.bsui .ml-2,.bsui .mx-2{margin-left:.5rem !important}.bsui .m-3{margin:1rem !important}.bsui .mt-3,.bsui .my-3{margin-top:1rem !important}.bsui .mr-3,.bsui .mx-3{margin-right:1rem !important}.bsui .mb-3,.bsui .my-3{margin-bottom:1rem !important}.bsui .ml-3,.bsui .mx-3{margin-left:1rem !important}.bsui .m-4{margin:1.5rem !important}.bsui .mt-4,.bsui .my-4{margin-top:1.5rem !important}.bsui .mr-4,.bsui .mx-4{margin-right:1.5rem !important}.bsui .mb-4,.bsui .my-4{margin-bottom:1.5rem !important}.bsui .ml-4,.bsui .mx-4{margin-left:1.5rem !important}.bsui .m-5{margin:3rem !important}.bsui .mt-5,.bsui .my-5{margin-top:3rem !important}.bsui .mr-5,.bsui .mx-5{margin-right:3rem !important}.bsui .mb-5,.bsui .my-5{margin-bottom:3rem !important}.bsui .ml-5,.bsui .mx-5{margin-left:3rem !important}.bsui .m-6{margin:4rem !important}.bsui .mt-6,.bsui .my-6{margin-top:4rem !important}.bsui .mr-6,.bsui .mx-6{margin-right:4rem !important}.bsui .mb-6,.bsui .my-6{margin-bottom:4rem !important}.bsui .ml-6,.bsui .mx-6{margin-left:4rem !important}.bsui .m-7{margin:6rem !important}.bsui .mt-7,.bsui .my-7{margin-top:6rem !important}.bsui .mr-7,.bsui .mx-7{margin-right:6rem !important}.bsui .mb-7,.bsui .my-7{margin-bottom:6rem !important}.bsui .ml-7,.bsui .mx-7{margin-left:6rem !important}.bsui .m-8{margin:8rem !important}.bsui .mt-8,.bsui .my-8{margin-top:8rem !important}.bsui .mr-8,.bsui .mx-8{margin-right:8rem !important}.bsui .mb-8,.bsui .my-8{margin-bottom:8rem !important}.bsui .ml-8,.bsui .mx-8{margin-left:8rem !important}.bsui .m-9{margin:10rem !important}.bsui .mt-9,.bsui .my-9{margin-top:10rem !important}.bsui .mr-9,.bsui .mx-9{margin-right:10rem !important}.bsui .mb-9,.bsui .my-9{margin-bottom:10rem !important}.bsui .ml-9,.bsui .mx-9{margin-left:10rem !important}.bsui .m-10{margin:12rem !important}.bsui .mt-10,.bsui .my-10{margin-top:12rem !important}.bsui .mr-10,.bsui .mx-10{margin-right:12rem !important}.bsui .mb-10,.bsui .my-10{margin-bottom:12rem !important}.bsui .ml-10,.bsui .mx-10{margin-left:12rem !important}.bsui .m-11{margin:14rem !important}.bsui .mt-11,.bsui .my-11{margin-top:14rem !important}.bsui .mr-11,.bsui .mx-11{margin-right:14rem !important}.bsui .mb-11,.bsui .my-11{margin-bottom:14rem !important}.bsui .ml-11,.bsui .mx-11{margin-left:14rem !important}.bsui .m-12{margin:16rem !important}.bsui .mt-12,.bsui .my-12{margin-top:16rem !important}.bsui .mr-12,.bsui .mx-12{margin-right:16rem !important}.bsui .mb-12,.bsui .my-12{margin-bottom:16rem !important}.bsui .ml-12,.bsui .mx-12{margin-left:16rem !important}.bsui .p-0{padding:0 !important}.bsui .pt-0,.bsui .py-0{padding-top:0 !important}.bsui .pr-0,.bsui .px-0{padding-right:0 !important}.bsui .pb-0,.bsui .py-0{padding-bottom:0 !important}.bsui .pl-0,.bsui .px-0{padding-left:0 !important}.bsui .p-1{padding:.25rem !important}.bsui .pt-1,.bsui .py-1{padding-top:.25rem !important}.bsui .pr-1,.bsui .px-1{padding-right:.25rem !important}.bsui .pb-1,.bsui .py-1{padding-bottom:.25rem !important}.bsui .pl-1,.bsui .px-1{padding-left:.25rem !important}.bsui .p-2{padding:.5rem !important}.bsui .pt-2,.bsui .py-2{padding-top:.5rem !important}.bsui .pr-2,.bsui .px-2{padding-right:.5rem !important}.bsui .pb-2,.bsui .py-2{padding-bottom:.5rem !important}.bsui .pl-2,.bsui .px-2{padding-left:.5rem !important}.bsui .p-3{padding:1rem !important}.bsui .pt-3,.bsui .py-3{padding-top:1rem !important}.bsui .pr-3,.bsui .px-3{padding-right:1rem !important}.bsui .pb-3,.bsui .py-3{padding-bottom:1rem !important}.bsui .pl-3,.bsui .px-3{padding-left:1rem !important}.bsui .p-4{padding:1.5rem !important}.bsui .pt-4,.bsui .py-4{padding-top:1.5rem !important}.bsui .pr-4,.bsui .px-4{padding-right:1.5rem !important}.bsui .pb-4,.bsui .py-4{padding-bottom:1.5rem !important}.bsui .pl-4,.bsui .px-4{padding-left:1.5rem !important}.bsui .p-5{padding:3rem !important}.bsui .pt-5,.bsui .py-5{padding-top:3rem !important}.bsui .pr-5,.bsui .px-5{padding-right:3rem !important}.bsui .pb-5,.bsui .py-5{padding-bottom:3rem !important}.bsui .pl-5,.bsui .px-5{padding-left:3rem !important}.bsui .p-6{padding:4rem !important}.bsui .pt-6,.bsui .py-6{padding-top:4rem !important}.bsui .pr-6,.bsui .px-6{padding-right:4rem !important}.bsui .pb-6,.bsui .py-6{padding-bottom:4rem !important}.bsui .pl-6,.bsui .px-6{padding-left:4rem !important}.bsui .p-7{padding:6rem !important}.bsui .pt-7,.bsui .py-7{padding-top:6rem !important}.bsui .pr-7,.bsui .px-7{padding-right:6rem !important}.bsui .pb-7,.bsui .py-7{padding-bottom:6rem !important}.bsui .pl-7,.bsui .px-7{padding-left:6rem !important}.bsui .p-8{padding:8rem !important}.bsui .pt-8,.bsui .py-8{padding-top:8rem !important}.bsui .pr-8,.bsui .px-8{padding-right:8rem !important}.bsui .pb-8,.bsui .py-8{padding-bottom:8rem !important}.bsui .pl-8,.bsui .px-8{padding-left:8rem !important}.bsui .p-9{padding:10rem !important}.bsui .pt-9,.bsui .py-9{padding-top:10rem !important}.bsui .pr-9,.bsui .px-9{padding-right:10rem !important}.bsui .pb-9,.bsui .py-9{padding-bottom:10rem !important}.bsui .pl-9,.bsui .px-9{padding-left:10rem !important}.bsui .p-10{padding:12rem !important}.bsui .pt-10,.bsui .py-10{padding-top:12rem !important}.bsui .pr-10,.bsui .px-10{padding-right:12rem !important}.bsui .pb-10,.bsui .py-10{padding-bottom:12rem !important}.bsui .pl-10,.bsui .px-10{padding-left:12rem !important}.bsui .p-11{padding:14rem !important}.bsui .pt-11,.bsui .py-11{padding-top:14rem !important}.bsui .pr-11,.bsui .px-11{padding-right:14rem !important}.bsui .pb-11,.bsui .py-11{padding-bottom:14rem !important}.bsui .pl-11,.bsui .px-11{padding-left:14rem !important}.bsui .p-12{padding:16rem !important}.bsui .pt-12,.bsui .py-12{padding-top:16rem !important}.bsui .pr-12,.bsui .px-12{padding-right:16rem !important}.bsui .pb-12,.bsui .py-12{padding-bottom:16rem !important}.bsui .pl-12,.bsui .px-12{padding-left:16rem !important}.bsui .m-n1{margin:-.25rem !important}.bsui .mt-n1,.bsui .my-n1{margin-top:-.25rem !important}.bsui .mr-n1,.bsui .mx-n1{margin-right:-.25rem !important}.bsui .mb-n1,.bsui .my-n1{margin-bottom:-.25rem !important}.bsui .ml-n1,.bsui .mx-n1{margin-left:-.25rem !important}.bsui .m-n2{margin:-.5rem !important}.bsui .mt-n2,.bsui .my-n2{margin-top:-.5rem !important}.bsui .mr-n2,.bsui .mx-n2{margin-right:-.5rem !important}.bsui .mb-n2,.bsui .my-n2{margin-bottom:-.5rem !important}.bsui .ml-n2,.bsui .mx-n2{margin-left:-.5rem !important}.bsui .m-n3{margin:-1rem !important}.bsui .mt-n3,.bsui .my-n3{margin-top:-1rem !important}.bsui .mr-n3,.bsui .mx-n3{margin-right:-1rem !important}.bsui .mb-n3,.bsui .my-n3{margin-bottom:-1rem !important}.bsui .ml-n3,.bsui .mx-n3{margin-left:-1rem !important}.bsui .m-n4{margin:-1.5rem !important}.bsui .mt-n4,.bsui .my-n4{margin-top:-1.5rem !important}.bsui .mr-n4,.bsui .mx-n4{margin-right:-1.5rem !important}.bsui .mb-n4,.bsui .my-n4{margin-bottom:-1.5rem !important}.bsui .ml-n4,.bsui .mx-n4{margin-left:-1.5rem !important}.bsui .m-n5{margin:-3rem !important}.bsui .mt-n5,.bsui .my-n5{margin-top:-3rem !important}.bsui .mr-n5,.bsui .mx-n5{margin-right:-3rem !important}.bsui .mb-n5,.bsui .my-n5{margin-bottom:-3rem !important}.bsui .ml-n5,.bsui .mx-n5{margin-left:-3rem !important}.bsui .m-n6{margin:-4rem !important}.bsui .mt-n6,.bsui .my-n6{margin-top:-4rem !important}.bsui .mr-n6,.bsui .mx-n6{margin-right:-4rem !important}.bsui .mb-n6,.bsui .my-n6{margin-bottom:-4rem !important}.bsui .ml-n6,.bsui .mx-n6{margin-left:-4rem !important}.bsui .m-n7{margin:-6rem !important}.bsui .mt-n7,.bsui .my-n7{margin-top:-6rem !important}.bsui .mr-n7,.bsui .mx-n7{margin-right:-6rem !important}.bsui .mb-n7,.bsui .my-n7{margin-bottom:-6rem !important}.bsui .ml-n7,.bsui .mx-n7{margin-left:-6rem !important}.bsui .m-n8{margin:-8rem !important}.bsui .mt-n8,.bsui .my-n8{margin-top:-8rem !important}.bsui .mr-n8,.bsui .mx-n8{margin-right:-8rem !important}.bsui .mb-n8,.bsui .my-n8{margin-bottom:-8rem !important}.bsui .ml-n8,.bsui .mx-n8{margin-left:-8rem !important}.bsui .m-n9{margin:-10rem !important}.bsui .mt-n9,.bsui .my-n9{margin-top:-10rem !important}.bsui .mr-n9,.bsui .mx-n9{margin-right:-10rem !important}.bsui .mb-n9,.bsui .my-n9{margin-bottom:-10rem !important}.bsui .ml-n9,.bsui .mx-n9{margin-left:-10rem !important}.bsui .m-n10{margin:-12rem !important}.bsui .mt-n10,.bsui .my-n10{margin-top:-12rem !important}.bsui .mr-n10,.bsui .mx-n10{margin-right:-12rem !important}.bsui .mb-n10,.bsui .my-n10{margin-bottom:-12rem !important}.bsui .ml-n10,.bsui .mx-n10{margin-left:-12rem !important}.bsui .m-n11{margin:-14rem !important}.bsui .mt-n11,.bsui .my-n11{margin-top:-14rem !important}.bsui .mr-n11,.bsui .mx-n11{margin-right:-14rem !important}.bsui .mb-n11,.bsui .my-n11{margin-bottom:-14rem !important}.bsui .ml-n11,.bsui .mx-n11{margin-left:-14rem !important}.bsui .m-n12{margin:-16rem !important}.bsui .mt-n12,.bsui .my-n12{margin-top:-16rem !important}.bsui .mr-n12,.bsui .mx-n12{margin-right:-16rem !important}.bsui .mb-n12,.bsui .my-n12{margin-bottom:-16rem !important}.bsui .ml-n12,.bsui .mx-n12{margin-left:-16rem !important}.bsui .m-auto{margin:auto !important}.bsui .mt-auto,.bsui .my-auto{margin-top:auto !important}.bsui .mr-auto,.bsui .mx-auto{margin-right:auto !important}.bsui .mb-auto,.bsui .my-auto{margin-bottom:auto !important}.bsui .ml-auto,.bsui .mx-auto{margin-left:auto !important}@media (min-width: 576px){.bsui .m-sm-0{margin:0 !important}.bsui .mt-sm-0,.bsui .my-sm-0{margin-top:0 !important}.bsui .mr-sm-0,.bsui .mx-sm-0{margin-right:0 !important}.bsui .mb-sm-0,.bsui .my-sm-0{margin-bottom:0 !important}.bsui .ml-sm-0,.bsui .mx-sm-0{margin-left:0 !important}.bsui .m-sm-1{margin:.25rem !important}.bsui .mt-sm-1,.bsui .my-sm-1{margin-top:.25rem !important}.bsui .mr-sm-1,.bsui .mx-sm-1{margin-right:.25rem !important}.bsui .mb-sm-1,.bsui .my-sm-1{margin-bottom:.25rem !important}.bsui .ml-sm-1,.bsui .mx-sm-1{margin-left:.25rem !important}.bsui .m-sm-2{margin:.5rem !important}.bsui .mt-sm-2,.bsui .my-sm-2{margin-top:.5rem !important}.bsui .mr-sm-2,.bsui .mx-sm-2{margin-right:.5rem !important}.bsui .mb-sm-2,.bsui .my-sm-2{margin-bottom:.5rem !important}.bsui .ml-sm-2,.bsui .mx-sm-2{margin-left:.5rem !important}.bsui .m-sm-3{margin:1rem !important}.bsui .mt-sm-3,.bsui .my-sm-3{margin-top:1rem !important}.bsui .mr-sm-3,.bsui .mx-sm-3{margin-right:1rem !important}.bsui .mb-sm-3,.bsui .my-sm-3{margin-bottom:1rem !important}.bsui .ml-sm-3,.bsui .mx-sm-3{margin-left:1rem !important}.bsui .m-sm-4{margin:1.5rem !important}.bsui .mt-sm-4,.bsui .my-sm-4{margin-top:1.5rem !important}.bsui .mr-sm-4,.bsui .mx-sm-4{margin-right:1.5rem !important}.bsui .mb-sm-4,.bsui .my-sm-4{margin-bottom:1.5rem !important}.bsui .ml-sm-4,.bsui .mx-sm-4{margin-left:1.5rem !important}.bsui .m-sm-5{margin:3rem !important}.bsui .mt-sm-5,.bsui .my-sm-5{margin-top:3rem !important}.bsui .mr-sm-5,.bsui .mx-sm-5{margin-right:3rem !important}.bsui .mb-sm-5,.bsui .my-sm-5{margin-bottom:3rem !important}.bsui .ml-sm-5,.bsui .mx-sm-5{margin-left:3rem !important}.bsui .m-sm-6{margin:4rem !important}.bsui .mt-sm-6,.bsui .my-sm-6{margin-top:4rem !important}.bsui .mr-sm-6,.bsui .mx-sm-6{margin-right:4rem !important}.bsui .mb-sm-6,.bsui .my-sm-6{margin-bottom:4rem !important}.bsui .ml-sm-6,.bsui .mx-sm-6{margin-left:4rem !important}.bsui .m-sm-7{margin:6rem !important}.bsui .mt-sm-7,.bsui .my-sm-7{margin-top:6rem !important}.bsui .mr-sm-7,.bsui .mx-sm-7{margin-right:6rem !important}.bsui .mb-sm-7,.bsui .my-sm-7{margin-bottom:6rem !important}.bsui .ml-sm-7,.bsui .mx-sm-7{margin-left:6rem !important}.bsui .m-sm-8{margin:8rem !important}.bsui .mt-sm-8,.bsui .my-sm-8{margin-top:8rem !important}.bsui .mr-sm-8,.bsui .mx-sm-8{margin-right:8rem !important}.bsui .mb-sm-8,.bsui .my-sm-8{margin-bottom:8rem !important}.bsui .ml-sm-8,.bsui .mx-sm-8{margin-left:8rem !important}.bsui .m-sm-9{margin:10rem !important}.bsui .mt-sm-9,.bsui .my-sm-9{margin-top:10rem !important}.bsui .mr-sm-9,.bsui .mx-sm-9{margin-right:10rem !important}.bsui .mb-sm-9,.bsui .my-sm-9{margin-bottom:10rem !important}.bsui .ml-sm-9,.bsui .mx-sm-9{margin-left:10rem !important}.bsui .m-sm-10{margin:12rem !important}.bsui .mt-sm-10,.bsui .my-sm-10{margin-top:12rem !important}.bsui .mr-sm-10,.bsui .mx-sm-10{margin-right:12rem !important}.bsui .mb-sm-10,.bsui .my-sm-10{margin-bottom:12rem !important}.bsui .ml-sm-10,.bsui .mx-sm-10{margin-left:12rem !important}.bsui .m-sm-11{margin:14rem !important}.bsui .mt-sm-11,.bsui .my-sm-11{margin-top:14rem !important}.bsui .mr-sm-11,.bsui .mx-sm-11{margin-right:14rem !important}.bsui .mb-sm-11,.bsui .my-sm-11{margin-bottom:14rem !important}.bsui .ml-sm-11,.bsui .mx-sm-11{margin-left:14rem !important}.bsui .m-sm-12{margin:16rem !important}.bsui .mt-sm-12,.bsui .my-sm-12{margin-top:16rem !important}.bsui .mr-sm-12,.bsui .mx-sm-12{margin-right:16rem !important}.bsui .mb-sm-12,.bsui .my-sm-12{margin-bottom:16rem !important}.bsui .ml-sm-12,.bsui .mx-sm-12{margin-left:16rem !important}.bsui .p-sm-0{padding:0 !important}.bsui .pt-sm-0,.bsui .py-sm-0{padding-top:0 !important}.bsui .pr-sm-0,.bsui .px-sm-0{padding-right:0 !important}.bsui .pb-sm-0,.bsui .py-sm-0{padding-bottom:0 !important}.bsui .pl-sm-0,.bsui .px-sm-0{padding-left:0 !important}.bsui .p-sm-1{padding:.25rem !important}.bsui .pt-sm-1,.bsui .py-sm-1{padding-top:.25rem !important}.bsui .pr-sm-1,.bsui .px-sm-1{padding-right:.25rem !important}.bsui .pb-sm-1,.bsui .py-sm-1{padding-bottom:.25rem !important}.bsui .pl-sm-1,.bsui .px-sm-1{padding-left:.25rem !important}.bsui .p-sm-2{padding:.5rem !important}.bsui .pt-sm-2,.bsui .py-sm-2{padding-top:.5rem !important}.bsui .pr-sm-2,.bsui .px-sm-2{padding-right:.5rem !important}.bsui .pb-sm-2,.bsui .py-sm-2{padding-bottom:.5rem !important}.bsui .pl-sm-2,.bsui .px-sm-2{padding-left:.5rem !important}.bsui .p-sm-3{padding:1rem !important}.bsui .pt-sm-3,.bsui .py-sm-3{padding-top:1rem !important}.bsui .pr-sm-3,.bsui .px-sm-3{padding-right:1rem !important}.bsui .pb-sm-3,.bsui .py-sm-3{padding-bottom:1rem !important}.bsui .pl-sm-3,.bsui .px-sm-3{padding-left:1rem !important}.bsui .p-sm-4{padding:1.5rem !important}.bsui .pt-sm-4,.bsui .py-sm-4{padding-top:1.5rem !important}.bsui .pr-sm-4,.bsui .px-sm-4{padding-right:1.5rem !important}.bsui .pb-sm-4,.bsui .py-sm-4{padding-bottom:1.5rem !important}.bsui .pl-sm-4,.bsui .px-sm-4{padding-left:1.5rem !important}.bsui .p-sm-5{padding:3rem !important}.bsui .pt-sm-5,.bsui .py-sm-5{padding-top:3rem !important}.bsui .pr-sm-5,.bsui .px-sm-5{padding-right:3rem !important}.bsui .pb-sm-5,.bsui .py-sm-5{padding-bottom:3rem !important}.bsui .pl-sm-5,.bsui .px-sm-5{padding-left:3rem !important}.bsui .p-sm-6{padding:4rem !important}.bsui .pt-sm-6,.bsui .py-sm-6{padding-top:4rem !important}.bsui .pr-sm-6,.bsui .px-sm-6{padding-right:4rem !important}.bsui .pb-sm-6,.bsui .py-sm-6{padding-bottom:4rem !important}.bsui .pl-sm-6,.bsui .px-sm-6{padding-left:4rem !important}.bsui .p-sm-7{padding:6rem !important}.bsui .pt-sm-7,.bsui .py-sm-7{padding-top:6rem !important}.bsui .pr-sm-7,.bsui .px-sm-7{padding-right:6rem !important}.bsui .pb-sm-7,.bsui .py-sm-7{padding-bottom:6rem !important}.bsui .pl-sm-7,.bsui .px-sm-7{padding-left:6rem !important}.bsui .p-sm-8{padding:8rem !important}.bsui .pt-sm-8,.bsui .py-sm-8{padding-top:8rem !important}.bsui .pr-sm-8,.bsui .px-sm-8{padding-right:8rem !important}.bsui .pb-sm-8,.bsui .py-sm-8{padding-bottom:8rem !important}.bsui .pl-sm-8,.bsui .px-sm-8{padding-left:8rem !important}.bsui .p-sm-9{padding:10rem !important}.bsui .pt-sm-9,.bsui .py-sm-9{padding-top:10rem !important}.bsui .pr-sm-9,.bsui .px-sm-9{padding-right:10rem !important}.bsui .pb-sm-9,.bsui .py-sm-9{padding-bottom:10rem !important}.bsui .pl-sm-9,.bsui .px-sm-9{padding-left:10rem !important}.bsui .p-sm-10{padding:12rem !important}.bsui .pt-sm-10,.bsui .py-sm-10{padding-top:12rem !important}.bsui .pr-sm-10,.bsui .px-sm-10{padding-right:12rem !important}.bsui .pb-sm-10,.bsui .py-sm-10{padding-bottom:12rem !important}.bsui .pl-sm-10,.bsui .px-sm-10{padding-left:12rem !important}.bsui .p-sm-11{padding:14rem !important}.bsui .pt-sm-11,.bsui .py-sm-11{padding-top:14rem !important}.bsui .pr-sm-11,.bsui .px-sm-11{padding-right:14rem !important}.bsui .pb-sm-11,.bsui .py-sm-11{padding-bottom:14rem !important}.bsui .pl-sm-11,.bsui .px-sm-11{padding-left:14rem !important}.bsui .p-sm-12{padding:16rem !important}.bsui .pt-sm-12,.bsui .py-sm-12{padding-top:16rem !important}.bsui .pr-sm-12,.bsui .px-sm-12{padding-right:16rem !important}.bsui .pb-sm-12,.bsui .py-sm-12{padding-bottom:16rem !important}.bsui .pl-sm-12,.bsui .px-sm-12{padding-left:16rem !important}.bsui .m-sm-n1{margin:-.25rem !important}.bsui .mt-sm-n1,.bsui .my-sm-n1{margin-top:-.25rem !important}.bsui .mr-sm-n1,.bsui .mx-sm-n1{margin-right:-.25rem !important}.bsui .mb-sm-n1,.bsui .my-sm-n1{margin-bottom:-.25rem !important}.bsui .ml-sm-n1,.bsui .mx-sm-n1{margin-left:-.25rem !important}.bsui .m-sm-n2{margin:-.5rem !important}.bsui .mt-sm-n2,.bsui .my-sm-n2{margin-top:-.5rem !important}.bsui .mr-sm-n2,.bsui .mx-sm-n2{margin-right:-.5rem !important}.bsui .mb-sm-n2,.bsui .my-sm-n2{margin-bottom:-.5rem !important}.bsui .ml-sm-n2,.bsui .mx-sm-n2{margin-left:-.5rem !important}.bsui .m-sm-n3{margin:-1rem !important}.bsui .mt-sm-n3,.bsui .my-sm-n3{margin-top:-1rem !important}.bsui .mr-sm-n3,.bsui .mx-sm-n3{margin-right:-1rem !important}.bsui .mb-sm-n3,.bsui .my-sm-n3{margin-bottom:-1rem !important}.bsui .ml-sm-n3,.bsui .mx-sm-n3{margin-left:-1rem !important}.bsui .m-sm-n4{margin:-1.5rem !important}.bsui .mt-sm-n4,.bsui .my-sm-n4{margin-top:-1.5rem !important}.bsui .mr-sm-n4,.bsui .mx-sm-n4{margin-right:-1.5rem !important}.bsui .mb-sm-n4,.bsui .my-sm-n4{margin-bottom:-1.5rem !important}.bsui .ml-sm-n4,.bsui .mx-sm-n4{margin-left:-1.5rem !important}.bsui .m-sm-n5{margin:-3rem !important}.bsui .mt-sm-n5,.bsui .my-sm-n5{margin-top:-3rem !important}.bsui .mr-sm-n5,.bsui .mx-sm-n5{margin-right:-3rem !important}.bsui .mb-sm-n5,.bsui .my-sm-n5{margin-bottom:-3rem !important}.bsui .ml-sm-n5,.bsui .mx-sm-n5{margin-left:-3rem !important}.bsui .m-sm-n6{margin:-4rem !important}.bsui .mt-sm-n6,.bsui .my-sm-n6{margin-top:-4rem !important}.bsui .mr-sm-n6,.bsui .mx-sm-n6{margin-right:-4rem !important}.bsui .mb-sm-n6,.bsui .my-sm-n6{margin-bottom:-4rem !important}.bsui .ml-sm-n6,.bsui .mx-sm-n6{margin-left:-4rem !important}.bsui .m-sm-n7{margin:-6rem !important}.bsui .mt-sm-n7,.bsui .my-sm-n7{margin-top:-6rem !important}.bsui .mr-sm-n7,.bsui .mx-sm-n7{margin-right:-6rem !important}.bsui .mb-sm-n7,.bsui .my-sm-n7{margin-bottom:-6rem !important}.bsui .ml-sm-n7,.bsui .mx-sm-n7{margin-left:-6rem !important}.bsui .m-sm-n8{margin:-8rem !important}.bsui .mt-sm-n8,.bsui .my-sm-n8{margin-top:-8rem !important}.bsui .mr-sm-n8,.bsui .mx-sm-n8{margin-right:-8rem !important}.bsui .mb-sm-n8,.bsui .my-sm-n8{margin-bottom:-8rem !important}.bsui .ml-sm-n8,.bsui .mx-sm-n8{margin-left:-8rem !important}.bsui .m-sm-n9{margin:-10rem !important}.bsui .mt-sm-n9,.bsui .my-sm-n9{margin-top:-10rem !important}.bsui .mr-sm-n9,.bsui .mx-sm-n9{margin-right:-10rem !important}.bsui .mb-sm-n9,.bsui .my-sm-n9{margin-bottom:-10rem !important}.bsui .ml-sm-n9,.bsui .mx-sm-n9{margin-left:-10rem !important}.bsui .m-sm-n10{margin:-12rem !important}.bsui .mt-sm-n10,.bsui .my-sm-n10{margin-top:-12rem !important}.bsui .mr-sm-n10,.bsui .mx-sm-n10{margin-right:-12rem !important}.bsui .mb-sm-n10,.bsui .my-sm-n10{margin-bottom:-12rem !important}.bsui .ml-sm-n10,.bsui .mx-sm-n10{margin-left:-12rem !important}.bsui .m-sm-n11{margin:-14rem !important}.bsui .mt-sm-n11,.bsui .my-sm-n11{margin-top:-14rem !important}.bsui .mr-sm-n11,.bsui .mx-sm-n11{margin-right:-14rem !important}.bsui .mb-sm-n11,.bsui .my-sm-n11{margin-bottom:-14rem !important}.bsui .ml-sm-n11,.bsui .mx-sm-n11{margin-left:-14rem !important}.bsui .m-sm-n12{margin:-16rem !important}.bsui .mt-sm-n12,.bsui .my-sm-n12{margin-top:-16rem !important}.bsui .mr-sm-n12,.bsui .mx-sm-n12{margin-right:-16rem !important}.bsui .mb-sm-n12,.bsui .my-sm-n12{margin-bottom:-16rem !important}.bsui .ml-sm-n12,.bsui .mx-sm-n12{margin-left:-16rem !important}.bsui .m-sm-auto{margin:auto !important}.bsui .mt-sm-auto,.bsui .my-sm-auto{margin-top:auto !important}.bsui .mr-sm-auto,.bsui .mx-sm-auto{margin-right:auto !important}.bsui .mb-sm-auto,.bsui .my-sm-auto{margin-bottom:auto !important}.bsui .ml-sm-auto,.bsui .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.bsui .m-md-0{margin:0 !important}.bsui .mt-md-0,.bsui .my-md-0{margin-top:0 !important}.bsui .mr-md-0,.bsui .mx-md-0{margin-right:0 !important}.bsui .mb-md-0,.bsui .my-md-0{margin-bottom:0 !important}.bsui .ml-md-0,.bsui .mx-md-0{margin-left:0 !important}.bsui .m-md-1{margin:.25rem !important}.bsui .mt-md-1,.bsui .my-md-1{margin-top:.25rem !important}.bsui .mr-md-1,.bsui .mx-md-1{margin-right:.25rem !important}.bsui .mb-md-1,.bsui .my-md-1{margin-bottom:.25rem !important}.bsui .ml-md-1,.bsui .mx-md-1{margin-left:.25rem !important}.bsui .m-md-2{margin:.5rem !important}.bsui .mt-md-2,.bsui .my-md-2{margin-top:.5rem !important}.bsui .mr-md-2,.bsui .mx-md-2{margin-right:.5rem !important}.bsui .mb-md-2,.bsui .my-md-2{margin-bottom:.5rem !important}.bsui .ml-md-2,.bsui .mx-md-2{margin-left:.5rem !important}.bsui .m-md-3{margin:1rem !important}.bsui .mt-md-3,.bsui .my-md-3{margin-top:1rem !important}.bsui .mr-md-3,.bsui .mx-md-3{margin-right:1rem !important}.bsui .mb-md-3,.bsui .my-md-3{margin-bottom:1rem !important}.bsui .ml-md-3,.bsui .mx-md-3{margin-left:1rem !important}.bsui .m-md-4{margin:1.5rem !important}.bsui .mt-md-4,.bsui .my-md-4{margin-top:1.5rem !important}.bsui .mr-md-4,.bsui .mx-md-4{margin-right:1.5rem !important}.bsui .mb-md-4,.bsui .my-md-4{margin-bottom:1.5rem !important}.bsui .ml-md-4,.bsui .mx-md-4{margin-left:1.5rem !important}.bsui .m-md-5{margin:3rem !important}.bsui .mt-md-5,.bsui .my-md-5{margin-top:3rem !important}.bsui .mr-md-5,.bsui .mx-md-5{margin-right:3rem !important}.bsui .mb-md-5,.bsui .my-md-5{margin-bottom:3rem !important}.bsui .ml-md-5,.bsui .mx-md-5{margin-left:3rem !important}.bsui .m-md-6{margin:4rem !important}.bsui .mt-md-6,.bsui .my-md-6{margin-top:4rem !important}.bsui .mr-md-6,.bsui .mx-md-6{margin-right:4rem !important}.bsui .mb-md-6,.bsui .my-md-6{margin-bottom:4rem !important}.bsui .ml-md-6,.bsui .mx-md-6{margin-left:4rem !important}.bsui .m-md-7{margin:6rem !important}.bsui .mt-md-7,.bsui .my-md-7{margin-top:6rem !important}.bsui .mr-md-7,.bsui .mx-md-7{margin-right:6rem !important}.bsui .mb-md-7,.bsui .my-md-7{margin-bottom:6rem !important}.bsui .ml-md-7,.bsui .mx-md-7{margin-left:6rem !important}.bsui .m-md-8{margin:8rem !important}.bsui .mt-md-8,.bsui .my-md-8{margin-top:8rem !important}.bsui .mr-md-8,.bsui .mx-md-8{margin-right:8rem !important}.bsui .mb-md-8,.bsui .my-md-8{margin-bottom:8rem !important}.bsui .ml-md-8,.bsui .mx-md-8{margin-left:8rem !important}.bsui .m-md-9{margin:10rem !important}.bsui .mt-md-9,.bsui .my-md-9{margin-top:10rem !important}.bsui .mr-md-9,.bsui .mx-md-9{margin-right:10rem !important}.bsui .mb-md-9,.bsui .my-md-9{margin-bottom:10rem !important}.bsui .ml-md-9,.bsui .mx-md-9{margin-left:10rem !important}.bsui .m-md-10{margin:12rem !important}.bsui .mt-md-10,.bsui .my-md-10{margin-top:12rem !important}.bsui .mr-md-10,.bsui .mx-md-10{margin-right:12rem !important}.bsui .mb-md-10,.bsui .my-md-10{margin-bottom:12rem !important}.bsui .ml-md-10,.bsui .mx-md-10{margin-left:12rem !important}.bsui .m-md-11{margin:14rem !important}.bsui .mt-md-11,.bsui .my-md-11{margin-top:14rem !important}.bsui .mr-md-11,.bsui .mx-md-11{margin-right:14rem !important}.bsui .mb-md-11,.bsui .my-md-11{margin-bottom:14rem !important}.bsui .ml-md-11,.bsui .mx-md-11{margin-left:14rem !important}.bsui .m-md-12{margin:16rem !important}.bsui .mt-md-12,.bsui .my-md-12{margin-top:16rem !important}.bsui .mr-md-12,.bsui .mx-md-12{margin-right:16rem !important}.bsui .mb-md-12,.bsui .my-md-12{margin-bottom:16rem !important}.bsui .ml-md-12,.bsui .mx-md-12{margin-left:16rem !important}.bsui .p-md-0{padding:0 !important}.bsui .pt-md-0,.bsui .py-md-0{padding-top:0 !important}.bsui .pr-md-0,.bsui .px-md-0{padding-right:0 !important}.bsui .pb-md-0,.bsui .py-md-0{padding-bottom:0 !important}.bsui .pl-md-0,.bsui .px-md-0{padding-left:0 !important}.bsui .p-md-1{padding:.25rem !important}.bsui .pt-md-1,.bsui .py-md-1{padding-top:.25rem !important}.bsui .pr-md-1,.bsui .px-md-1{padding-right:.25rem !important}.bsui .pb-md-1,.bsui .py-md-1{padding-bottom:.25rem !important}.bsui .pl-md-1,.bsui .px-md-1{padding-left:.25rem !important}.bsui .p-md-2{padding:.5rem !important}.bsui .pt-md-2,.bsui .py-md-2{padding-top:.5rem !important}.bsui .pr-md-2,.bsui .px-md-2{padding-right:.5rem !important}.bsui .pb-md-2,.bsui .py-md-2{padding-bottom:.5rem !important}.bsui .pl-md-2,.bsui .px-md-2{padding-left:.5rem !important}.bsui .p-md-3{padding:1rem !important}.bsui .pt-md-3,.bsui .py-md-3{padding-top:1rem !important}.bsui .pr-md-3,.bsui .px-md-3{padding-right:1rem !important}.bsui .pb-md-3,.bsui .py-md-3{padding-bottom:1rem !important}.bsui .pl-md-3,.bsui .px-md-3{padding-left:1rem !important}.bsui .p-md-4{padding:1.5rem !important}.bsui .pt-md-4,.bsui .py-md-4{padding-top:1.5rem !important}.bsui .pr-md-4,.bsui .px-md-4{padding-right:1.5rem !important}.bsui .pb-md-4,.bsui .py-md-4{padding-bottom:1.5rem !important}.bsui .pl-md-4,.bsui .px-md-4{padding-left:1.5rem !important}.bsui .p-md-5{padding:3rem !important}.bsui .pt-md-5,.bsui .py-md-5{padding-top:3rem !important}.bsui .pr-md-5,.bsui .px-md-5{padding-right:3rem !important}.bsui .pb-md-5,.bsui .py-md-5{padding-bottom:3rem !important}.bsui .pl-md-5,.bsui .px-md-5{padding-left:3rem !important}.bsui .p-md-6{padding:4rem !important}.bsui .pt-md-6,.bsui .py-md-6{padding-top:4rem !important}.bsui .pr-md-6,.bsui .px-md-6{padding-right:4rem !important}.bsui .pb-md-6,.bsui .py-md-6{padding-bottom:4rem !important}.bsui .pl-md-6,.bsui .px-md-6{padding-left:4rem !important}.bsui .p-md-7{padding:6rem !important}.bsui .pt-md-7,.bsui .py-md-7{padding-top:6rem !important}.bsui .pr-md-7,.bsui .px-md-7{padding-right:6rem !important}.bsui .pb-md-7,.bsui .py-md-7{padding-bottom:6rem !important}.bsui .pl-md-7,.bsui .px-md-7{padding-left:6rem !important}.bsui .p-md-8{padding:8rem !important}.bsui .pt-md-8,.bsui .py-md-8{padding-top:8rem !important}.bsui .pr-md-8,.bsui .px-md-8{padding-right:8rem !important}.bsui .pb-md-8,.bsui .py-md-8{padding-bottom:8rem !important}.bsui .pl-md-8,.bsui .px-md-8{padding-left:8rem !important}.bsui .p-md-9{padding:10rem !important}.bsui .pt-md-9,.bsui .py-md-9{padding-top:10rem !important}.bsui .pr-md-9,.bsui .px-md-9{padding-right:10rem !important}.bsui .pb-md-9,.bsui .py-md-9{padding-bottom:10rem !important}.bsui .pl-md-9,.bsui .px-md-9{padding-left:10rem !important}.bsui .p-md-10{padding:12rem !important}.bsui .pt-md-10,.bsui .py-md-10{padding-top:12rem !important}.bsui .pr-md-10,.bsui .px-md-10{padding-right:12rem !important}.bsui .pb-md-10,.bsui .py-md-10{padding-bottom:12rem !important}.bsui .pl-md-10,.bsui .px-md-10{padding-left:12rem !important}.bsui .p-md-11{padding:14rem !important}.bsui .pt-md-11,.bsui .py-md-11{padding-top:14rem !important}.bsui .pr-md-11,.bsui .px-md-11{padding-right:14rem !important}.bsui .pb-md-11,.bsui .py-md-11{padding-bottom:14rem !important}.bsui .pl-md-11,.bsui .px-md-11{padding-left:14rem !important}.bsui .p-md-12{padding:16rem !important}.bsui .pt-md-12,.bsui .py-md-12{padding-top:16rem !important}.bsui .pr-md-12,.bsui .px-md-12{padding-right:16rem !important}.bsui .pb-md-12,.bsui .py-md-12{padding-bottom:16rem !important}.bsui .pl-md-12,.bsui .px-md-12{padding-left:16rem !important}.bsui .m-md-n1{margin:-.25rem !important}.bsui .mt-md-n1,.bsui .my-md-n1{margin-top:-.25rem !important}.bsui .mr-md-n1,.bsui .mx-md-n1{margin-right:-.25rem !important}.bsui .mb-md-n1,.bsui .my-md-n1{margin-bottom:-.25rem !important}.bsui .ml-md-n1,.bsui .mx-md-n1{margin-left:-.25rem !important}.bsui .m-md-n2{margin:-.5rem !important}.bsui .mt-md-n2,.bsui .my-md-n2{margin-top:-.5rem !important}.bsui .mr-md-n2,.bsui .mx-md-n2{margin-right:-.5rem !important}.bsui .mb-md-n2,.bsui .my-md-n2{margin-bottom:-.5rem !important}.bsui .ml-md-n2,.bsui .mx-md-n2{margin-left:-.5rem !important}.bsui .m-md-n3{margin:-1rem !important}.bsui .mt-md-n3,.bsui .my-md-n3{margin-top:-1rem !important}.bsui .mr-md-n3,.bsui .mx-md-n3{margin-right:-1rem !important}.bsui .mb-md-n3,.bsui .my-md-n3{margin-bottom:-1rem !important}.bsui .ml-md-n3,.bsui .mx-md-n3{margin-left:-1rem !important}.bsui .m-md-n4{margin:-1.5rem !important}.bsui .mt-md-n4,.bsui .my-md-n4{margin-top:-1.5rem !important}.bsui .mr-md-n4,.bsui .mx-md-n4{margin-right:-1.5rem !important}.bsui .mb-md-n4,.bsui .my-md-n4{margin-bottom:-1.5rem !important}.bsui .ml-md-n4,.bsui .mx-md-n4{margin-left:-1.5rem !important}.bsui .m-md-n5{margin:-3rem !important}.bsui .mt-md-n5,.bsui .my-md-n5{margin-top:-3rem !important}.bsui .mr-md-n5,.bsui .mx-md-n5{margin-right:-3rem !important}.bsui .mb-md-n5,.bsui .my-md-n5{margin-bottom:-3rem !important}.bsui .ml-md-n5,.bsui .mx-md-n5{margin-left:-3rem !important}.bsui .m-md-n6{margin:-4rem !important}.bsui .mt-md-n6,.bsui .my-md-n6{margin-top:-4rem !important}.bsui .mr-md-n6,.bsui .mx-md-n6{margin-right:-4rem !important}.bsui .mb-md-n6,.bsui .my-md-n6{margin-bottom:-4rem !important}.bsui .ml-md-n6,.bsui .mx-md-n6{margin-left:-4rem !important}.bsui .m-md-n7{margin:-6rem !important}.bsui .mt-md-n7,.bsui .my-md-n7{margin-top:-6rem !important}.bsui .mr-md-n7,.bsui .mx-md-n7{margin-right:-6rem !important}.bsui .mb-md-n7,.bsui .my-md-n7{margin-bottom:-6rem !important}.bsui .ml-md-n7,.bsui .mx-md-n7{margin-left:-6rem !important}.bsui .m-md-n8{margin:-8rem !important}.bsui .mt-md-n8,.bsui .my-md-n8{margin-top:-8rem !important}.bsui .mr-md-n8,.bsui .mx-md-n8{margin-right:-8rem !important}.bsui .mb-md-n8,.bsui .my-md-n8{margin-bottom:-8rem !important}.bsui .ml-md-n8,.bsui .mx-md-n8{margin-left:-8rem !important}.bsui .m-md-n9{margin:-10rem !important}.bsui .mt-md-n9,.bsui .my-md-n9{margin-top:-10rem !important}.bsui .mr-md-n9,.bsui .mx-md-n9{margin-right:-10rem !important}.bsui .mb-md-n9,.bsui .my-md-n9{margin-bottom:-10rem !important}.bsui .ml-md-n9,.bsui .mx-md-n9{margin-left:-10rem !important}.bsui .m-md-n10{margin:-12rem !important}.bsui .mt-md-n10,.bsui .my-md-n10{margin-top:-12rem !important}.bsui .mr-md-n10,.bsui .mx-md-n10{margin-right:-12rem !important}.bsui .mb-md-n10,.bsui .my-md-n10{margin-bottom:-12rem !important}.bsui .ml-md-n10,.bsui .mx-md-n10{margin-left:-12rem !important}.bsui .m-md-n11{margin:-14rem !important}.bsui .mt-md-n11,.bsui .my-md-n11{margin-top:-14rem !important}.bsui .mr-md-n11,.bsui .mx-md-n11{margin-right:-14rem !important}.bsui .mb-md-n11,.bsui .my-md-n11{margin-bottom:-14rem !important}.bsui .ml-md-n11,.bsui .mx-md-n11{margin-left:-14rem !important}.bsui .m-md-n12{margin:-16rem !important}.bsui .mt-md-n12,.bsui .my-md-n12{margin-top:-16rem !important}.bsui .mr-md-n12,.bsui .mx-md-n12{margin-right:-16rem !important}.bsui .mb-md-n12,.bsui .my-md-n12{margin-bottom:-16rem !important}.bsui .ml-md-n12,.bsui .mx-md-n12{margin-left:-16rem !important}.bsui .m-md-auto{margin:auto !important}.bsui .mt-md-auto,.bsui .my-md-auto{margin-top:auto !important}.bsui .mr-md-auto,.bsui .mx-md-auto{margin-right:auto !important}.bsui .mb-md-auto,.bsui .my-md-auto{margin-bottom:auto !important}.bsui .ml-md-auto,.bsui .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.bsui .m-lg-0{margin:0 !important}.bsui .mt-lg-0,.bsui .my-lg-0{margin-top:0 !important}.bsui .mr-lg-0,.bsui .mx-lg-0{margin-right:0 !important}.bsui .mb-lg-0,.bsui .my-lg-0{margin-bottom:0 !important}.bsui .ml-lg-0,.bsui .mx-lg-0{margin-left:0 !important}.bsui .m-lg-1{margin:.25rem !important}.bsui .mt-lg-1,.bsui .my-lg-1{margin-top:.25rem !important}.bsui .mr-lg-1,.bsui .mx-lg-1{margin-right:.25rem !important}.bsui .mb-lg-1,.bsui .my-lg-1{margin-bottom:.25rem !important}.bsui .ml-lg-1,.bsui .mx-lg-1{margin-left:.25rem !important}.bsui .m-lg-2{margin:.5rem !important}.bsui .mt-lg-2,.bsui .my-lg-2{margin-top:.5rem !important}.bsui .mr-lg-2,.bsui .mx-lg-2{margin-right:.5rem !important}.bsui .mb-lg-2,.bsui .my-lg-2{margin-bottom:.5rem !important}.bsui .ml-lg-2,.bsui .mx-lg-2{margin-left:.5rem !important}.bsui .m-lg-3{margin:1rem !important}.bsui .mt-lg-3,.bsui .my-lg-3{margin-top:1rem !important}.bsui .mr-lg-3,.bsui .mx-lg-3{margin-right:1rem !important}.bsui .mb-lg-3,.bsui .my-lg-3{margin-bottom:1rem !important}.bsui .ml-lg-3,.bsui .mx-lg-3{margin-left:1rem !important}.bsui .m-lg-4{margin:1.5rem !important}.bsui .mt-lg-4,.bsui .my-lg-4{margin-top:1.5rem !important}.bsui .mr-lg-4,.bsui .mx-lg-4{margin-right:1.5rem !important}.bsui .mb-lg-4,.bsui .my-lg-4{margin-bottom:1.5rem !important}.bsui .ml-lg-4,.bsui .mx-lg-4{margin-left:1.5rem !important}.bsui .m-lg-5{margin:3rem !important}.bsui .mt-lg-5,.bsui .my-lg-5{margin-top:3rem !important}.bsui .mr-lg-5,.bsui .mx-lg-5{margin-right:3rem !important}.bsui .mb-lg-5,.bsui .my-lg-5{margin-bottom:3rem !important}.bsui .ml-lg-5,.bsui .mx-lg-5{margin-left:3rem !important}.bsui .m-lg-6{margin:4rem !important}.bsui .mt-lg-6,.bsui .my-lg-6{margin-top:4rem !important}.bsui .mr-lg-6,.bsui .mx-lg-6{margin-right:4rem !important}.bsui .mb-lg-6,.bsui .my-lg-6{margin-bottom:4rem !important}.bsui .ml-lg-6,.bsui .mx-lg-6{margin-left:4rem !important}.bsui .m-lg-7{margin:6rem !important}.bsui .mt-lg-7,.bsui .my-lg-7{margin-top:6rem !important}.bsui .mr-lg-7,.bsui .mx-lg-7{margin-right:6rem !important}.bsui .mb-lg-7,.bsui .my-lg-7{margin-bottom:6rem !important}.bsui .ml-lg-7,.bsui .mx-lg-7{margin-left:6rem !important}.bsui .m-lg-8{margin:8rem !important}.bsui .mt-lg-8,.bsui .my-lg-8{margin-top:8rem !important}.bsui .mr-lg-8,.bsui .mx-lg-8{margin-right:8rem !important}.bsui .mb-lg-8,.bsui .my-lg-8{margin-bottom:8rem !important}.bsui .ml-lg-8,.bsui .mx-lg-8{margin-left:8rem !important}.bsui .m-lg-9{margin:10rem !important}.bsui .mt-lg-9,.bsui .my-lg-9{margin-top:10rem !important}.bsui .mr-lg-9,.bsui .mx-lg-9{margin-right:10rem !important}.bsui .mb-lg-9,.bsui .my-lg-9{margin-bottom:10rem !important}.bsui .ml-lg-9,.bsui .mx-lg-9{margin-left:10rem !important}.bsui .m-lg-10{margin:12rem !important}.bsui .mt-lg-10,.bsui .my-lg-10{margin-top:12rem !important}.bsui .mr-lg-10,.bsui .mx-lg-10{margin-right:12rem !important}.bsui .mb-lg-10,.bsui .my-lg-10{margin-bottom:12rem !important}.bsui .ml-lg-10,.bsui .mx-lg-10{margin-left:12rem !important}.bsui .m-lg-11{margin:14rem !important}.bsui .mt-lg-11,.bsui .my-lg-11{margin-top:14rem !important}.bsui .mr-lg-11,.bsui .mx-lg-11{margin-right:14rem !important}.bsui .mb-lg-11,.bsui .my-lg-11{margin-bottom:14rem !important}.bsui .ml-lg-11,.bsui .mx-lg-11{margin-left:14rem !important}.bsui .m-lg-12{margin:16rem !important}.bsui .mt-lg-12,.bsui .my-lg-12{margin-top:16rem !important}.bsui .mr-lg-12,.bsui .mx-lg-12{margin-right:16rem !important}.bsui .mb-lg-12,.bsui .my-lg-12{margin-bottom:16rem !important}.bsui .ml-lg-12,.bsui .mx-lg-12{margin-left:16rem !important}.bsui .p-lg-0{padding:0 !important}.bsui .pt-lg-0,.bsui .py-lg-0{padding-top:0 !important}.bsui .pr-lg-0,.bsui .px-lg-0{padding-right:0 !important}.bsui .pb-lg-0,.bsui .py-lg-0{padding-bottom:0 !important}.bsui .pl-lg-0,.bsui .px-lg-0{padding-left:0 !important}.bsui .p-lg-1{padding:.25rem !important}.bsui .pt-lg-1,.bsui .py-lg-1{padding-top:.25rem !important}.bsui .pr-lg-1,.bsui .px-lg-1{padding-right:.25rem !important}.bsui .pb-lg-1,.bsui .py-lg-1{padding-bottom:.25rem !important}.bsui .pl-lg-1,.bsui .px-lg-1{padding-left:.25rem !important}.bsui .p-lg-2{padding:.5rem !important}.bsui .pt-lg-2,.bsui .py-lg-2{padding-top:.5rem !important}.bsui .pr-lg-2,.bsui .px-lg-2{padding-right:.5rem !important}.bsui .pb-lg-2,.bsui .py-lg-2{padding-bottom:.5rem !important}.bsui .pl-lg-2,.bsui .px-lg-2{padding-left:.5rem !important}.bsui .p-lg-3{padding:1rem !important}.bsui .pt-lg-3,.bsui .py-lg-3{padding-top:1rem !important}.bsui .pr-lg-3,.bsui .px-lg-3{padding-right:1rem !important}.bsui .pb-lg-3,.bsui .py-lg-3{padding-bottom:1rem !important}.bsui .pl-lg-3,.bsui .px-lg-3{padding-left:1rem !important}.bsui .p-lg-4{padding:1.5rem !important}.bsui .pt-lg-4,.bsui .py-lg-4{padding-top:1.5rem !important}.bsui .pr-lg-4,.bsui .px-lg-4{padding-right:1.5rem !important}.bsui .pb-lg-4,.bsui .py-lg-4{padding-bottom:1.5rem !important}.bsui .pl-lg-4,.bsui .px-lg-4{padding-left:1.5rem !important}.bsui .p-lg-5{padding:3rem !important}.bsui .pt-lg-5,.bsui .py-lg-5{padding-top:3rem !important}.bsui .pr-lg-5,.bsui .px-lg-5{padding-right:3rem !important}.bsui .pb-lg-5,.bsui .py-lg-5{padding-bottom:3rem !important}.bsui .pl-lg-5,.bsui .px-lg-5{padding-left:3rem !important}.bsui .p-lg-6{padding:4rem !important}.bsui .pt-lg-6,.bsui .py-lg-6{padding-top:4rem !important}.bsui .pr-lg-6,.bsui .px-lg-6{padding-right:4rem !important}.bsui .pb-lg-6,.bsui .py-lg-6{padding-bottom:4rem !important}.bsui .pl-lg-6,.bsui .px-lg-6{padding-left:4rem !important}.bsui .p-lg-7{padding:6rem !important}.bsui .pt-lg-7,.bsui .py-lg-7{padding-top:6rem !important}.bsui .pr-lg-7,.bsui .px-lg-7{padding-right:6rem !important}.bsui .pb-lg-7,.bsui .py-lg-7{padding-bottom:6rem !important}.bsui .pl-lg-7,.bsui .px-lg-7{padding-left:6rem !important}.bsui .p-lg-8{padding:8rem !important}.bsui .pt-lg-8,.bsui .py-lg-8{padding-top:8rem !important}.bsui .pr-lg-8,.bsui .px-lg-8{padding-right:8rem !important}.bsui .pb-lg-8,.bsui .py-lg-8{padding-bottom:8rem !important}.bsui .pl-lg-8,.bsui .px-lg-8{padding-left:8rem !important}.bsui .p-lg-9{padding:10rem !important}.bsui .pt-lg-9,.bsui .py-lg-9{padding-top:10rem !important}.bsui .pr-lg-9,.bsui .px-lg-9{padding-right:10rem !important}.bsui .pb-lg-9,.bsui .py-lg-9{padding-bottom:10rem !important}.bsui .pl-lg-9,.bsui .px-lg-9{padding-left:10rem !important}.bsui .p-lg-10{padding:12rem !important}.bsui .pt-lg-10,.bsui .py-lg-10{padding-top:12rem !important}.bsui .pr-lg-10,.bsui .px-lg-10{padding-right:12rem !important}.bsui .pb-lg-10,.bsui .py-lg-10{padding-bottom:12rem !important}.bsui .pl-lg-10,.bsui .px-lg-10{padding-left:12rem !important}.bsui .p-lg-11{padding:14rem !important}.bsui .pt-lg-11,.bsui .py-lg-11{padding-top:14rem !important}.bsui .pr-lg-11,.bsui .px-lg-11{padding-right:14rem !important}.bsui .pb-lg-11,.bsui .py-lg-11{padding-bottom:14rem !important}.bsui .pl-lg-11,.bsui .px-lg-11{padding-left:14rem !important}.bsui .p-lg-12{padding:16rem !important}.bsui .pt-lg-12,.bsui .py-lg-12{padding-top:16rem !important}.bsui .pr-lg-12,.bsui .px-lg-12{padding-right:16rem !important}.bsui .pb-lg-12,.bsui .py-lg-12{padding-bottom:16rem !important}.bsui .pl-lg-12,.bsui .px-lg-12{padding-left:16rem !important}.bsui .m-lg-n1{margin:-.25rem !important}.bsui .mt-lg-n1,.bsui .my-lg-n1{margin-top:-.25rem !important}.bsui .mr-lg-n1,.bsui .mx-lg-n1{margin-right:-.25rem !important}.bsui .mb-lg-n1,.bsui .my-lg-n1{margin-bottom:-.25rem !important}.bsui .ml-lg-n1,.bsui .mx-lg-n1{margin-left:-.25rem !important}.bsui .m-lg-n2{margin:-.5rem !important}.bsui .mt-lg-n2,.bsui .my-lg-n2{margin-top:-.5rem !important}.bsui .mr-lg-n2,.bsui .mx-lg-n2{margin-right:-.5rem !important}.bsui .mb-lg-n2,.bsui .my-lg-n2{margin-bottom:-.5rem !important}.bsui .ml-lg-n2,.bsui .mx-lg-n2{margin-left:-.5rem !important}.bsui .m-lg-n3{margin:-1rem !important}.bsui .mt-lg-n3,.bsui .my-lg-n3{margin-top:-1rem !important}.bsui .mr-lg-n3,.bsui .mx-lg-n3{margin-right:-1rem !important}.bsui .mb-lg-n3,.bsui .my-lg-n3{margin-bottom:-1rem !important}.bsui .ml-lg-n3,.bsui .mx-lg-n3{margin-left:-1rem !important}.bsui .m-lg-n4{margin:-1.5rem !important}.bsui .mt-lg-n4,.bsui .my-lg-n4{margin-top:-1.5rem !important}.bsui .mr-lg-n4,.bsui .mx-lg-n4{margin-right:-1.5rem !important}.bsui .mb-lg-n4,.bsui .my-lg-n4{margin-bottom:-1.5rem !important}.bsui .ml-lg-n4,.bsui .mx-lg-n4{margin-left:-1.5rem !important}.bsui .m-lg-n5{margin:-3rem !important}.bsui .mt-lg-n5,.bsui .my-lg-n5{margin-top:-3rem !important}.bsui .mr-lg-n5,.bsui .mx-lg-n5{margin-right:-3rem !important}.bsui .mb-lg-n5,.bsui .my-lg-n5{margin-bottom:-3rem !important}.bsui .ml-lg-n5,.bsui .mx-lg-n5{margin-left:-3rem !important}.bsui .m-lg-n6{margin:-4rem !important}.bsui .mt-lg-n6,.bsui .my-lg-n6{margin-top:-4rem !important}.bsui .mr-lg-n6,.bsui .mx-lg-n6{margin-right:-4rem !important}.bsui .mb-lg-n6,.bsui .my-lg-n6{margin-bottom:-4rem !important}.bsui .ml-lg-n6,.bsui .mx-lg-n6{margin-left:-4rem !important}.bsui .m-lg-n7{margin:-6rem !important}.bsui .mt-lg-n7,.bsui .my-lg-n7{margin-top:-6rem !important}.bsui .mr-lg-n7,.bsui .mx-lg-n7{margin-right:-6rem !important}.bsui .mb-lg-n7,.bsui .my-lg-n7{margin-bottom:-6rem !important}.bsui .ml-lg-n7,.bsui .mx-lg-n7{margin-left:-6rem !important}.bsui .m-lg-n8{margin:-8rem !important}.bsui .mt-lg-n8,.bsui .my-lg-n8{margin-top:-8rem !important}.bsui .mr-lg-n8,.bsui .mx-lg-n8{margin-right:-8rem !important}.bsui .mb-lg-n8,.bsui .my-lg-n8{margin-bottom:-8rem !important}.bsui .ml-lg-n8,.bsui .mx-lg-n8{margin-left:-8rem !important}.bsui .m-lg-n9{margin:-10rem !important}.bsui .mt-lg-n9,.bsui .my-lg-n9{margin-top:-10rem !important}.bsui .mr-lg-n9,.bsui .mx-lg-n9{margin-right:-10rem !important}.bsui .mb-lg-n9,.bsui .my-lg-n9{margin-bottom:-10rem !important}.bsui .ml-lg-n9,.bsui .mx-lg-n9{margin-left:-10rem !important}.bsui .m-lg-n10{margin:-12rem !important}.bsui .mt-lg-n10,.bsui .my-lg-n10{margin-top:-12rem !important}.bsui .mr-lg-n10,.bsui .mx-lg-n10{margin-right:-12rem !important}.bsui .mb-lg-n10,.bsui .my-lg-n10{margin-bottom:-12rem !important}.bsui .ml-lg-n10,.bsui .mx-lg-n10{margin-left:-12rem !important}.bsui .m-lg-n11{margin:-14rem !important}.bsui .mt-lg-n11,.bsui .my-lg-n11{margin-top:-14rem !important}.bsui .mr-lg-n11,.bsui .mx-lg-n11{margin-right:-14rem !important}.bsui .mb-lg-n11,.bsui .my-lg-n11{margin-bottom:-14rem !important}.bsui .ml-lg-n11,.bsui .mx-lg-n11{margin-left:-14rem !important}.bsui .m-lg-n12{margin:-16rem !important}.bsui .mt-lg-n12,.bsui .my-lg-n12{margin-top:-16rem !important}.bsui .mr-lg-n12,.bsui .mx-lg-n12{margin-right:-16rem !important}.bsui .mb-lg-n12,.bsui .my-lg-n12{margin-bottom:-16rem !important}.bsui .ml-lg-n12,.bsui .mx-lg-n12{margin-left:-16rem !important}.bsui .m-lg-auto{margin:auto !important}.bsui .mt-lg-auto,.bsui .my-lg-auto{margin-top:auto !important}.bsui .mr-lg-auto,.bsui .mx-lg-auto{margin-right:auto !important}.bsui .mb-lg-auto,.bsui .my-lg-auto{margin-bottom:auto !important}.bsui .ml-lg-auto,.bsui .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.bsui .m-xl-0{margin:0 !important}.bsui .mt-xl-0,.bsui .my-xl-0{margin-top:0 !important}.bsui .mr-xl-0,.bsui .mx-xl-0{margin-right:0 !important}.bsui .mb-xl-0,.bsui .my-xl-0{margin-bottom:0 !important}.bsui .ml-xl-0,.bsui .mx-xl-0{margin-left:0 !important}.bsui .m-xl-1{margin:.25rem !important}.bsui .mt-xl-1,.bsui .my-xl-1{margin-top:.25rem !important}.bsui .mr-xl-1,.bsui .mx-xl-1{margin-right:.25rem !important}.bsui .mb-xl-1,.bsui .my-xl-1{margin-bottom:.25rem !important}.bsui .ml-xl-1,.bsui .mx-xl-1{margin-left:.25rem !important}.bsui .m-xl-2{margin:.5rem !important}.bsui .mt-xl-2,.bsui .my-xl-2{margin-top:.5rem !important}.bsui .mr-xl-2,.bsui .mx-xl-2{margin-right:.5rem !important}.bsui .mb-xl-2,.bsui .my-xl-2{margin-bottom:.5rem !important}.bsui .ml-xl-2,.bsui .mx-xl-2{margin-left:.5rem !important}.bsui .m-xl-3{margin:1rem !important}.bsui .mt-xl-3,.bsui .my-xl-3{margin-top:1rem !important}.bsui .mr-xl-3,.bsui .mx-xl-3{margin-right:1rem !important}.bsui .mb-xl-3,.bsui .my-xl-3{margin-bottom:1rem !important}.bsui .ml-xl-3,.bsui .mx-xl-3{margin-left:1rem !important}.bsui .m-xl-4{margin:1.5rem !important}.bsui .mt-xl-4,.bsui .my-xl-4{margin-top:1.5rem !important}.bsui .mr-xl-4,.bsui .mx-xl-4{margin-right:1.5rem !important}.bsui .mb-xl-4,.bsui .my-xl-4{margin-bottom:1.5rem !important}.bsui .ml-xl-4,.bsui .mx-xl-4{margin-left:1.5rem !important}.bsui .m-xl-5{margin:3rem !important}.bsui .mt-xl-5,.bsui .my-xl-5{margin-top:3rem !important}.bsui .mr-xl-5,.bsui .mx-xl-5{margin-right:3rem !important}.bsui .mb-xl-5,.bsui .my-xl-5{margin-bottom:3rem !important}.bsui .ml-xl-5,.bsui .mx-xl-5{margin-left:3rem !important}.bsui .m-xl-6{margin:4rem !important}.bsui .mt-xl-6,.bsui .my-xl-6{margin-top:4rem !important}.bsui .mr-xl-6,.bsui .mx-xl-6{margin-right:4rem !important}.bsui .mb-xl-6,.bsui .my-xl-6{margin-bottom:4rem !important}.bsui .ml-xl-6,.bsui .mx-xl-6{margin-left:4rem !important}.bsui .m-xl-7{margin:6rem !important}.bsui .mt-xl-7,.bsui .my-xl-7{margin-top:6rem !important}.bsui .mr-xl-7,.bsui .mx-xl-7{margin-right:6rem !important}.bsui .mb-xl-7,.bsui .my-xl-7{margin-bottom:6rem !important}.bsui .ml-xl-7,.bsui .mx-xl-7{margin-left:6rem !important}.bsui .m-xl-8{margin:8rem !important}.bsui .mt-xl-8,.bsui .my-xl-8{margin-top:8rem !important}.bsui .mr-xl-8,.bsui .mx-xl-8{margin-right:8rem !important}.bsui .mb-xl-8,.bsui .my-xl-8{margin-bottom:8rem !important}.bsui .ml-xl-8,.bsui .mx-xl-8{margin-left:8rem !important}.bsui .m-xl-9{margin:10rem !important}.bsui .mt-xl-9,.bsui .my-xl-9{margin-top:10rem !important}.bsui .mr-xl-9,.bsui .mx-xl-9{margin-right:10rem !important}.bsui .mb-xl-9,.bsui .my-xl-9{margin-bottom:10rem !important}.bsui .ml-xl-9,.bsui .mx-xl-9{margin-left:10rem !important}.bsui .m-xl-10{margin:12rem !important}.bsui .mt-xl-10,.bsui .my-xl-10{margin-top:12rem !important}.bsui .mr-xl-10,.bsui .mx-xl-10{margin-right:12rem !important}.bsui .mb-xl-10,.bsui .my-xl-10{margin-bottom:12rem !important}.bsui .ml-xl-10,.bsui .mx-xl-10{margin-left:12rem !important}.bsui .m-xl-11{margin:14rem !important}.bsui .mt-xl-11,.bsui .my-xl-11{margin-top:14rem !important}.bsui .mr-xl-11,.bsui .mx-xl-11{margin-right:14rem !important}.bsui .mb-xl-11,.bsui .my-xl-11{margin-bottom:14rem !important}.bsui .ml-xl-11,.bsui .mx-xl-11{margin-left:14rem !important}.bsui .m-xl-12{margin:16rem !important}.bsui .mt-xl-12,.bsui .my-xl-12{margin-top:16rem !important}.bsui .mr-xl-12,.bsui .mx-xl-12{margin-right:16rem !important}.bsui .mb-xl-12,.bsui .my-xl-12{margin-bottom:16rem !important}.bsui .ml-xl-12,.bsui .mx-xl-12{margin-left:16rem !important}.bsui .p-xl-0{padding:0 !important}.bsui .pt-xl-0,.bsui .py-xl-0{padding-top:0 !important}.bsui .pr-xl-0,.bsui .px-xl-0{padding-right:0 !important}.bsui .pb-xl-0,.bsui .py-xl-0{padding-bottom:0 !important}.bsui .pl-xl-0,.bsui .px-xl-0{padding-left:0 !important}.bsui .p-xl-1{padding:.25rem !important}.bsui .pt-xl-1,.bsui .py-xl-1{padding-top:.25rem !important}.bsui .pr-xl-1,.bsui .px-xl-1{padding-right:.25rem !important}.bsui .pb-xl-1,.bsui .py-xl-1{padding-bottom:.25rem !important}.bsui .pl-xl-1,.bsui .px-xl-1{padding-left:.25rem !important}.bsui .p-xl-2{padding:.5rem !important}.bsui .pt-xl-2,.bsui .py-xl-2{padding-top:.5rem !important}.bsui .pr-xl-2,.bsui .px-xl-2{padding-right:.5rem !important}.bsui .pb-xl-2,.bsui .py-xl-2{padding-bottom:.5rem !important}.bsui .pl-xl-2,.bsui .px-xl-2{padding-left:.5rem !important}.bsui .p-xl-3{padding:1rem !important}.bsui .pt-xl-3,.bsui .py-xl-3{padding-top:1rem !important}.bsui .pr-xl-3,.bsui .px-xl-3{padding-right:1rem !important}.bsui .pb-xl-3,.bsui .py-xl-3{padding-bottom:1rem !important}.bsui .pl-xl-3,.bsui .px-xl-3{padding-left:1rem !important}.bsui .p-xl-4{padding:1.5rem !important}.bsui .pt-xl-4,.bsui .py-xl-4{padding-top:1.5rem !important}.bsui .pr-xl-4,.bsui .px-xl-4{padding-right:1.5rem !important}.bsui .pb-xl-4,.bsui .py-xl-4{padding-bottom:1.5rem !important}.bsui .pl-xl-4,.bsui .px-xl-4{padding-left:1.5rem !important}.bsui .p-xl-5{padding:3rem !important}.bsui .pt-xl-5,.bsui .py-xl-5{padding-top:3rem !important}.bsui .pr-xl-5,.bsui .px-xl-5{padding-right:3rem !important}.bsui .pb-xl-5,.bsui .py-xl-5{padding-bottom:3rem !important}.bsui .pl-xl-5,.bsui .px-xl-5{padding-left:3rem !important}.bsui .p-xl-6{padding:4rem !important}.bsui .pt-xl-6,.bsui .py-xl-6{padding-top:4rem !important}.bsui .pr-xl-6,.bsui .px-xl-6{padding-right:4rem !important}.bsui .pb-xl-6,.bsui .py-xl-6{padding-bottom:4rem !important}.bsui .pl-xl-6,.bsui .px-xl-6{padding-left:4rem !important}.bsui .p-xl-7{padding:6rem !important}.bsui .pt-xl-7,.bsui .py-xl-7{padding-top:6rem !important}.bsui .pr-xl-7,.bsui .px-xl-7{padding-right:6rem !important}.bsui .pb-xl-7,.bsui .py-xl-7{padding-bottom:6rem !important}.bsui .pl-xl-7,.bsui .px-xl-7{padding-left:6rem !important}.bsui .p-xl-8{padding:8rem !important}.bsui .pt-xl-8,.bsui .py-xl-8{padding-top:8rem !important}.bsui .pr-xl-8,.bsui .px-xl-8{padding-right:8rem !important}.bsui .pb-xl-8,.bsui .py-xl-8{padding-bottom:8rem !important}.bsui .pl-xl-8,.bsui .px-xl-8{padding-left:8rem !important}.bsui .p-xl-9{padding:10rem !important}.bsui .pt-xl-9,.bsui .py-xl-9{padding-top:10rem !important}.bsui .pr-xl-9,.bsui .px-xl-9{padding-right:10rem !important}.bsui .pb-xl-9,.bsui .py-xl-9{padding-bottom:10rem !important}.bsui .pl-xl-9,.bsui .px-xl-9{padding-left:10rem !important}.bsui .p-xl-10{padding:12rem !important}.bsui .pt-xl-10,.bsui .py-xl-10{padding-top:12rem !important}.bsui .pr-xl-10,.bsui .px-xl-10{padding-right:12rem !important}.bsui .pb-xl-10,.bsui .py-xl-10{padding-bottom:12rem !important}.bsui .pl-xl-10,.bsui .px-xl-10{padding-left:12rem !important}.bsui .p-xl-11{padding:14rem !important}.bsui .pt-xl-11,.bsui .py-xl-11{padding-top:14rem !important}.bsui .pr-xl-11,.bsui .px-xl-11{padding-right:14rem !important}.bsui .pb-xl-11,.bsui .py-xl-11{padding-bottom:14rem !important}.bsui .pl-xl-11,.bsui .px-xl-11{padding-left:14rem !important}.bsui .p-xl-12{padding:16rem !important}.bsui .pt-xl-12,.bsui .py-xl-12{padding-top:16rem !important}.bsui .pr-xl-12,.bsui .px-xl-12{padding-right:16rem !important}.bsui .pb-xl-12,.bsui .py-xl-12{padding-bottom:16rem !important}.bsui .pl-xl-12,.bsui .px-xl-12{padding-left:16rem !important}.bsui .m-xl-n1{margin:-.25rem !important}.bsui .mt-xl-n1,.bsui .my-xl-n1{margin-top:-.25rem !important}.bsui .mr-xl-n1,.bsui .mx-xl-n1{margin-right:-.25rem !important}.bsui .mb-xl-n1,.bsui .my-xl-n1{margin-bottom:-.25rem !important}.bsui .ml-xl-n1,.bsui .mx-xl-n1{margin-left:-.25rem !important}.bsui .m-xl-n2{margin:-.5rem !important}.bsui .mt-xl-n2,.bsui .my-xl-n2{margin-top:-.5rem !important}.bsui .mr-xl-n2,.bsui .mx-xl-n2{margin-right:-.5rem !important}.bsui .mb-xl-n2,.bsui .my-xl-n2{margin-bottom:-.5rem !important}.bsui .ml-xl-n2,.bsui .mx-xl-n2{margin-left:-.5rem !important}.bsui .m-xl-n3{margin:-1rem !important}.bsui .mt-xl-n3,.bsui .my-xl-n3{margin-top:-1rem !important}.bsui .mr-xl-n3,.bsui .mx-xl-n3{margin-right:-1rem !important}.bsui .mb-xl-n3,.bsui .my-xl-n3{margin-bottom:-1rem !important}.bsui .ml-xl-n3,.bsui .mx-xl-n3{margin-left:-1rem !important}.bsui .m-xl-n4{margin:-1.5rem !important}.bsui .mt-xl-n4,.bsui .my-xl-n4{margin-top:-1.5rem !important}.bsui .mr-xl-n4,.bsui .mx-xl-n4{margin-right:-1.5rem !important}.bsui .mb-xl-n4,.bsui .my-xl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xl-n4,.bsui .mx-xl-n4{margin-left:-1.5rem !important}.bsui .m-xl-n5{margin:-3rem !important}.bsui .mt-xl-n5,.bsui .my-xl-n5{margin-top:-3rem !important}.bsui .mr-xl-n5,.bsui .mx-xl-n5{margin-right:-3rem !important}.bsui .mb-xl-n5,.bsui .my-xl-n5{margin-bottom:-3rem !important}.bsui .ml-xl-n5,.bsui .mx-xl-n5{margin-left:-3rem !important}.bsui .m-xl-n6{margin:-4rem !important}.bsui .mt-xl-n6,.bsui .my-xl-n6{margin-top:-4rem !important}.bsui .mr-xl-n6,.bsui .mx-xl-n6{margin-right:-4rem !important}.bsui .mb-xl-n6,.bsui .my-xl-n6{margin-bottom:-4rem !important}.bsui .ml-xl-n6,.bsui .mx-xl-n6{margin-left:-4rem !important}.bsui .m-xl-n7{margin:-6rem !important}.bsui .mt-xl-n7,.bsui .my-xl-n7{margin-top:-6rem !important}.bsui .mr-xl-n7,.bsui .mx-xl-n7{margin-right:-6rem !important}.bsui .mb-xl-n7,.bsui .my-xl-n7{margin-bottom:-6rem !important}.bsui .ml-xl-n7,.bsui .mx-xl-n7{margin-left:-6rem !important}.bsui .m-xl-n8{margin:-8rem !important}.bsui .mt-xl-n8,.bsui .my-xl-n8{margin-top:-8rem !important}.bsui .mr-xl-n8,.bsui .mx-xl-n8{margin-right:-8rem !important}.bsui .mb-xl-n8,.bsui .my-xl-n8{margin-bottom:-8rem !important}.bsui .ml-xl-n8,.bsui .mx-xl-n8{margin-left:-8rem !important}.bsui .m-xl-n9{margin:-10rem !important}.bsui .mt-xl-n9,.bsui .my-xl-n9{margin-top:-10rem !important}.bsui .mr-xl-n9,.bsui .mx-xl-n9{margin-right:-10rem !important}.bsui .mb-xl-n9,.bsui .my-xl-n9{margin-bottom:-10rem !important}.bsui .ml-xl-n9,.bsui .mx-xl-n9{margin-left:-10rem !important}.bsui .m-xl-n10{margin:-12rem !important}.bsui .mt-xl-n10,.bsui .my-xl-n10{margin-top:-12rem !important}.bsui .mr-xl-n10,.bsui .mx-xl-n10{margin-right:-12rem !important}.bsui .mb-xl-n10,.bsui .my-xl-n10{margin-bottom:-12rem !important}.bsui .ml-xl-n10,.bsui .mx-xl-n10{margin-left:-12rem !important}.bsui .m-xl-n11{margin:-14rem !important}.bsui .mt-xl-n11,.bsui .my-xl-n11{margin-top:-14rem !important}.bsui .mr-xl-n11,.bsui .mx-xl-n11{margin-right:-14rem !important}.bsui .mb-xl-n11,.bsui .my-xl-n11{margin-bottom:-14rem !important}.bsui .ml-xl-n11,.bsui .mx-xl-n11{margin-left:-14rem !important}.bsui .m-xl-n12{margin:-16rem !important}.bsui .mt-xl-n12,.bsui .my-xl-n12{margin-top:-16rem !important}.bsui .mr-xl-n12,.bsui .mx-xl-n12{margin-right:-16rem !important}.bsui .mb-xl-n12,.bsui .my-xl-n12{margin-bottom:-16rem !important}.bsui .ml-xl-n12,.bsui .mx-xl-n12{margin-left:-16rem !important}.bsui .m-xl-auto{margin:auto !important}.bsui .mt-xl-auto,.bsui .my-xl-auto{margin-top:auto !important}.bsui .mr-xl-auto,.bsui .mx-xl-auto{margin-right:auto !important}.bsui .mb-xl-auto,.bsui .my-xl-auto{margin-bottom:auto !important}.bsui .ml-xl-auto,.bsui .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.bsui .m-xxl-0{margin:0 !important}.bsui .mt-xxl-0,.bsui .my-xxl-0{margin-top:0 !important}.bsui .mr-xxl-0,.bsui .mx-xxl-0{margin-right:0 !important}.bsui .mb-xxl-0,.bsui .my-xxl-0{margin-bottom:0 !important}.bsui .ml-xxl-0,.bsui .mx-xxl-0{margin-left:0 !important}.bsui .m-xxl-1{margin:.25rem !important}.bsui .mt-xxl-1,.bsui .my-xxl-1{margin-top:.25rem !important}.bsui .mr-xxl-1,.bsui .mx-xxl-1{margin-right:.25rem !important}.bsui .mb-xxl-1,.bsui .my-xxl-1{margin-bottom:.25rem !important}.bsui .ml-xxl-1,.bsui .mx-xxl-1{margin-left:.25rem !important}.bsui .m-xxl-2{margin:.5rem !important}.bsui .mt-xxl-2,.bsui .my-xxl-2{margin-top:.5rem !important}.bsui .mr-xxl-2,.bsui .mx-xxl-2{margin-right:.5rem !important}.bsui .mb-xxl-2,.bsui .my-xxl-2{margin-bottom:.5rem !important}.bsui .ml-xxl-2,.bsui .mx-xxl-2{margin-left:.5rem !important}.bsui .m-xxl-3{margin:1rem !important}.bsui .mt-xxl-3,.bsui .my-xxl-3{margin-top:1rem !important}.bsui .mr-xxl-3,.bsui .mx-xxl-3{margin-right:1rem !important}.bsui .mb-xxl-3,.bsui .my-xxl-3{margin-bottom:1rem !important}.bsui .ml-xxl-3,.bsui .mx-xxl-3{margin-left:1rem !important}.bsui .m-xxl-4{margin:1.5rem !important}.bsui .mt-xxl-4,.bsui .my-xxl-4{margin-top:1.5rem !important}.bsui .mr-xxl-4,.bsui .mx-xxl-4{margin-right:1.5rem !important}.bsui .mb-xxl-4,.bsui .my-xxl-4{margin-bottom:1.5rem !important}.bsui .ml-xxl-4,.bsui .mx-xxl-4{margin-left:1.5rem !important}.bsui .m-xxl-5{margin:3rem !important}.bsui .mt-xxl-5,.bsui .my-xxl-5{margin-top:3rem !important}.bsui .mr-xxl-5,.bsui .mx-xxl-5{margin-right:3rem !important}.bsui .mb-xxl-5,.bsui .my-xxl-5{margin-bottom:3rem !important}.bsui .ml-xxl-5,.bsui .mx-xxl-5{margin-left:3rem !important}.bsui .m-xxl-6{margin:4rem !important}.bsui .mt-xxl-6,.bsui .my-xxl-6{margin-top:4rem !important}.bsui .mr-xxl-6,.bsui .mx-xxl-6{margin-right:4rem !important}.bsui .mb-xxl-6,.bsui .my-xxl-6{margin-bottom:4rem !important}.bsui .ml-xxl-6,.bsui .mx-xxl-6{margin-left:4rem !important}.bsui .m-xxl-7{margin:6rem !important}.bsui .mt-xxl-7,.bsui .my-xxl-7{margin-top:6rem !important}.bsui .mr-xxl-7,.bsui .mx-xxl-7{margin-right:6rem !important}.bsui .mb-xxl-7,.bsui .my-xxl-7{margin-bottom:6rem !important}.bsui .ml-xxl-7,.bsui .mx-xxl-7{margin-left:6rem !important}.bsui .m-xxl-8{margin:8rem !important}.bsui .mt-xxl-8,.bsui .my-xxl-8{margin-top:8rem !important}.bsui .mr-xxl-8,.bsui .mx-xxl-8{margin-right:8rem !important}.bsui .mb-xxl-8,.bsui .my-xxl-8{margin-bottom:8rem !important}.bsui .ml-xxl-8,.bsui .mx-xxl-8{margin-left:8rem !important}.bsui .m-xxl-9{margin:10rem !important}.bsui .mt-xxl-9,.bsui .my-xxl-9{margin-top:10rem !important}.bsui .mr-xxl-9,.bsui .mx-xxl-9{margin-right:10rem !important}.bsui .mb-xxl-9,.bsui .my-xxl-9{margin-bottom:10rem !important}.bsui .ml-xxl-9,.bsui .mx-xxl-9{margin-left:10rem !important}.bsui .m-xxl-10{margin:12rem !important}.bsui .mt-xxl-10,.bsui .my-xxl-10{margin-top:12rem !important}.bsui .mr-xxl-10,.bsui .mx-xxl-10{margin-right:12rem !important}.bsui .mb-xxl-10,.bsui .my-xxl-10{margin-bottom:12rem !important}.bsui .ml-xxl-10,.bsui .mx-xxl-10{margin-left:12rem !important}.bsui .m-xxl-11{margin:14rem !important}.bsui .mt-xxl-11,.bsui .my-xxl-11{margin-top:14rem !important}.bsui .mr-xxl-11,.bsui .mx-xxl-11{margin-right:14rem !important}.bsui .mb-xxl-11,.bsui .my-xxl-11{margin-bottom:14rem !important}.bsui .ml-xxl-11,.bsui .mx-xxl-11{margin-left:14rem !important}.bsui .m-xxl-12{margin:16rem !important}.bsui .mt-xxl-12,.bsui .my-xxl-12{margin-top:16rem !important}.bsui .mr-xxl-12,.bsui .mx-xxl-12{margin-right:16rem !important}.bsui .mb-xxl-12,.bsui .my-xxl-12{margin-bottom:16rem !important}.bsui .ml-xxl-12,.bsui .mx-xxl-12{margin-left:16rem !important}.bsui .p-xxl-0{padding:0 !important}.bsui .pt-xxl-0,.bsui .py-xxl-0{padding-top:0 !important}.bsui .pr-xxl-0,.bsui .px-xxl-0{padding-right:0 !important}.bsui .pb-xxl-0,.bsui .py-xxl-0{padding-bottom:0 !important}.bsui .pl-xxl-0,.bsui .px-xxl-0{padding-left:0 !important}.bsui .p-xxl-1{padding:.25rem !important}.bsui .pt-xxl-1,.bsui .py-xxl-1{padding-top:.25rem !important}.bsui .pr-xxl-1,.bsui .px-xxl-1{padding-right:.25rem !important}.bsui .pb-xxl-1,.bsui .py-xxl-1{padding-bottom:.25rem !important}.bsui .pl-xxl-1,.bsui .px-xxl-1{padding-left:.25rem !important}.bsui .p-xxl-2{padding:.5rem !important}.bsui .pt-xxl-2,.bsui .py-xxl-2{padding-top:.5rem !important}.bsui .pr-xxl-2,.bsui .px-xxl-2{padding-right:.5rem !important}.bsui .pb-xxl-2,.bsui .py-xxl-2{padding-bottom:.5rem !important}.bsui .pl-xxl-2,.bsui .px-xxl-2{padding-left:.5rem !important}.bsui .p-xxl-3{padding:1rem !important}.bsui .pt-xxl-3,.bsui .py-xxl-3{padding-top:1rem !important}.bsui .pr-xxl-3,.bsui .px-xxl-3{padding-right:1rem !important}.bsui .pb-xxl-3,.bsui .py-xxl-3{padding-bottom:1rem !important}.bsui .pl-xxl-3,.bsui .px-xxl-3{padding-left:1rem !important}.bsui .p-xxl-4{padding:1.5rem !important}.bsui .pt-xxl-4,.bsui .py-xxl-4{padding-top:1.5rem !important}.bsui .pr-xxl-4,.bsui .px-xxl-4{padding-right:1.5rem !important}.bsui .pb-xxl-4,.bsui .py-xxl-4{padding-bottom:1.5rem !important}.bsui .pl-xxl-4,.bsui .px-xxl-4{padding-left:1.5rem !important}.bsui .p-xxl-5{padding:3rem !important}.bsui .pt-xxl-5,.bsui .py-xxl-5{padding-top:3rem !important}.bsui .pr-xxl-5,.bsui .px-xxl-5{padding-right:3rem !important}.bsui .pb-xxl-5,.bsui .py-xxl-5{padding-bottom:3rem !important}.bsui .pl-xxl-5,.bsui .px-xxl-5{padding-left:3rem !important}.bsui .p-xxl-6{padding:4rem !important}.bsui .pt-xxl-6,.bsui .py-xxl-6{padding-top:4rem !important}.bsui .pr-xxl-6,.bsui .px-xxl-6{padding-right:4rem !important}.bsui .pb-xxl-6,.bsui .py-xxl-6{padding-bottom:4rem !important}.bsui .pl-xxl-6,.bsui .px-xxl-6{padding-left:4rem !important}.bsui .p-xxl-7{padding:6rem !important}.bsui .pt-xxl-7,.bsui .py-xxl-7{padding-top:6rem !important}.bsui .pr-xxl-7,.bsui .px-xxl-7{padding-right:6rem !important}.bsui .pb-xxl-7,.bsui .py-xxl-7{padding-bottom:6rem !important}.bsui .pl-xxl-7,.bsui .px-xxl-7{padding-left:6rem !important}.bsui .p-xxl-8{padding:8rem !important}.bsui .pt-xxl-8,.bsui .py-xxl-8{padding-top:8rem !important}.bsui .pr-xxl-8,.bsui .px-xxl-8{padding-right:8rem !important}.bsui .pb-xxl-8,.bsui .py-xxl-8{padding-bottom:8rem !important}.bsui .pl-xxl-8,.bsui .px-xxl-8{padding-left:8rem !important}.bsui .p-xxl-9{padding:10rem !important}.bsui .pt-xxl-9,.bsui .py-xxl-9{padding-top:10rem !important}.bsui .pr-xxl-9,.bsui .px-xxl-9{padding-right:10rem !important}.bsui .pb-xxl-9,.bsui .py-xxl-9{padding-bottom:10rem !important}.bsui .pl-xxl-9,.bsui .px-xxl-9{padding-left:10rem !important}.bsui .p-xxl-10{padding:12rem !important}.bsui .pt-xxl-10,.bsui .py-xxl-10{padding-top:12rem !important}.bsui .pr-xxl-10,.bsui .px-xxl-10{padding-right:12rem !important}.bsui .pb-xxl-10,.bsui .py-xxl-10{padding-bottom:12rem !important}.bsui .pl-xxl-10,.bsui .px-xxl-10{padding-left:12rem !important}.bsui .p-xxl-11{padding:14rem !important}.bsui .pt-xxl-11,.bsui .py-xxl-11{padding-top:14rem !important}.bsui .pr-xxl-11,.bsui .px-xxl-11{padding-right:14rem !important}.bsui .pb-xxl-11,.bsui .py-xxl-11{padding-bottom:14rem !important}.bsui .pl-xxl-11,.bsui .px-xxl-11{padding-left:14rem !important}.bsui .p-xxl-12{padding:16rem !important}.bsui .pt-xxl-12,.bsui .py-xxl-12{padding-top:16rem !important}.bsui .pr-xxl-12,.bsui .px-xxl-12{padding-right:16rem !important}.bsui .pb-xxl-12,.bsui .py-xxl-12{padding-bottom:16rem !important}.bsui .pl-xxl-12,.bsui .px-xxl-12{padding-left:16rem !important}.bsui .m-xxl-n1{margin:-.25rem !important}.bsui .mt-xxl-n1,.bsui .my-xxl-n1{margin-top:-.25rem !important}.bsui .mr-xxl-n1,.bsui .mx-xxl-n1{margin-right:-.25rem !important}.bsui .mb-xxl-n1,.bsui .my-xxl-n1{margin-bottom:-.25rem !important}.bsui .ml-xxl-n1,.bsui .mx-xxl-n1{margin-left:-.25rem !important}.bsui .m-xxl-n2{margin:-.5rem !important}.bsui .mt-xxl-n2,.bsui .my-xxl-n2{margin-top:-.5rem !important}.bsui .mr-xxl-n2,.bsui .mx-xxl-n2{margin-right:-.5rem !important}.bsui .mb-xxl-n2,.bsui .my-xxl-n2{margin-bottom:-.5rem !important}.bsui .ml-xxl-n2,.bsui .mx-xxl-n2{margin-left:-.5rem !important}.bsui .m-xxl-n3{margin:-1rem !important}.bsui .mt-xxl-n3,.bsui .my-xxl-n3{margin-top:-1rem !important}.bsui .mr-xxl-n3,.bsui .mx-xxl-n3{margin-right:-1rem !important}.bsui .mb-xxl-n3,.bsui .my-xxl-n3{margin-bottom:-1rem !important}.bsui .ml-xxl-n3,.bsui .mx-xxl-n3{margin-left:-1rem !important}.bsui .m-xxl-n4{margin:-1.5rem !important}.bsui .mt-xxl-n4,.bsui .my-xxl-n4{margin-top:-1.5rem !important}.bsui .mr-xxl-n4,.bsui .mx-xxl-n4{margin-right:-1.5rem !important}.bsui .mb-xxl-n4,.bsui .my-xxl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xxl-n4,.bsui .mx-xxl-n4{margin-left:-1.5rem !important}.bsui .m-xxl-n5{margin:-3rem !important}.bsui .mt-xxl-n5,.bsui .my-xxl-n5{margin-top:-3rem !important}.bsui .mr-xxl-n5,.bsui .mx-xxl-n5{margin-right:-3rem !important}.bsui .mb-xxl-n5,.bsui .my-xxl-n5{margin-bottom:-3rem !important}.bsui .ml-xxl-n5,.bsui .mx-xxl-n5{margin-left:-3rem !important}.bsui .m-xxl-n6{margin:-4rem !important}.bsui .mt-xxl-n6,.bsui .my-xxl-n6{margin-top:-4rem !important}.bsui .mr-xxl-n6,.bsui .mx-xxl-n6{margin-right:-4rem !important}.bsui .mb-xxl-n6,.bsui .my-xxl-n6{margin-bottom:-4rem !important}.bsui .ml-xxl-n6,.bsui .mx-xxl-n6{margin-left:-4rem !important}.bsui .m-xxl-n7{margin:-6rem !important}.bsui .mt-xxl-n7,.bsui .my-xxl-n7{margin-top:-6rem !important}.bsui .mr-xxl-n7,.bsui .mx-xxl-n7{margin-right:-6rem !important}.bsui .mb-xxl-n7,.bsui .my-xxl-n7{margin-bottom:-6rem !important}.bsui .ml-xxl-n7,.bsui .mx-xxl-n7{margin-left:-6rem !important}.bsui .m-xxl-n8{margin:-8rem !important}.bsui .mt-xxl-n8,.bsui .my-xxl-n8{margin-top:-8rem !important}.bsui .mr-xxl-n8,.bsui .mx-xxl-n8{margin-right:-8rem !important}.bsui .mb-xxl-n8,.bsui .my-xxl-n8{margin-bottom:-8rem !important}.bsui .ml-xxl-n8,.bsui .mx-xxl-n8{margin-left:-8rem !important}.bsui .m-xxl-n9{margin:-10rem !important}.bsui .mt-xxl-n9,.bsui .my-xxl-n9{margin-top:-10rem !important}.bsui .mr-xxl-n9,.bsui .mx-xxl-n9{margin-right:-10rem !important}.bsui .mb-xxl-n9,.bsui .my-xxl-n9{margin-bottom:-10rem !important}.bsui .ml-xxl-n9,.bsui .mx-xxl-n9{margin-left:-10rem !important}.bsui .m-xxl-n10{margin:-12rem !important}.bsui .mt-xxl-n10,.bsui .my-xxl-n10{margin-top:-12rem !important}.bsui .mr-xxl-n10,.bsui .mx-xxl-n10{margin-right:-12rem !important}.bsui .mb-xxl-n10,.bsui .my-xxl-n10{margin-bottom:-12rem !important}.bsui .ml-xxl-n10,.bsui .mx-xxl-n10{margin-left:-12rem !important}.bsui .m-xxl-n11{margin:-14rem !important}.bsui .mt-xxl-n11,.bsui .my-xxl-n11{margin-top:-14rem !important}.bsui .mr-xxl-n11,.bsui .mx-xxl-n11{margin-right:-14rem !important}.bsui .mb-xxl-n11,.bsui .my-xxl-n11{margin-bottom:-14rem !important}.bsui .ml-xxl-n11,.bsui .mx-xxl-n11{margin-left:-14rem !important}.bsui .m-xxl-n12{margin:-16rem !important}.bsui .mt-xxl-n12,.bsui .my-xxl-n12{margin-top:-16rem !important}.bsui .mr-xxl-n12,.bsui .mx-xxl-n12{margin-right:-16rem !important}.bsui .mb-xxl-n12,.bsui .my-xxl-n12{margin-bottom:-16rem !important}.bsui .ml-xxl-n12,.bsui .mx-xxl-n12{margin-left:-16rem !important}.bsui .m-xxl-auto{margin:auto !important}.bsui .mt-xxl-auto,.bsui .my-xxl-auto{margin-top:auto !important}.bsui .mr-xxl-auto,.bsui .mx-xxl-auto{margin-right:auto !important}.bsui .mb-xxl-auto,.bsui .my-xxl-auto{margin-bottom:auto !important}.bsui .ml-xxl-auto,.bsui .mx-xxl-auto{margin-left:auto !important}}.bsui .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.bsui .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.bsui .text-justify{text-align:justify !important}.bsui .text-wrap{white-space:normal !important}.bsui .text-nowrap{white-space:nowrap !important}.bsui .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bsui .text-left{text-align:left !important}.bsui .text-right{text-align:right !important}.bsui .text-center{text-align:center !important}@media (min-width: 576px){.bsui .text-sm-left{text-align:left !important}.bsui .text-sm-right{text-align:right !important}.bsui .text-sm-center{text-align:center !important}}@media (min-width: 768px){.bsui .text-md-left{text-align:left !important}.bsui .text-md-right{text-align:right !important}.bsui .text-md-center{text-align:center !important}}@media (min-width: 992px){.bsui .text-lg-left{text-align:left !important}.bsui .text-lg-right{text-align:right !important}.bsui .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.bsui .text-xl-left{text-align:left !important}.bsui .text-xl-right{text-align:right !important}.bsui .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.bsui .text-xxl-left{text-align:left !important}.bsui .text-xxl-right{text-align:right !important}.bsui .text-xxl-center{text-align:center !important}}.bsui .text-lowercase{text-transform:lowercase !important}.bsui .text-uppercase{text-transform:uppercase !important}.bsui .text-capitalize{text-transform:capitalize !important}.bsui .font-weight-light{font-weight:300 !important}.bsui .font-weight-lighter{font-weight:lighter !important}.bsui .font-weight-normal{font-weight:400 !important}.bsui .font-weight-bold{font-weight:700 !important}.bsui .font-weight-bolder{font-weight:bolder !important}.bsui .font-italic{font-style:italic !important}.bsui .text-white{color:#fff !important}.bsui .text-primary{color:#1e73be !important}.bsui a.text-primary:hover,.bsui a.text-primary:focus{color:#144b7c !important}.bsui .text-secondary{color:#6c757d !important}.bsui a.text-secondary:hover,.bsui a.text-secondary:focus{color:#494f54 !important}.bsui .text-success{color:#44c553 !important}.bsui a.text-success:hover,.bsui a.text-success:focus{color:#2d9038 !important}.bsui .text-info{color:#17a2b8 !important}.bsui a.text-info:hover,.bsui a.text-info:focus{color:#0f6674 !important}.bsui .text-warning{color:#ffc107 !important}.bsui a.text-warning:hover,.bsui a.text-warning:focus{color:#ba8b00 !important}.bsui .text-danger{color:#dc3545 !important}.bsui a.text-danger:hover,.bsui a.text-danger:focus{color:#a71d2a !important}.bsui .text-light{color:#f8f9fa !important}.bsui a.text-light:hover,.bsui a.text-light:focus{color:#cbd3da !important}.bsui .text-dark{color:#343a40 !important}.bsui a.text-dark:hover,.bsui a.text-dark:focus{color:#121416 !important}.bsui .text-white{color:#fff !important}.bsui a.text-white:hover,.bsui a.text-white:focus{color:#d9d9d9 !important}.bsui .text-purple{color:#ad6edd !important}.bsui a.text-purple:hover,.bsui a.text-purple:focus{color:#8a30ce !important}.bsui .text-salmon{color:#ff977a !important}.bsui a.text-salmon:hover,.bsui a.text-salmon:focus{color:#ff5b2e !important}.bsui .text-cyan{color:#35bdff !important}.bsui a.text-cyan:hover,.bsui a.text-cyan:focus{color:#009ce8 !important}.bsui .text-gray{color:#ced4da !important}.bsui a.text-gray:hover,.bsui a.text-gray:focus{color:#a2aeb9 !important}.bsui .text-gray-dark{color:#6c757d !important}.bsui a.text-gray-dark:hover,.bsui a.text-gray-dark:focus{color:#494f54 !important}.bsui .text-indigo{color:#502c6c !important}.bsui a.text-indigo:hover,.bsui a.text-indigo:focus{color:#281636 !important}.bsui .text-orange{color:#fbb500 !important}.bsui a.text-orange:hover,.bsui a.text-orange:focus{color:#af7e00 !important}.bsui .text-body{color:#212529 !important}.bsui .text-muted{color:#6c757d !important}.bsui .text-black-50{color:rgba(0,0,0,0.5) !important}.bsui .text-white-50{color:rgba(255,255,255,0.5) !important}.bsui .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bsui .text-decoration-none{text-decoration:none !important}.bsui .text-break{word-break:break-word !important;word-wrap:break-word !important}.bsui .text-reset{color:inherit !important}.bsui .visible{visibility:visible !important}.bsui .invisible{visibility:hidden !important}@media print{.bsui *,.bsui *::before,.bsui *::after{text-shadow:none !important;box-shadow:none !important}.bsui a:not(.btn){text-decoration:underline}.bsui abbr[title]::after{content:" (" attr(title) ")"}.bsui pre{white-space:pre-wrap !important}.bsui pre,.bsui blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.bsui tr,.bsui img{page-break-inside:avoid}.bsui p,.bsui h2,.bsui h3{orphans:3;widows:3}.bsui h2,.bsui h3{page-break-after:avoid}@page{.bsui{size:a3}}.bsui body{min-width:992px !important}.bsui .container{min-width:992px !important}.bsui .navbar{display:none}.bsui .badge{border:1px solid #000}.bsui .table{border-collapse:collapse !important}.bsui .table td,.bsui .table th{background-color:#fff !important}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6 !important}.bsui .table-dark{color:inherit}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#dee2e6}.bsui .table .thead-dark th{color:inherit;border-color:#dee2e6}}.bsui .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.bsui .iconpicker-popover.popover.top,.bsui .iconpicker-popover.popover.topLeftCorner,.bsui .iconpicker-popover.popover.topLeft,.bsui .iconpicker-popover.popover.topRight,.bsui .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.bsui .iconpicker-popover.popover.right,.bsui .iconpicker-popover.popover.rightTop,.bsui .iconpicker-popover.popover.rightBottom{margin-left:10px}.bsui .iconpicker-popover.popover.bottom,.bsui .iconpicker-popover.popover.bottomRightCorner,.bsui .iconpicker-popover.popover.bottomRight,.bsui .iconpicker-popover.popover.bottomLeft,.bsui .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.bsui .iconpicker-popover.popover.left,.bsui .iconpicker-popover.popover.leftBottom,.bsui .iconpicker-popover.popover.leftTop{margin-left:-10px}.bsui .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.bsui .iconpicker-popover.popover.inline>.arrow{display:none}.bsui .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.bsui .dropdown-menu.iconpicker-container{padding:0}.bsui .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.bsui .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.bsui .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.bsui .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover .popover-footer:before,.bsui .iconpicker-popover .popover-footer:after{content:" ";display:table}.bsui .iconpicker-popover .popover-footer:after{clear:both}.bsui .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.bsui .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.bsui .iconpicker-popover.popover>.arrow,.bsui .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bsui .iconpicker-popover.popover>.arrow{border-width:11px}.bsui .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.bsui .iconpicker-popover.popover.top>.arrow,.bsui .iconpicker-popover.popover.topLeft>.arrow,.bsui .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.bsui .iconpicker-popover.popover.top>.arrow:after,.bsui .iconpicker-popover.popover.topLeft>.arrow:after,.bsui .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.bsui .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.right>.arrow,.bsui .iconpicker-popover.popover.rightTop>.arrow,.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.right>.arrow:after,.bsui .iconpicker-popover.popover.rightTop>.arrow:after,.bsui .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.bsui .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.bottom>.arrow,.bsui .iconpicker-popover.popover.bottomRight>.arrow,.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.bsui .iconpicker-popover.popover.bottom>.arrow:after,.bsui .iconpicker-popover.popover.bottomRight>.arrow:after,.bsui .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.left>.arrow,.bsui .iconpicker-popover.popover.leftBottom>.arrow,.bsui .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.left>.arrow:after,.bsui .iconpicker-popover.popover.leftBottom>.arrow:after,.bsui .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.bsui .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.bsui .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.bsui .iconpicker:before,.bsui .iconpicker:after{content:" ";display:table}.bsui .iconpicker:after{clear:both}.bsui .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.bsui .iconpicker .iconpicker-items:before,.bsui .iconpicker .iconpicker-items:after{content:" ";display:table}.bsui .iconpicker .iconpicker-items:after{clear:both}.bsui .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.bsui .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.bsui .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.bsui .iconpicker-component{cursor:pointer}.bsui .tofront{position:relative;z-index:1}.bsui .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.bsui .c-pointer:hover{cursor:pointer}.bsui .c-move:hover{cursor:move}.bsui .z-index-1{z-index:1}@media (max-width: 991.98px){.bsui .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.bsui .display-3{font-size:2rem}}.bsui .row.gap-y>.col,.bsui .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.bsui .mt-neg5{margin-top:-5rem}.bsui .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.bsui .h-md-100-v{height:100vh}.bsui .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.bsui .h-xl-300{height:300px}.bsui .h-max-380{max-height:380px}}.bsui .btn-round{border-radius:30px !important}.bsui .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.bsui .btn:hover,.bsui .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-link:hover,.bsui .btn-link:focus{box-shadow:none}.bsui .btn-link.btn-primary{color:#1e73be;border-color:transparent}.bsui .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-success{color:#44c553;border-color:transparent}.bsui .btn-link.btn-info{color:#17a2b8;border-color:transparent}.bsui .btn-link.btn-warning{color:#ffc107;border-color:transparent}.bsui .btn-link.btn-danger{color:#dc3545;border-color:transparent}.bsui .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.bsui .btn-link.btn-dark{color:#343a40;border-color:transparent}.bsui .btn-link.btn-white{color:#fff;border-color:transparent}.bsui .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.bsui .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.bsui .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.bsui .btn-link.btn-gray{color:#ced4da;border-color:transparent}.bsui .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.bsui .btn-link.btn-orange{color:#fbb500;border-color:transparent}.bsui .btn-white{background-color:#fff}.bsui .input-round{border-radius:30px !important}.bsui .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.bsui .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.bsui .navbar{font-weight:400}.bsui .navbar-brand{margin-right:2rem;font-size:1.25rem}.bsui .dropdown-item{font-weight:300}.bsui .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.bsui .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.bsui .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.bsui .dropdown-menu.dropdown-caret-0:before{content:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.bsui .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.bsui .jumbotron-lg{padding:10rem 0}.bsui .jumbotron-xl{padding:15rem 0}.bsui .jumbotron-xl{min-height:100vh}.bsui .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bsui .bg-black{background-color:#000}.bsui .overlay{position:relative}.bsui .overlay .container{position:relative}.bsui .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.bsui .overlay-black:before{background-color:rgba(0,0,0,0.5)}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .bg-primary{fill:#1e73be !important}.bsui .bg-secondary{fill:#6c757d !important}.bsui .bg-success{fill:#44c553 !important}.bsui .bg-info{fill:#17a2b8 !important}.bsui .bg-warning{fill:#ffc107 !important}.bsui .bg-danger{fill:#dc3545 !important}.bsui .bg-light{fill:#f8f9fa !important}.bsui .bg-dark{fill:#343a40 !important}.bsui .bg-white{fill:#fff !important}.bsui .bg-purple{fill:#ad6edd !important}.bsui .bg-salmon{fill:#ff977a !important}.bsui .bg-cyan{fill:#35bdff !important}.bsui .bg-gray{fill:#ced4da !important}.bsui .bg-gray-dark{fill:#6c757d !important}.bsui .bg-indigo{fill:#502c6c !important}.bsui .bg-orange{fill:#fbb500 !important}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#e6e6e6}.bsui .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#e6e6e6}.bsui .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#e6e6e6}.bsui .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#e6e6e6}.bsui .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#e6e6e6}.bsui .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#e6e6e6}.bsui .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#e6e6e6}.bsui .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#e6e6e6}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#e6e6e6}.bsui .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#e6e6e6}.bsui .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#e6e6e6}.bsui .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#e6e6e6}.bsui .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#e6e6e6}.bsui .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#e6e6e6}.bsui .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#e6e6e6}.bsui ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.bsui .loginarea{z-index:1111}}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .btn-round{border-radius:30px !important}.bsui .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.bsui .btn-facebook:focus,.bsui .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-facebook.disabled,.bsui .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:not(:disabled):not(.disabled):active,.bsui .btn-facebook:not(:disabled):not(.disabled).active,.show>.bsui .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.bsui .btn-facebook:not(:disabled):not(.disabled):active:focus,.bsui .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.bsui .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.bsui .btn-twitter:focus,.bsui .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-twitter.disabled,.bsui .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.bsui .btn-twitter:not(:disabled):not(.disabled):active,.bsui .btn-twitter:not(:disabled):not(.disabled).active,.show>.bsui .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.bsui .btn-twitter:not(:disabled):not(.disabled):active:focus,.bsui .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.bsui .btn-instagram:focus,.bsui .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram.disabled,.bsui .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.bsui .btn-instagram:not(:disabled):not(.disabled):active,.bsui .btn-instagram:not(:disabled):not(.disabled).active,.show>.bsui .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.bsui .btn-instagram:not(:disabled):not(.disabled):active:focus,.bsui .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.bsui .btn-linkedin:focus,.bsui .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-linkedin.disabled,.bsui .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:not(:disabled):not(.disabled):active,.bsui .btn-linkedin:not(:disabled):not(.disabled).active,.show>.bsui .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.bsui .btn-linkedin:not(:disabled):not(.disabled):active:focus,.bsui .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.bsui .btn-flickr:focus,.bsui .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr.disabled,.bsui .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:not(:disabled):not(.disabled):active,.bsui .btn-flickr:not(:disabled):not(.disabled).active,.show>.bsui .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.bsui .btn-flickr:not(:disabled):not(.disabled):active:focus,.bsui .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.bsui .btn-github:focus,.bsui .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github.disabled,.bsui .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:not(:disabled):not(.disabled):active,.bsui .btn-github:not(:disabled):not(.disabled).active,.show>.bsui .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.bsui .btn-github:not(:disabled):not(.disabled):active:focus,.bsui .btn-github:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.bsui .btn-youtube:focus,.bsui .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube.disabled,.bsui .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:not(:disabled):not(.disabled):active,.bsui .btn-youtube:not(:disabled):not(.disabled).active,.show>.bsui .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.bsui .btn-youtube:not(:disabled):not(.disabled):active:focus,.bsui .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.bsui .btn-wordpress:focus,.bsui .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress.disabled,.bsui .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:not(:disabled):not(.disabled):active,.bsui .btn-wordpress:not(:disabled):not(.disabled).active,.show>.bsui .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.bsui .btn-wordpress:not(:disabled):not(.disabled):active:focus,.bsui .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.bsui .btn-google:focus,.bsui .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google.disabled,.bsui .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:not(:disabled):not(.disabled):active,.bsui .btn-google:not(:disabled):not(.disabled).active,.show>.bsui .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.bsui .btn-google:not(:disabled):not(.disabled):active:focus,.bsui .btn-google:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.bsui .btn-yahoo:focus,.bsui .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo.disabled,.bsui .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:not(:disabled):not(.disabled):active,.bsui .btn-yahoo:not(:disabled):not(.disabled).active,.show>.bsui .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.bsui .btn-yahoo:not(:disabled):not(.disabled):active:focus,.bsui .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.bsui .btn-vkontakte:focus,.bsui .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte.disabled,.bsui .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.bsui .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.bsui .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.bsui .btn-tiktok:focus,.bsui .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok.disabled,.bsui .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.bsui .btn-tiktok:not(:disabled):not(.disabled):active,.bsui .btn-tiktok:not(:disabled):not(.disabled).active,.show>.bsui .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.bsui .btn-tiktok:not(:disabled):not(.disabled):active:focus,.bsui .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-circle.btn-sm,.bsui .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-circle.btn-lg,.bsui .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-square.btn-sm,.bsui .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-square.btn-lg,.bsui .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.bsui .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split.btn-sm .icon,.bsui .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.bsui .btn-icon-split.btn-sm .text,.bsui .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.bsui .btn-icon-split.btn-lg .icon,.bsui .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.bsui .btn-icon-split.btn-lg .text,.bsui .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.bsui .alert a{color:inherit;text-decoration:underline}.bsui .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.bsui .row.row-cols-md-0{display:block}.bsui .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.bsui .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.bsui .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.bsui .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.bsui .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.bsui .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.bsui .row.row-cols-md-0 .card .card-footer{flex:1 100%}.bsui .row.row-cols-md-0 .gv-hide-0{display:none}}.bsui .row-cols-md-2 .gv-hide-2{display:none}.bsui .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.bsui .row-cols-md-3 .gv-hide-2,.bsui .row-cols-md-3 .gv-hide-3{display:none}.bsui .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.bsui .row-cols-md-4 .gv-hide-2,.bsui .row-cols-md-4 .gv-hide-3,.bsui .row-cols-md-4 .gv-hide-4{display:none}.bsui .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.bsui .row-cols-md-5 .gv-hide-2,.bsui .row-cols-md-5 .gv-hide-3,.bsui .row-cols-md-5 .gv-hide-4,.bsui .row-cols-md-5 .gv-hide-5{display:none}.bsui .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.bsui .row .gv-hide-0,.bsui .row .gv-hide-2,.bsui .row .gv-hide-3,.bsui .row .gv-hide-4,.bsui .row .gv-hide-5{display:none}.bsui .row .gv-hide-s-2 .gv-secondary,.bsui .row .gv-hide-s-3 .gv-secondary,.bsui .row .gv-hide-s-4 .gv-secondary,.bsui .row .gv-hide-s-5 .gv-secondary{display:none}}.bsui .border-width-1{border-width:1px !important}.bsui .border-width-2{border-width:2px !important}.bsui .border-width-3{border-width:3px !important}.bsui .border-width-4{border-width:4px !important}.bsui .border-width-5{border-width:5px !important}.bsui .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bsui .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.bsui .hover-content{display:none}.bsui .hover-content.fas{display:none}.bsui .btn:hover .hover-content,.bsui .badge:hover .hover-content,.bsui .hover-swap:hover .hover-content{display:initial}.bsui .btn:hover .hover-content-original,.bsui .badge:hover .hover-content-original,.bsui .hover-swap:hover .hover-content-original{display:none}.bsui .overflow-visible{overflow:visible}.bsui .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.bsui .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.bsui .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.bsui .embed-item-cover-xy{object-fit:cover;height:100%}.bsui .embed-item-cover-x{height:auto !important}.bsui .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.bsui .embed-item-contain{object-fit:contain}.bsui .embed-has-action{transition:all .3s ease-in-out}.bsui .embed-has-action i,.bsui .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.bsui .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover i,.bsui .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.bsui .flatpickr-month .flatpickr-current-month>*{display:inline-block}.bsui .custom-select{-webkit-appearance:none;-moz-appearance:none}.bsui .badge-facebook{color:#fff;background-color:#3b5998}.bsui a.badge-facebook:hover,.bsui a.badge-facebook:focus{color:#fff;background-color:#2d4373}.bsui a.badge-facebook:focus,.bsui a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.bsui .badge-twitter{color:#212529;background-color:#55acee}.bsui a.badge-twitter:hover,.bsui a.badge-twitter:focus{color:#212529;background-color:#2795e9}.bsui a.badge-twitter:focus,.bsui a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-linkedin{color:#fff;background-color:#0976b4}.bsui a.badge-linkedin:hover,.bsui a.badge-linkedin:focus{color:#fff;background-color:#075683}.bsui a.badge-linkedin:focus,.bsui a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.bsui .badge-flickr{color:#fff;background-color:#f8457e}.bsui a.badge-flickr:hover,.bsui a.badge-flickr:focus{color:#fff;background-color:#f6145c}.bsui a.badge-flickr:focus,.bsui a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.bsui .badge-github{color:#fff;background-color:#333}.bsui a.badge-github:hover,.bsui a.badge-github:focus{color:#fff;background-color:#1a1a1a}.bsui a.badge-github:focus,.bsui a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.bsui .badge-youtube{color:#fff;background-color:#e52d27}.bsui a.badge-youtube:hover,.bsui a.badge-youtube:focus{color:#fff;background-color:#c21d17}.bsui a.badge-youtube:focus,.bsui a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.bsui .badge-wordpress{color:#fff;background-color:#207297}.bsui a.badge-wordpress:hover,.bsui a.badge-wordpress:focus{color:#fff;background-color:#17526d}.bsui a.badge-wordpress:focus,.bsui a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.bsui .badge-google{color:#fff;background-color:#ea4335}.bsui a.badge-google:hover,.bsui a.badge-google:focus{color:#fff;background-color:#d62516}.bsui a.badge-google:focus,.bsui a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.bsui .badge-yahoo{color:#fff;background-color:#6040d2}.bsui a.badge-yahoo:hover,.bsui a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.bsui a.badge-yahoo:focus,.bsui a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.bsui .badge-vkontakte{color:#fff;background-color:#4a76a8}.bsui a.badge-vkontakte:hover,.bsui a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.bsui a.badge-vkontakte:focus,.bsui a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.bsui .badge-tiktok{color:#fff;background-color:#010101}.bsui a.badge-tiktok:hover,.bsui a.badge-tiktok:focus{color:#fff;background-color:#000}.bsui a.badge-tiktok:focus,.bsui a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .bg-initial{background:initial !important}.bsui .bg-inherit{background:inherit !important}.bsui .overlay-white:before{background-color:rgba(255,255,255,0.5)}.bsui .form-label-group{position:relative;margin-bottom:1rem}.bsui .form-label-group>input,.bsui .form-label-group>textarea,.bsui .form-label-group>label{padding:.45rem 1.2rem}.bsui .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.bsui .form-label-group input::-webkit-input-placeholder,.bsui .form-label-group input:-ms-input-placeholder,.bsui .form-label-group input::-ms-input-placeholder,.bsui .form-label-group input::-moz-placeholder,.bsui .form-label-group input::placeholder,.bsui .form-label-group textarea::-webkit-input-placeholder,.bsui .form-label-group textarea:-ms-input-placeholder,.bsui .form-label-group textarea::-ms-input-placeholder,.bsui .form-label-group textarea::-moz-placeholder,.bsui .form-label-group textarea::placeholder{color:transparent}.bsui .form-label-group input:not(:placeholder-shown),.bsui .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.bsui .form-label-group input:not(:placeholder-shown) ~ label,.bsui .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.bsui .ab-left,.bsui .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.bsui .ab-left-angle,.bsui .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-left-angle .badge,.bsui .ab-top-left-angle .badge{display:block}.bsui .ab-right,.bsui .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.bsui .ab-right-angle,.bsui .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-right-angle .badge,.bsui .ab-top-right-angle .badge{display:block}.bsui .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.bsui .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-left-angle .badge{display:block}.bsui .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.bsui .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-right-angle .badge{display:block}.bsui .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.bsui .clear-both{clear:both}.bsui .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.bsui .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.bsui .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.bsui .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.bsui .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.bsui .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.bsui .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.bsui .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.bsui .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.bsui .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.bsui .hover-zoom{transition:transform .2s}.bsui .hover-zoom:hover{transform:scale(1.2)}.bsui .hover-shadow{transition:all ease 0.3s}.bsui .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-up:hover{top:-10px !important}.bsui .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-down:hover{bottom:-10px !important}.bsui .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-left:hover{left:-10px !important}.bsui .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-right:hover{right:-10px !important}.bsui .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} + */}.bsui :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.bsui *,.bsui *::before,.bsui *::after{box-sizing:border-box}.bsui html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}.bsui article,.bsui aside,.bsui figcaption,.bsui figure,.bsui footer,.bsui header,.bsui hgroup,.bsui main,.bsui nav,.bsui section{display:block}.bsui body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:left;background-color:#fff}.bsui [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.bsui hr{box-sizing:content-box;height:0;overflow:visible}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6{margin-top:0;margin-bottom:.5rem}.bsui p{margin-top:0;margin-bottom:1rem}.bsui abbr[title],.bsui abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.bsui address{margin-bottom:1rem;font-style:normal;line-height:inherit}.bsui ol,.bsui ul,.bsui dl{margin-top:0;margin-bottom:1rem}.bsui ol ol,.bsui ul ul,.bsui ol ul,.bsui ul ol{margin-bottom:0}.bsui dt{font-weight:700}.bsui dd{margin-bottom:.5rem;margin-left:0}.bsui blockquote{margin:0 0 1rem}.bsui b,.bsui strong{font-weight:bolder}.bsui small{font-size:80%}.bsui sub,.bsui sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.bsui sub{bottom:-.25em}.bsui sup{top:-.5em}.bsui a{color:#1e73be;text-decoration:none;background-color:transparent}.bsui a:hover{color:#144b7c;text-decoration:underline}.bsui a:not([href]):not([class]){color:inherit;text-decoration:none}.bsui a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.bsui pre,.bsui code,.bsui kbd,.bsui samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.bsui pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.bsui figure{margin:0 0 1rem}.bsui img{vertical-align:middle;border-style:none}.bsui svg{overflow:hidden;vertical-align:middle}.bsui table{border-collapse:collapse}.bsui caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}.bsui th{text-align:inherit;text-align:-webkit-match-parent}.bsui label{display:inline-block;margin-bottom:.5rem}.bsui button{border-radius:0}.bsui button:focus:not(:focus-visible){outline:0}.bsui input,.bsui button,.bsui select,.bsui optgroup,.bsui textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.bsui button,.bsui input{overflow:visible}.bsui button,.bsui select{text-transform:none}.bsui [role="button"]{cursor:pointer}.bsui select{word-wrap:normal}.bsui button,.bsui [type="button"],.bsui [type="reset"],.bsui [type="submit"]{-webkit-appearance:button}.bsui button:not(:disabled),.bsui [type="button"]:not(:disabled),.bsui [type="reset"]:not(:disabled),.bsui [type="submit"]:not(:disabled){cursor:pointer}.bsui button::-moz-focus-inner,.bsui [type="button"]::-moz-focus-inner,.bsui [type="reset"]::-moz-focus-inner,.bsui [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.bsui input[type="radio"],.bsui input[type="checkbox"]{box-sizing:border-box;padding:0}.bsui textarea{overflow:auto;resize:vertical}.bsui fieldset{min-width:0;padding:0;margin:0;border:0}.bsui legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.bsui progress{vertical-align:baseline}.bsui [type="number"]::-webkit-inner-spin-button,.bsui [type="number"]::-webkit-outer-spin-button{height:auto}.bsui [type="search"]{outline-offset:-2px;-webkit-appearance:none}.bsui [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.bsui ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.bsui output{display:inline-block}.bsui summary{display:list-item;cursor:pointer}.bsui template{display:none}.bsui [hidden]{display:none !important}.bsui h1,.bsui h2,.bsui h3,.bsui h4,.bsui h5,.bsui h6,.bsui .h1,.bsui .h2,.bsui .h3,.bsui .h4,.bsui .h5,.bsui .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.bsui h1,.bsui .h1{font-size:2.5rem}.bsui h2,.bsui .h2{font-size:2rem}.bsui h3,.bsui .h3{font-size:1.75rem}.bsui h4,.bsui .h4{font-size:1.5rem}.bsui h5,.bsui .h5{font-size:1.25rem}.bsui h6,.bsui .h6{font-size:1rem}.bsui .lead{font-size:1.25rem;font-weight:300}.bsui .display-1{font-size:6rem;font-weight:300;line-height:1.2}.bsui .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.bsui .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.bsui .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.bsui hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.bsui small,.bsui .small{font-size:85%;font-weight:400}.bsui mark,.bsui .mark{padding:.2em;background-color:#fcf8e3}.bsui .list-unstyled{padding-left:0;list-style:none}.bsui .list-inline{padding-left:0;list-style:none}.bsui .list-inline-item{display:inline-block}.bsui .list-inline-item:not(:last-child){margin-right:.5rem}.bsui .initialism{font-size:90%;text-transform:uppercase}.bsui .blockquote{margin-bottom:1rem;font-size:1.25rem}.bsui .blockquote-footer{display:block;font-size:85%;color:#6c757d}.bsui .blockquote-footer::before{content:"\2014\00A0"}.bsui .img-fluid{max-width:100%;height:auto}.bsui .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.bsui .figure{display:inline-block}.bsui .figure-img{margin-bottom:.5rem;line-height:1}.bsui .figure-caption{font-size:90%;color:#6c757d}.bsui code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.bsui code{color:inherit}.bsui kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.bsui kbd kbd{padding:0;font-size:100%;font-weight:700}.bsui pre{display:block;font-size:100%;color:#212529}.bsui pre code{font-size:inherit;color:inherit;word-break:normal}.bsui .pre-scrollable{max-height:340px;overflow-y:scroll}.bsui .container,.bsui .container-fluid,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.bsui .container,.bsui .container-sm{max-width:540px}}@media (min-width: 768px){.bsui .container,.bsui .container-sm,.bsui .container-md{max-width:720px}}@media (min-width: 992px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg{max-width:960px}}@media (min-width: 1200px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl{max-width:1140px}}@media (min-width: 1400px){.bsui .container,.bsui .container-sm,.bsui .container-md,.bsui .container-lg,.bsui .container-xl,.bsui .container-xxl{max-width:1320px}}.bsui .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.bsui .no-gutters{margin-right:0;margin-left:0}.bsui .no-gutters>.col,.bsui .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.bsui .col-1,.bsui .col-2,.bsui .col-3,.bsui .col-4,.bsui .col-5,.bsui .col-6,.bsui .col-7,.bsui .col-8,.bsui .col-9,.bsui .col-10,.bsui .col-11,.bsui .col-12,.bsui .col,.bsui .col-auto,.bsui .col-sm-1,.bsui .col-sm-2,.bsui .col-sm-3,.bsui .col-sm-4,.bsui .col-sm-5,.bsui .col-sm-6,.bsui .col-sm-7,.bsui .col-sm-8,.bsui .col-sm-9,.bsui .col-sm-10,.bsui .col-sm-11,.bsui .col-sm-12,.bsui .col-sm,.bsui .col-sm-auto,.bsui .col-md-1,.bsui .col-md-2,.bsui .col-md-3,.bsui .col-md-4,.bsui .col-md-5,.bsui .col-md-6,.bsui .col-md-7,.bsui .col-md-8,.bsui .col-md-9,.bsui .col-md-10,.bsui .col-md-11,.bsui .col-md-12,.bsui .col-md,.bsui .col-md-auto,.bsui .col-lg-1,.bsui .col-lg-2,.bsui .col-lg-3,.bsui .col-lg-4,.bsui .col-lg-5,.bsui .col-lg-6,.bsui .col-lg-7,.bsui .col-lg-8,.bsui .col-lg-9,.bsui .col-lg-10,.bsui .col-lg-11,.bsui .col-lg-12,.bsui .col-lg,.bsui .col-lg-auto,.bsui .col-xl-1,.bsui .col-xl-2,.bsui .col-xl-3,.bsui .col-xl-4,.bsui .col-xl-5,.bsui .col-xl-6,.bsui .col-xl-7,.bsui .col-xl-8,.bsui .col-xl-9,.bsui .col-xl-10,.bsui .col-xl-11,.bsui .col-xl-12,.bsui .col-xl,.bsui .col-xl-auto,.bsui .col-xxl-1,.bsui .col-xxl-2,.bsui .col-xxl-3,.bsui .col-xxl-4,.bsui .col-xxl-5,.bsui .col-xxl-6,.bsui .col-xxl-7,.bsui .col-xxl-8,.bsui .col-xxl-9,.bsui .col-xxl-10,.bsui .col-xxl-11,.bsui .col-xxl-12,.bsui .col-xxl,.bsui .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.bsui .col{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-3{flex:0 0 25%;max-width:25%}.bsui .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-6{flex:0 0 50%;max-width:50%}.bsui .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-9{flex:0 0 75%;max-width:75%}.bsui .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-12{flex:0 0 100%;max-width:100%}.bsui .order-first{order:-1}.bsui .order-last{order:13}.bsui .order-0{order:0}.bsui .order-1{order:1}.bsui .order-2{order:2}.bsui .order-3{order:3}.bsui .order-4{order:4}.bsui .order-5{order:5}.bsui .order-6{order:6}.bsui .order-7{order:7}.bsui .order-8{order:8}.bsui .order-9{order:9}.bsui .order-10{order:10}.bsui .order-11{order:11}.bsui .order-12{order:12}.bsui .offset-1{margin-left:8.33333333%}.bsui .offset-2{margin-left:16.66666667%}.bsui .offset-3{margin-left:25%}.bsui .offset-4{margin-left:33.33333333%}.bsui .offset-5{margin-left:41.66666667%}.bsui .offset-6{margin-left:50%}.bsui .offset-7{margin-left:58.33333333%}.bsui .offset-8{margin-left:66.66666667%}.bsui .offset-9{margin-left:75%}.bsui .offset-10{margin-left:83.33333333%}.bsui .offset-11{margin-left:91.66666667%}@media (min-width: 576px){.bsui .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-sm-3{flex:0 0 25%;max-width:25%}.bsui .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-sm-6{flex:0 0 50%;max-width:50%}.bsui .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-sm-9{flex:0 0 75%;max-width:75%}.bsui .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-sm-12{flex:0 0 100%;max-width:100%}.bsui .order-sm-first{order:-1}.bsui .order-sm-last{order:13}.bsui .order-sm-0{order:0}.bsui .order-sm-1{order:1}.bsui .order-sm-2{order:2}.bsui .order-sm-3{order:3}.bsui .order-sm-4{order:4}.bsui .order-sm-5{order:5}.bsui .order-sm-6{order:6}.bsui .order-sm-7{order:7}.bsui .order-sm-8{order:8}.bsui .order-sm-9{order:9}.bsui .order-sm-10{order:10}.bsui .order-sm-11{order:11}.bsui .order-sm-12{order:12}.bsui .offset-sm-0{margin-left:0}.bsui .offset-sm-1{margin-left:8.33333333%}.bsui .offset-sm-2{margin-left:16.66666667%}.bsui .offset-sm-3{margin-left:25%}.bsui .offset-sm-4{margin-left:33.33333333%}.bsui .offset-sm-5{margin-left:41.66666667%}.bsui .offset-sm-6{margin-left:50%}.bsui .offset-sm-7{margin-left:58.33333333%}.bsui .offset-sm-8{margin-left:66.66666667%}.bsui .offset-sm-9{margin-left:75%}.bsui .offset-sm-10{margin-left:83.33333333%}.bsui .offset-sm-11{margin-left:91.66666667%}}@media (min-width: 768px){.bsui .col-md{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-md-3{flex:0 0 25%;max-width:25%}.bsui .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-md-6{flex:0 0 50%;max-width:50%}.bsui .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-md-9{flex:0 0 75%;max-width:75%}.bsui .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-md-12{flex:0 0 100%;max-width:100%}.bsui .order-md-first{order:-1}.bsui .order-md-last{order:13}.bsui .order-md-0{order:0}.bsui .order-md-1{order:1}.bsui .order-md-2{order:2}.bsui .order-md-3{order:3}.bsui .order-md-4{order:4}.bsui .order-md-5{order:5}.bsui .order-md-6{order:6}.bsui .order-md-7{order:7}.bsui .order-md-8{order:8}.bsui .order-md-9{order:9}.bsui .order-md-10{order:10}.bsui .order-md-11{order:11}.bsui .order-md-12{order:12}.bsui .offset-md-0{margin-left:0}.bsui .offset-md-1{margin-left:8.33333333%}.bsui .offset-md-2{margin-left:16.66666667%}.bsui .offset-md-3{margin-left:25%}.bsui .offset-md-4{margin-left:33.33333333%}.bsui .offset-md-5{margin-left:41.66666667%}.bsui .offset-md-6{margin-left:50%}.bsui .offset-md-7{margin-left:58.33333333%}.bsui .offset-md-8{margin-left:66.66666667%}.bsui .offset-md-9{margin-left:75%}.bsui .offset-md-10{margin-left:83.33333333%}.bsui .offset-md-11{margin-left:91.66666667%}}@media (min-width: 992px){.bsui .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-lg-3{flex:0 0 25%;max-width:25%}.bsui .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-lg-6{flex:0 0 50%;max-width:50%}.bsui .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-lg-9{flex:0 0 75%;max-width:75%}.bsui .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-lg-12{flex:0 0 100%;max-width:100%}.bsui .order-lg-first{order:-1}.bsui .order-lg-last{order:13}.bsui .order-lg-0{order:0}.bsui .order-lg-1{order:1}.bsui .order-lg-2{order:2}.bsui .order-lg-3{order:3}.bsui .order-lg-4{order:4}.bsui .order-lg-5{order:5}.bsui .order-lg-6{order:6}.bsui .order-lg-7{order:7}.bsui .order-lg-8{order:8}.bsui .order-lg-9{order:9}.bsui .order-lg-10{order:10}.bsui .order-lg-11{order:11}.bsui .order-lg-12{order:12}.bsui .offset-lg-0{margin-left:0}.bsui .offset-lg-1{margin-left:8.33333333%}.bsui .offset-lg-2{margin-left:16.66666667%}.bsui .offset-lg-3{margin-left:25%}.bsui .offset-lg-4{margin-left:33.33333333%}.bsui .offset-lg-5{margin-left:41.66666667%}.bsui .offset-lg-6{margin-left:50%}.bsui .offset-lg-7{margin-left:58.33333333%}.bsui .offset-lg-8{margin-left:66.66666667%}.bsui .offset-lg-9{margin-left:75%}.bsui .offset-lg-10{margin-left:83.33333333%}.bsui .offset-lg-11{margin-left:91.66666667%}}@media (min-width: 1200px){.bsui .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xl-3{flex:0 0 25%;max-width:25%}.bsui .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xl-6{flex:0 0 50%;max-width:50%}.bsui .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xl-9{flex:0 0 75%;max-width:75%}.bsui .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xl-12{flex:0 0 100%;max-width:100%}.bsui .order-xl-first{order:-1}.bsui .order-xl-last{order:13}.bsui .order-xl-0{order:0}.bsui .order-xl-1{order:1}.bsui .order-xl-2{order:2}.bsui .order-xl-3{order:3}.bsui .order-xl-4{order:4}.bsui .order-xl-5{order:5}.bsui .order-xl-6{order:6}.bsui .order-xl-7{order:7}.bsui .order-xl-8{order:8}.bsui .order-xl-9{order:9}.bsui .order-xl-10{order:10}.bsui .order-xl-11{order:11}.bsui .order-xl-12{order:12}.bsui .offset-xl-0{margin-left:0}.bsui .offset-xl-1{margin-left:8.33333333%}.bsui .offset-xl-2{margin-left:16.66666667%}.bsui .offset-xl-3{margin-left:25%}.bsui .offset-xl-4{margin-left:33.33333333%}.bsui .offset-xl-5{margin-left:41.66666667%}.bsui .offset-xl-6{margin-left:50%}.bsui .offset-xl-7{margin-left:58.33333333%}.bsui .offset-xl-8{margin-left:66.66666667%}.bsui .offset-xl-9{margin-left:75%}.bsui .offset-xl-10{margin-left:83.33333333%}.bsui .offset-xl-11{margin-left:91.66666667%}}@media (min-width: 1400px){.bsui .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.bsui .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.bsui .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.bsui .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.bsui .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.bsui .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.bsui .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.bsui .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.bsui .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.bsui .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.bsui .col-xxl-3{flex:0 0 25%;max-width:25%}.bsui .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.bsui .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.bsui .col-xxl-6{flex:0 0 50%;max-width:50%}.bsui .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.bsui .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.bsui .col-xxl-9{flex:0 0 75%;max-width:75%}.bsui .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.bsui .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.bsui .col-xxl-12{flex:0 0 100%;max-width:100%}.bsui .order-xxl-first{order:-1}.bsui .order-xxl-last{order:13}.bsui .order-xxl-0{order:0}.bsui .order-xxl-1{order:1}.bsui .order-xxl-2{order:2}.bsui .order-xxl-3{order:3}.bsui .order-xxl-4{order:4}.bsui .order-xxl-5{order:5}.bsui .order-xxl-6{order:6}.bsui .order-xxl-7{order:7}.bsui .order-xxl-8{order:8}.bsui .order-xxl-9{order:9}.bsui .order-xxl-10{order:10}.bsui .order-xxl-11{order:11}.bsui .order-xxl-12{order:12}.bsui .offset-xxl-0{margin-left:0}.bsui .offset-xxl-1{margin-left:8.33333333%}.bsui .offset-xxl-2{margin-left:16.66666667%}.bsui .offset-xxl-3{margin-left:25%}.bsui .offset-xxl-4{margin-left:33.33333333%}.bsui .offset-xxl-5{margin-left:41.66666667%}.bsui .offset-xxl-6{margin-left:50%}.bsui .offset-xxl-7{margin-left:58.33333333%}.bsui .offset-xxl-8{margin-left:66.66666667%}.bsui .offset-xxl-9{margin-left:75%}.bsui .offset-xxl-10{margin-left:83.33333333%}.bsui .offset-xxl-11{margin-left:91.66666667%}}.bsui .table{width:100%;margin-bottom:1rem;color:#212529}.bsui .table th,.bsui .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.bsui .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.bsui .table tbody+tbody{border-top:2px solid #dee2e6}.bsui .table-sm th,.bsui .table-sm td{padding:.3rem}.bsui .table-bordered{border:1px solid #dee2e6}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6}.bsui .table-bordered thead th,.bsui .table-bordered thead td{border-bottom-width:2px}.bsui .table-borderless th,.bsui .table-borderless td,.bsui .table-borderless thead th,.bsui .table-borderless tbody+tbody{border:0}.bsui .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.bsui .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.bsui .table-primary,.bsui .table-primary>th,.bsui .table-primary>td{background-color:#c0d8ed}.bsui .table-primary th,.bsui .table-primary td,.bsui .table-primary thead th,.bsui .table-primary tbody+tbody{border-color:#8ab6dd}.bsui .table-hover .table-primary:hover{background-color:#accce7}.bsui .table-hover .table-primary:hover>td,.bsui .table-hover .table-primary:hover>th{background-color:#accce7}.bsui .table-secondary,.bsui .table-secondary>th,.bsui .table-secondary>td{background-color:#d6d8db}.bsui .table-secondary th,.bsui .table-secondary td,.bsui .table-secondary thead th,.bsui .table-secondary tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-secondary:hover{background-color:#c8cbcf}.bsui .table-hover .table-secondary:hover>td,.bsui .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.bsui .table-success,.bsui .table-success>th,.bsui .table-success>td{background-color:#cbefcf}.bsui .table-success th,.bsui .table-success td,.bsui .table-success thead th,.bsui .table-success tbody+tbody{border-color:#9ee1a6}.bsui .table-hover .table-success:hover{background-color:#b8e9bd}.bsui .table-hover .table-success:hover>td,.bsui .table-hover .table-success:hover>th{background-color:#b8e9bd}.bsui .table-info,.bsui .table-info>th,.bsui .table-info>td{background-color:#bee5eb}.bsui .table-info th,.bsui .table-info td,.bsui .table-info thead th,.bsui .table-info tbody+tbody{border-color:#86cfda}.bsui .table-hover .table-info:hover{background-color:#abdde5}.bsui .table-hover .table-info:hover>td,.bsui .table-hover .table-info:hover>th{background-color:#abdde5}.bsui .table-warning,.bsui .table-warning>th,.bsui .table-warning>td{background-color:#ffeeba}.bsui .table-warning th,.bsui .table-warning td,.bsui .table-warning thead th,.bsui .table-warning tbody+tbody{border-color:#ffdf7e}.bsui .table-hover .table-warning:hover{background-color:#ffe8a1}.bsui .table-hover .table-warning:hover>td,.bsui .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bsui .table-danger,.bsui .table-danger>th,.bsui .table-danger>td{background-color:#f5c6cb}.bsui .table-danger th,.bsui .table-danger td,.bsui .table-danger thead th,.bsui .table-danger tbody+tbody{border-color:#ed969e}.bsui .table-hover .table-danger:hover{background-color:#f1b0b7}.bsui .table-hover .table-danger:hover>td,.bsui .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bsui .table-light,.bsui .table-light>th,.bsui .table-light>td{background-color:#fdfdfe}.bsui .table-light th,.bsui .table-light td,.bsui .table-light thead th,.bsui .table-light tbody+tbody{border-color:#fbfcfc}.bsui .table-hover .table-light:hover{background-color:#ececf6}.bsui .table-hover .table-light:hover>td,.bsui .table-hover .table-light:hover>th{background-color:#ececf6}.bsui .table-dark,.bsui .table-dark>th,.bsui .table-dark>td{background-color:#c6c8ca}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#95999c}.bsui .table-hover .table-dark:hover{background-color:#b9bbbe}.bsui .table-hover .table-dark:hover>td,.bsui .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bsui .table-white,.bsui .table-white>th,.bsui .table-white>td{background-color:#fff}.bsui .table-white th,.bsui .table-white td,.bsui .table-white thead th,.bsui .table-white tbody+tbody{border-color:#fff}.bsui .table-hover .table-white:hover{background-color:#f2f2f2}.bsui .table-hover .table-white:hover>td,.bsui .table-hover .table-white:hover>th{background-color:#f2f2f2}.bsui .table-purple,.bsui .table-purple>th,.bsui .table-purple>td{background-color:#e8d6f5}.bsui .table-purple th,.bsui .table-purple td,.bsui .table-purple thead th,.bsui .table-purple tbody+tbody{border-color:#d4b4ed}.bsui .table-hover .table-purple:hover{background-color:#ddc2f0}.bsui .table-hover .table-purple:hover>td,.bsui .table-hover .table-purple:hover>th{background-color:#ddc2f0}.bsui .table-salmon,.bsui .table-salmon>th,.bsui .table-salmon>td{background-color:#ffe2da}.bsui .table-salmon th,.bsui .table-salmon td,.bsui .table-salmon thead th,.bsui .table-salmon tbody+tbody{border-color:#ffc9ba}.bsui .table-hover .table-salmon:hover{background-color:#ffcec1}.bsui .table-hover .table-salmon:hover>td,.bsui .table-hover .table-salmon:hover>th{background-color:#ffcec1}.bsui .table-cyan,.bsui .table-cyan>th,.bsui .table-cyan>td{background-color:#c6edff}.bsui .table-cyan th,.bsui .table-cyan td,.bsui .table-cyan thead th,.bsui .table-cyan tbody+tbody{border-color:#96ddff}.bsui .table-hover .table-cyan:hover{background-color:#ade5ff}.bsui .table-hover .table-cyan:hover>td,.bsui .table-hover .table-cyan:hover>th{background-color:#ade5ff}.bsui .table-gray,.bsui .table-gray>th,.bsui .table-gray>td{background-color:#f1f3f5}.bsui .table-gray th,.bsui .table-gray td,.bsui .table-gray thead th,.bsui .table-gray tbody+tbody{border-color:#e6e9ec}.bsui .table-hover .table-gray:hover{background-color:#e2e6ea}.bsui .table-hover .table-gray:hover>td,.bsui .table-hover .table-gray:hover>th{background-color:#e2e6ea}.bsui .table-gray-dark,.bsui .table-gray-dark>th,.bsui .table-gray-dark>td{background-color:#d6d8db}.bsui .table-gray-dark th,.bsui .table-gray-dark td,.bsui .table-gray-dark thead th,.bsui .table-gray-dark tbody+tbody{border-color:#b3b7bb}.bsui .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.bsui .table-hover .table-gray-dark:hover>td,.bsui .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.bsui .table-indigo,.bsui .table-indigo>th,.bsui .table-indigo>td{background-color:#cec4d6}.bsui .table-indigo th,.bsui .table-indigo td,.bsui .table-indigo thead th,.bsui .table-indigo tbody+tbody{border-color:#a491b3}.bsui .table-hover .table-indigo:hover{background-color:#c2b5cc}.bsui .table-hover .table-indigo:hover>td,.bsui .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.bsui .table-orange,.bsui .table-orange>th,.bsui .table-orange>td{background-color:#feeab8}.bsui .table-orange th,.bsui .table-orange td,.bsui .table-orange thead th,.bsui .table-orange tbody+tbody{border-color:#fdd97a}.bsui .table-hover .table-orange:hover{background-color:#fee39f}.bsui .table-hover .table-orange:hover>td,.bsui .table-hover .table-orange:hover>th{background-color:#fee39f}.bsui .table-active,.bsui .table-active>th,.bsui .table-active>td{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.bsui .table-hover .table-active:hover>td,.bsui .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.bsui .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.bsui .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.bsui .table-dark{color:#fff;background-color:#343a40}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th{border-color:#454d55}.bsui .table-dark.table-bordered{border:0}.bsui .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.bsui .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.bsui .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.bsui .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.bsui .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.bsui .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.bsui .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive-xxl>.table-bordered{border:0}}.bsui .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.bsui .table-responsive>.table-bordered{border:0}.bsui .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .form-control{transition:none}}.bsui .form-control::-ms-expand{background-color:transparent;border:0}.bsui .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .form-control::placeholder{color:#6c757d;opacity:1}.bsui .form-control:disabled,.bsui .form-control[readonly]{background-color:#e9ecef;opacity:1}.bsui input[type="date"].form-control,.bsui input[type="time"].form-control,.bsui input[type="datetime-local"].form-control,.bsui input[type="month"].form-control{appearance:none}.bsui select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.bsui .form-control-file,.bsui .form-control-range{display:block;width:100%}.bsui .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.bsui .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.bsui .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.bsui .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.bsui .form-control-plaintext.form-control-sm,.bsui .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.bsui .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui select.form-control[size],.bsui select.form-control[multiple]{height:auto}.bsui textarea.form-control{height:auto}.bsui .form-group{margin-bottom:1rem}.bsui .form-text{display:block;margin-top:.25rem}.bsui .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.bsui .form-row>.col,.bsui .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.bsui .form-check{position:relative;display:block;padding-left:1.25rem}.bsui .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.bsui .form-check-input[disabled] ~ .form-check-label,.bsui .form-check-input:disabled ~ .form-check-label{color:#6c757d}.bsui .form-check-label{margin-bottom:0}.bsui .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.bsui .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.bsui .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.bsui .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.bsui .valid-tooltip,.form-row>[class*="col-"]>.bsui .valid-tooltip{left:5px}.was-validated .bsui:valid ~ .valid-feedback,.was-validated .bsui:valid ~ .valid-tooltip,.bsui.is-valid ~ .valid-feedback,.bsui.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .form-control:valid,.bsui .form-control.is-valid{border-color:#44c553;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:valid:focus,.bsui .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui select.form-control:valid,.bsui select.form-control.is-valid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .bsui textarea.form-control:valid,.bsui textarea.form-control.is-valid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .bsui .custom-select:valid,.bsui .custom-select.is-valid{border-color:#44c553;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:valid:focus,.bsui .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .form-check-input:valid ~ .form-check-label,.bsui .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .bsui .form-check-input:valid ~ .valid-feedback,.was-validated .bsui .form-check-input:valid ~ .valid-tooltip,.bsui .form-check-input.is-valid ~ .valid-feedback,.bsui .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label,.bsui .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .bsui .custom-control-input:valid ~ .custom-control-label::before,.bsui .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-control-input:valid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .bsui .custom-control-input:valid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .bsui .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .bsui .custom-file-input:valid ~ .custom-file-label,.bsui .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .bsui .custom-file-input:valid:focus ~ .custom-file-label,.bsui .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.bsui .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.bsui .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.bsui .invalid-tooltip,.form-row>[class*="col-"]>.bsui .invalid-tooltip{left:5px}.was-validated .bsui:invalid ~ .invalid-feedback,.was-validated .bsui:invalid ~ .invalid-tooltip,.bsui.is-invalid ~ .invalid-feedback,.bsui.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .form-control:invalid,.bsui .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .bsui .form-control:invalid:focus,.bsui .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui select.form-control:invalid,.bsui select.form-control.is-invalid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .bsui textarea.form-control:invalid,.bsui textarea.form-control.is-invalid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .bsui .custom-select:invalid,.bsui .custom-select.is-invalid{border-color:#dc3545;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .bsui .custom-select:invalid:focus,.bsui .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .form-check-input:invalid ~ .form-check-label,.bsui .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .bsui .form-check-input:invalid ~ .invalid-feedback,.was-validated .bsui .form-check-input:invalid ~ .invalid-tooltip,.bsui .form-check-input.is-invalid ~ .invalid-feedback,.bsui .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label,.bsui .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .bsui .custom-control-input:invalid ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-control-input:invalid:checked ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .bsui .custom-control-input:invalid:focus ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .bsui .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.bsui .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid ~ .custom-file-label,.bsui .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .bsui .custom-file-input:invalid:focus ~ .custom-file-label,.bsui .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.bsui .form-inline{display:flex;flex-flow:row wrap;align-items:center}.bsui .form-inline .form-check{width:100%}@media (min-width: 576px){.bsui .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.bsui .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.bsui .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.bsui .form-inline .form-control-plaintext{display:inline-block}.bsui .form-inline .input-group,.bsui .form-inline .custom-select{width:auto}.bsui .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.bsui .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.bsui .form-inline .custom-control{align-items:center;justify-content:center}.bsui .form-inline .custom-control-label{margin-bottom:0}}.bsui .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .btn{transition:none}}.bsui .btn:hover{color:#212529;text-decoration:none}.bsui .btn:focus,.bsui .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .btn.disabled,.bsui .btn:disabled{opacity:.65}.bsui .btn:not(:disabled):not(.disabled){cursor:pointer}.bsui a.btn.disabled,.bsui fieldset:disabled a.btn{pointer-events:none}.bsui .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.bsui .btn-primary:focus,.bsui .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-primary.disabled,.bsui .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-primary:not(:disabled):not(.disabled):active,.bsui .btn-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.bsui .btn-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.bsui .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-secondary:focus,.bsui .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-secondary.disabled,.bsui .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-secondary:not(:disabled):not(.disabled):active,.bsui .btn-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.bsui .btn-success:focus,.bsui .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-success.disabled,.bsui .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-success:not(:disabled):not(.disabled):active,.bsui .btn-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.bsui .btn-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.bsui .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.bsui .btn-info:focus,.bsui .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-info.disabled,.bsui .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-info:not(:disabled):not(.disabled):active,.bsui .btn-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.bsui .btn-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.bsui .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.bsui .btn-warning:focus,.bsui .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-warning.disabled,.bsui .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-warning:not(:disabled):not(.disabled):active,.bsui .btn-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.bsui .btn-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.bsui .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.bsui .btn-danger:focus,.bsui .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-danger.disabled,.bsui .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-danger:not(:disabled):not(.disabled):active,.bsui .btn-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.bsui .btn-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.bsui .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.bsui .btn-light:focus,.bsui .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-light.disabled,.bsui .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-light:not(:disabled):not(.disabled):active,.bsui .btn-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.bsui .btn-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.bsui .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.bsui .btn-dark:focus,.bsui .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-dark.disabled,.bsui .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-dark:not(:disabled):not(.disabled):active,.bsui .btn-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.bsui .btn-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.bsui .btn-white{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.bsui .btn-white:focus,.bsui .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-white.disabled,.bsui .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-white:not(:disabled):not(.disabled):active,.bsui .btn-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.bsui .btn-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.bsui .btn-purple:focus,.bsui .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-purple.disabled,.bsui .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-purple:not(:disabled):not(.disabled):active,.bsui .btn-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.bsui .btn-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.bsui .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.bsui .btn-salmon:focus,.bsui .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-salmon.disabled,.bsui .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-salmon:not(:disabled):not(.disabled):active,.bsui .btn-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.bsui .btn-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.bsui .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.bsui .btn-cyan:focus,.bsui .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-cyan.disabled,.bsui .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-cyan:not(:disabled):not(.disabled):active,.bsui .btn-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.bsui .btn-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.bsui .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.bsui .btn-gray:focus,.bsui .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray.disabled,.bsui .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-gray:not(:disabled):not(.disabled):active,.bsui .btn-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.bsui .btn-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.bsui .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.bsui .btn-gray-dark:focus,.bsui .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-gray-dark.disabled,.bsui .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.bsui .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.bsui .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.bsui .btn-indigo:focus,.bsui .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-indigo.disabled,.bsui .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-indigo:not(:disabled):not(.disabled):active,.bsui .btn-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.bsui .btn-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.bsui .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.bsui .btn-orange:focus,.bsui .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-orange.disabled,.bsui .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-orange:not(:disabled):not(.disabled):active,.bsui .btn-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.bsui .btn-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.bsui .btn-outline-primary{color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:focus,.bsui .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-primary.disabled,.bsui .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:focus,.bsui .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-secondary.disabled,.bsui .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-success{color:#44c553;border-color:#44c553}.bsui .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:focus,.bsui .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-success.disabled,.bsui .btn-outline-success:disabled{color:#44c553;background-color:transparent}.bsui .btn-outline-success:not(:disabled):not(.disabled):active,.bsui .btn-outline-success:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .btn-outline-success:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:focus,.bsui .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-info.disabled,.bsui .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.bsui .btn-outline-info:not(:disabled):not(.disabled):active,.bsui .btn-outline-info:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .btn-outline-info:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .btn-outline-warning{color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:focus,.bsui .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-warning.disabled,.bsui .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.bsui .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .btn-outline-danger{color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:focus,.bsui .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-danger.disabled,.bsui .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:focus,.bsui .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-light.disabled,.bsui .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.bsui .btn-outline-light:not(:disabled):not(.disabled):active,.bsui .btn-outline-light:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .btn-outline-light:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .btn-outline-dark{color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:focus,.bsui .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-dark.disabled,.bsui .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .btn-outline-white{color:#fff;border-color:#fff}.bsui .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:focus,.bsui .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-white.disabled,.bsui .btn-outline-white:disabled{color:#fff;background-color:transparent}.bsui .btn-outline-white:not(:disabled):not(.disabled):active,.bsui .btn-outline-white:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.bsui .btn-outline-white:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:focus,.bsui .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-purple.disabled,.bsui .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:focus,.bsui .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-salmon.disabled,.bsui .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.bsui .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:focus,.bsui .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-cyan.disabled,.bsui .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.bsui .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .btn-outline-gray{color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:focus,.bsui .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray.disabled,.bsui .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.bsui .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:focus,.bsui .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-gray-dark.disabled,.bsui .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:focus,.bsui .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-indigo.disabled,.bsui .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .btn-outline-orange{color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:focus,.bsui .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-outline-orange.disabled,.bsui .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.bsui .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.bsui .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.bsui .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.bsui .btn-link:hover{color:#144b7c;text-decoration:underline}.bsui .btn-link:focus,.bsui .btn-link.focus{text-decoration:underline}.bsui .btn-link:disabled,.bsui .btn-link.disabled{color:#6c757d;pointer-events:none}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-block{display:block;width:100%}.bsui .btn-block+.btn-block{margin-top:.5rem}.bsui input[type="submit"].btn-block,.bsui input[type="reset"].btn-block,.bsui input[type="button"].btn-block{width:100%}.bsui .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.bsui .fade{transition:none}}.bsui .fade:not(.show){opacity:0}.bsui .collapse:not(.show){display:none}.bsui .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing{transition:none}}.bsui .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.bsui .collapsing.width{transition:none}}.bsui .dropup,.bsui .dropright,.bsui .dropdown,.bsui .dropleft{position:relative}.bsui .dropdown-toggle{white-space:nowrap}.bsui .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.bsui .dropdown-toggle:empty::after{margin-left:0}.bsui .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.bsui .dropdown-menu-left{right:auto;left:0}.bsui .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.bsui .dropdown-menu-sm-left{right:auto;left:0}.bsui .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.bsui .dropdown-menu-md-left{right:auto;left:0}.bsui .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.bsui .dropdown-menu-lg-left{right:auto;left:0}.bsui .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.bsui .dropdown-menu-xl-left{right:auto;left:0}.bsui .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.bsui .dropdown-menu-xxl-left{right:auto;left:0}.bsui .dropdown-menu-xxl-right{right:0;left:auto}}.bsui .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.bsui .dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.bsui .dropup .dropdown-toggle:empty::after{margin-left:0}.bsui .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.bsui .dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.bsui .dropright .dropdown-toggle:empty::after{margin-left:0}.bsui .dropright .dropdown-toggle::after{vertical-align:0}.bsui .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.bsui .dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.bsui .dropleft .dropdown-toggle::after{display:none}.bsui .dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.bsui .dropleft .dropdown-toggle:empty::after{margin-left:0}.bsui .dropleft .dropdown-toggle::before{vertical-align:0}.bsui .dropdown-menu[x-placement^="top"],.bsui .dropdown-menu[x-placement^="right"],.bsui .dropdown-menu[x-placement^="bottom"],.bsui .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.bsui .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.bsui .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.bsui .dropdown-item:hover,.bsui .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.bsui .dropdown-item.active,.bsui .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.bsui .dropdown-item.disabled,.bsui .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.bsui .dropdown-menu.show{display:block}.bsui .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.bsui .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.bsui .btn-group,.bsui .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.bsui .btn-group>.btn,.bsui .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.bsui .btn-group>.btn:hover,.bsui .btn-group-vertical>.btn:hover{z-index:1}.bsui .btn-group>.btn:focus,.bsui .btn-group>.btn:active,.bsui .btn-group>.btn.active,.bsui .btn-group-vertical>.btn:focus,.bsui .btn-group-vertical>.btn:active,.bsui .btn-group-vertical>.btn.active{z-index:1}.bsui .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.bsui .btn-toolbar .input-group{width:auto}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child){margin-left:-1px}.bsui .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .btn-group>.btn:not(:first-child),.bsui .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.bsui .dropdown-toggle-split::after,.dropup .bsui .dropdown-toggle-split::after,.dropright .bsui .dropdown-toggle-split::after{margin-left:0}.dropleft .bsui .dropdown-toggle-split::before{margin-right:0}.bsui .btn-sm+.dropdown-toggle-split,.bsui .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.bsui .btn-lg+.dropdown-toggle-split,.bsui .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.bsui .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.bsui .btn-group-vertical>.btn,.bsui .btn-group-vertical>.btn-group{width:100%}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.bsui .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.bsui .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .btn-group-vertical>.btn:not(:first-child),.bsui .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.bsui .btn-group-toggle>.btn,.bsui .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.bsui .btn-group-toggle>.btn input[type="radio"],.bsui .btn-group-toggle>.btn input[type="checkbox"],.bsui .btn-group-toggle>.btn-group>.btn input[type="radio"],.bsui .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.bsui .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.bsui .input-group>.form-control,.bsui .input-group>.form-control-plaintext,.bsui .input-group>.custom-select,.bsui .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.bsui .input-group>.form-control+.form-control,.bsui .input-group>.form-control+.custom-select,.bsui .input-group>.form-control+.custom-file,.bsui .input-group>.form-control-plaintext+.form-control,.bsui .input-group>.form-control-plaintext+.custom-select,.bsui .input-group>.form-control-plaintext+.custom-file,.bsui .input-group>.custom-select+.form-control,.bsui .input-group>.custom-select+.custom-select,.bsui .input-group>.custom-select+.custom-file,.bsui .input-group>.custom-file+.form-control,.bsui .input-group>.custom-file+.custom-select,.bsui .input-group>.custom-file+.custom-file{margin-left:-1px}.bsui .input-group>.form-control:focus,.bsui .input-group>.custom-select:focus,.bsui .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.bsui .input-group>.custom-file .custom-file-input:focus{z-index:4}.bsui .input-group>.form-control:not(:first-child),.bsui .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group>.custom-file{display:flex;align-items:center}.bsui .input-group>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.bsui .input-group:not(.has-validation)>.form-control:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-select:not(:last-child),.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.bsui .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group.has-validation>.form-control:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-select:nth-last-child(n+3),.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.bsui .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group-prepend,.bsui .input-group-append{display:flex}.bsui .input-group-prepend .btn,.bsui .input-group-append .btn{position:relative;z-index:2}.bsui .input-group-prepend .btn:focus,.bsui .input-group-append .btn:focus{z-index:3}.bsui .input-group-prepend .btn+.btn,.bsui .input-group-prepend .btn+.input-group-text,.bsui .input-group-prepend .input-group-text+.input-group-text,.bsui .input-group-prepend .input-group-text+.btn,.bsui .input-group-append .btn+.btn,.bsui .input-group-append .btn+.input-group-text,.bsui .input-group-append .input-group-text+.input-group-text,.bsui .input-group-append .input-group-text+.btn{margin-left:-1px}.bsui .input-group-prepend{margin-right:-1px}.bsui .input-group-append{margin-left:-1px}.bsui .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.bsui .input-group-text input[type="radio"],.bsui .input-group-text input[type="checkbox"]{margin-top:0}.bsui .input-group-lg>.form-control:not(textarea),.bsui .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.bsui .input-group-lg>.form-control,.bsui .input-group-lg>.custom-select,.bsui .input-group-lg>.input-group-prepend>.input-group-text,.bsui .input-group-lg>.input-group-append>.input-group-text,.bsui .input-group-lg>.input-group-prepend>.btn,.bsui .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .input-group-sm>.form-control:not(textarea),.bsui .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.bsui .input-group-sm>.form-control,.bsui .input-group-sm>.custom-select,.bsui .input-group-sm>.input-group-prepend>.input-group-text,.bsui .input-group-sm>.input-group-append>.input-group-text,.bsui .input-group-sm>.input-group-prepend>.btn,.bsui .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .input-group-lg>.custom-select,.bsui .input-group-sm>.custom-select{padding-right:2.2rem}.bsui .input-group>.input-group-prepend>.btn,.bsui .input-group>.input-group-prepend>.input-group-text,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.bsui .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.bsui .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.bsui .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.bsui .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .input-group>.input-group-append>.btn,.bsui .input-group>.input-group-append>.input-group-text,.bsui .input-group>.input-group-prepend:not(:first-child)>.btn,.bsui .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.bsui .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.bsui .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-left:1.5rem;print-color-adjust:exact}.bsui .custom-control-inline{display:inline-flex;margin-right:1rem}.bsui .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.bsui .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.bsui .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.bsui .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.bsui .custom-control-input[disabled] ~ .custom-control-label,.bsui .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.bsui .custom-control-input[disabled] ~ .custom-control-label::before,.bsui .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.bsui .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.bsui .custom-control-label::before{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.bsui .custom-control-label::after{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.bsui .custom-checkbox .custom-control-label::before{border-radius:.25rem}.bsui .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.bsui .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.bsui .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-radio .custom-control-label::before{border-radius:50%}.bsui .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.bsui .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-switch{padding-left:2.25rem}.bsui .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.bsui .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-switch .custom-control-label::after{transition:none}}.bsui .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.bsui .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.bsui .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 2.2rem .45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.bsui .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.bsui .custom-select[multiple],.bsui .custom-select[size]:not([size="1"]){height:auto;padding-right:1.2rem;background-image:none}.bsui .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.bsui .custom-select::-ms-expand{display:none}.bsui .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.bsui .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:1rem;font-size:.875rem}.bsui .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-bottom:.65rem;padding-left:2rem;font-size:1.15rem}.bsui .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.bsui .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.bsui .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-file-input[disabled] ~ .custom-file-label,.bsui .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.bsui .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.bsui .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.bsui .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.bsui .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.bsui .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.bsui .custom-range:focus{outline:0}.bsui .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .custom-range::-moz-focus-outer{border:0}.bsui .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-webkit-slider-thumb{transition:none}}.bsui .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-moz-range-thumb{transition:none}}.bsui .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.bsui .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.bsui .custom-range::-ms-thumb{transition:none}}.bsui .custom-range::-ms-thumb:active{background-color:#9fcaf0}.bsui .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.bsui .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.bsui .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.bsui .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.bsui .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.bsui .custom-range:disabled::-moz-range-track{cursor:default}.bsui .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .custom-control-label::before,.bsui .custom-file-label,.bsui .custom-select{transition:none}}.bsui .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.bsui .nav-link{display:block;padding:.8rem 1rem}.bsui .nav-link:hover,.bsui .nav-link:focus{text-decoration:none}.bsui .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.bsui .nav-tabs{border-bottom:1px solid #dee2e6}.bsui .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.bsui .nav-tabs .nav-link:hover,.bsui .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.bsui .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.bsui .nav-tabs .nav-link.active,.bsui .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.bsui .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.bsui .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.bsui .nav-pills .nav-link.active,.bsui .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.bsui .nav-fill>.nav-link,.bsui .nav-fill .nav-item{flex:1 1 auto;text-align:center}.bsui .nav-justified>.nav-link,.bsui .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.bsui .tab-content>.tab-pane{display:none}.bsui .tab-content>.active{display:block}.bsui .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.bsui .navbar .container,.bsui .navbar .container-fluid,.bsui .navbar .container-sm,.bsui .navbar .container-md,.bsui .navbar .container-lg,.bsui .navbar .container-xl,.bsui .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.bsui .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-right:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.bsui .navbar-brand:hover,.bsui .navbar-brand:focus{text-decoration:none}.bsui .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.bsui .navbar-nav .nav-link{padding-right:0;padding-left:0}.bsui .navbar-nav .dropdown-menu{position:static;float:none}.bsui .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.bsui .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.bsui .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.bsui .navbar-toggler:hover,.bsui .navbar-toggler:focus{text-decoration:none}.bsui .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.bsui .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.bsui .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-sm .navbar-nav{flex-direction:row}.bsui .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-sm>.container,.bsui .navbar-expand-sm>.container-fluid,.bsui .navbar-expand-sm>.container-sm,.bsui .navbar-expand-sm>.container-md,.bsui .navbar-expand-sm>.container-lg,.bsui .navbar-expand-sm>.container-xl,.bsui .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.bsui .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-md .navbar-nav{flex-direction:row}.bsui .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-md>.container,.bsui .navbar-expand-md>.container-fluid,.bsui .navbar-expand-md>.container-sm,.bsui .navbar-expand-md>.container-md,.bsui .navbar-expand-md>.container-lg,.bsui .navbar-expand-md>.container-xl,.bsui .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-md .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.bsui .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-lg .navbar-nav{flex-direction:row}.bsui .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-lg>.container,.bsui .navbar-expand-lg>.container-fluid,.bsui .navbar-expand-lg>.container-sm,.bsui .navbar-expand-lg>.container-md,.bsui .navbar-expand-lg>.container-lg,.bsui .navbar-expand-lg>.container-xl,.bsui .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.bsui .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xl>.container,.bsui .navbar-expand-xl>.container-fluid,.bsui .navbar-expand-xl>.container-sm,.bsui .navbar-expand-xl>.container-md,.bsui .navbar-expand-xl>.container-lg,.bsui .navbar-expand-xl>.container-xl,.bsui .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.bsui .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand-xxl .navbar-nav{flex-direction:row}.bsui .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand-xxl>.container,.bsui .navbar-expand-xxl>.container-fluid,.bsui .navbar-expand-xxl>.container-sm,.bsui .navbar-expand-xxl>.container-md,.bsui .navbar-expand-xxl>.container-lg,.bsui .navbar-expand-xxl>.container-xl,.bsui .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand-xxl .navbar-toggler{display:none}}.bsui .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.bsui .navbar-expand .navbar-nav{flex-direction:row}.bsui .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.bsui .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.bsui .navbar-expand>.container,.bsui .navbar-expand>.container-fluid,.bsui .navbar-expand>.container-sm,.bsui .navbar-expand>.container-md,.bsui .navbar-expand>.container-lg,.bsui .navbar-expand>.container-xl,.bsui .navbar-expand>.container-xxl{flex-wrap:nowrap}.bsui .navbar-expand .navbar-nav-scroll{overflow:visible}.bsui .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.bsui .navbar-expand .navbar-toggler{display:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-dark .navbar-brand{color:#fff}.bsui .navbar-dark .navbar-brand:hover,.bsui .navbar-dark .navbar-brand:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-nav .nav-link:hover,.bsui .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.bsui .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.bsui .navbar-dark .navbar-nav .show>.nav-link,.bsui .navbar-dark .navbar-nav .active>.nav-link,.bsui .navbar-dark .navbar-nav .nav-link.show,.bsui .navbar-dark .navbar-nav .nav-link.active{color:#fff}.bsui .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.bsui .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.bsui .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.bsui .navbar-dark .navbar-text a{color:#fff}.bsui .navbar-dark .navbar-text a:hover,.bsui .navbar-dark .navbar-text a:focus{color:#fff}.bsui .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.bsui .card>hr{margin-right:0;margin-left:0}.bsui .card>.list-group{border-top:inherit;border-bottom:inherit}.bsui .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card>.card-header+.list-group,.bsui .card>.list-group+.card-footer{border-top:0}.bsui .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.bsui .card-title{margin-bottom:.75rem}.bsui .card-subtitle{margin-top:-.375rem;margin-bottom:0}.bsui .card-text:last-child{margin-bottom:0}.bsui .card-link:hover{text-decoration:none}.bsui .card-link+.card-link{margin-left:1.25rem}.bsui .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.bsui .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.bsui .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.bsui .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.bsui .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.bsui .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.bsui .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-top,.bsui .card-img-bottom{flex-shrink:0;width:100%}.bsui .card-img,.bsui .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .card-img,.bsui .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.bsui .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.bsui .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.bsui .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.bsui .card-group{display:flex;flex-flow:row wrap}.bsui .card-group>.card{flex:1 0 0%;margin-bottom:0}.bsui .card-group>.card+.card{margin-left:0;border-left:0}.bsui .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-top,.bsui .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.bsui .card-group>.card:not(:last-child) .card-img-bottom,.bsui .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.bsui .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-top,.bsui .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.bsui .card-group>.card:not(:first-child) .card-img-bottom,.bsui .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.bsui .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.bsui .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.bsui .card-columns .card{display:inline-block;width:100%}}.bsui .accordion{overflow-anchor:none}.bsui .accordion>.card{overflow:hidden}.bsui .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.bsui .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.bsui .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.bsui .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.bsui .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.bsui .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.bsui .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.bsui .breadcrumb-item.active{color:#6c757d}.bsui .pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.bsui .page-link{position:relative;display:block;padding:.75rem 1rem;margin-left:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.bsui .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.bsui .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.bsui .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bsui .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.bsui .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.bsui .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.bsui .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.bsui .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.bsui .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.bsui .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.bsui .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.bsui .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .badge{transition:none}}.bsui a.badge:hover,.bsui a.badge:focus{text-decoration:none}.bsui .badge:empty{display:none}.bsui .btn .badge{position:relative;top:-1px}.bsui .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.bsui .badge-primary{color:#fff;background-color:#1e73be}.bsui a.badge-primary:hover,.bsui a.badge-primary:focus{color:#fff;background-color:#175892}.bsui a.badge-primary:focus,.bsui a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.bsui .badge-secondary{color:#fff;background-color:#6c757d}.bsui a.badge-secondary:hover,.bsui a.badge-secondary:focus{color:#fff;background-color:#545b62}.bsui a.badge-secondary:focus,.bsui a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-success{color:#fff;background-color:#44c553}.bsui a.badge-success:hover,.bsui a.badge-success:focus{color:#fff;background-color:#33a340}.bsui a.badge-success:focus,.bsui a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.bsui .badge-info{color:#fff;background-color:#17a2b8}.bsui a.badge-info:hover,.bsui a.badge-info:focus{color:#fff;background-color:#117a8b}.bsui a.badge-info:focus,.bsui a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.bsui .badge-warning{color:#212529;background-color:#ffc107}.bsui a.badge-warning:hover,.bsui a.badge-warning:focus{color:#212529;background-color:#d39e00}.bsui a.badge-warning:focus,.bsui a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.bsui .badge-danger{color:#fff;background-color:#dc3545}.bsui a.badge-danger:hover,.bsui a.badge-danger:focus{color:#fff;background-color:#bd2130}.bsui a.badge-danger:focus,.bsui a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.bsui .badge-light{color:#212529;background-color:#f8f9fa}.bsui a.badge-light:hover,.bsui a.badge-light:focus{color:#212529;background-color:#dae0e5}.bsui a.badge-light:focus,.bsui a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.bsui .badge-dark{color:#fff;background-color:#343a40}.bsui a.badge-dark:hover,.bsui a.badge-dark:focus{color:#fff;background-color:#1d2124}.bsui a.badge-dark:focus,.bsui a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.bsui .badge-white{color:#212529;background-color:#fff}.bsui a.badge-white:hover,.bsui a.badge-white:focus{color:#212529;background-color:#e6e6e6}.bsui a.badge-white:focus,.bsui a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .badge-purple{color:#fff;background-color:#ad6edd}.bsui a.badge-purple:hover,.bsui a.badge-purple:focus{color:#fff;background-color:#9645d3}.bsui a.badge-purple:focus,.bsui a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.bsui .badge-salmon{color:#212529;background-color:#ff977a}.bsui a.badge-salmon:hover,.bsui a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.bsui a.badge-salmon:focus,.bsui a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.bsui .badge-cyan{color:#212529;background-color:#35bdff}.bsui a.badge-cyan:hover,.bsui a.badge-cyan:focus{color:#212529;background-color:#02acff}.bsui a.badge-cyan:focus,.bsui a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.bsui .badge-gray{color:#212529;background-color:#ced4da}.bsui a.badge-gray:hover,.bsui a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.bsui a.badge-gray:focus,.bsui a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.bsui .badge-gray-dark{color:#fff;background-color:#6c757d}.bsui a.badge-gray-dark:hover,.bsui a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.bsui a.badge-gray-dark:focus,.bsui a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.bsui .badge-indigo{color:#fff;background-color:#502c6c}.bsui a.badge-indigo:hover,.bsui a.badge-indigo:focus{color:#fff;background-color:#351d48}.bsui a.badge-indigo:focus,.bsui a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.bsui .badge-orange{color:#212529;background-color:#fbb500}.bsui a.badge-orange:hover,.bsui a.badge-orange:focus{color:#212529;background-color:#c89000}.bsui a.badge-orange:focus,.bsui a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.bsui .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.bsui .jumbotron{padding:4rem 2rem}}.bsui .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.bsui .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.bsui .alert-heading{color:inherit}.bsui .alert-link{font-weight:700}.bsui .alert-dismissible{padding-right:4rem}.bsui .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.bsui .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#175892}.bsui .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#545b62}.bsui .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#33a340}.bsui .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#117a8b}.bsui .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#d39e00}.bsui .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#bd2130}.bsui .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#dae0e5}.bsui .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#1d2124}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#9645d3}.bsui .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#ff6f47}.bsui .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#02acff}.bsui .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#b1bbc4}.bsui .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#545b62}.bsui .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#351d48}.bsui .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.bsui .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.bsui .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .progress-bar{transition:none}}.bsui .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.bsui .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.bsui .progress-bar-animated{animation:none}}.bsui .media{display:flex;align-items:flex-start}.bsui .media-body{flex:1}.bsui .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.bsui .list-group-item-action{width:100%;color:#495057;text-align:inherit}.bsui .list-group-item-action:hover,.bsui .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.bsui .list-group-item-action:active{color:#212529;background-color:#e9ecef}.bsui .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.bsui .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.bsui .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.bsui .list-group-item.disabled,.bsui .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.bsui .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .list-group-item+.list-group-item{border-top-width:0}.bsui .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.bsui .list-group-horizontal{flex-direction:row}.bsui .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.bsui .list-group-horizontal-sm{flex-direction:row}.bsui .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.bsui .list-group-horizontal-md{flex-direction:row}.bsui .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-md>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.bsui .list-group-horizontal-lg{flex-direction:row}.bsui .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.bsui .list-group-horizontal-xl{flex-direction:row}.bsui .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.bsui .list-group-horizontal-xxl{flex-direction:row}.bsui .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.bsui .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.bsui .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.bsui .list-group-flush{border-radius:0}.bsui .list-group-flush>.list-group-item{border-width:0 0 1px}.bsui .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.bsui .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.bsui .list-group-item-primary.list-group-item-action:hover,.bsui .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.bsui .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.bsui .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-secondary.list-group-item-action:hover,.bsui .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-success{color:#23662b;background-color:#cbefcf}.bsui .list-group-item-success.list-group-item-action:hover,.bsui .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.bsui .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.bsui .list-group-item-info{color:#0c5460;background-color:#bee5eb}.bsui .list-group-item-info.list-group-item-action:hover,.bsui .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.bsui .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.bsui .list-group-item-warning{color:#856404;background-color:#ffeeba}.bsui .list-group-item-warning.list-group-item-action:hover,.bsui .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.bsui .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.bsui .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.bsui .list-group-item-danger.list-group-item-action:hover,.bsui .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.bsui .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.bsui .list-group-item-light{color:#818182;background-color:#fdfdfe}.bsui .list-group-item-light.list-group-item-action:hover,.bsui .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.bsui .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.bsui .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.bsui .list-group-item-dark.list-group-item-action:hover,.bsui .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.bsui .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.bsui .list-group-item-white{color:#858585;background-color:#fff}.bsui .list-group-item-white.list-group-item-action:hover,.bsui .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.bsui .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.bsui .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.bsui .list-group-item-purple.list-group-item-action:hover,.bsui .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.bsui .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.bsui .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.bsui .list-group-item-salmon.list-group-item-action:hover,.bsui .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.bsui .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.bsui .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.bsui .list-group-item-cyan.list-group-item-action:hover,.bsui .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.bsui .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.bsui .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.bsui .list-group-item-gray.list-group-item-action:hover,.bsui .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.bsui .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.bsui .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.bsui .list-group-item-gray-dark.list-group-item-action:hover,.bsui .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.bsui .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.bsui .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.bsui .list-group-item-indigo.list-group-item-action:hover,.bsui .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.bsui .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.bsui .list-group-item-orange{color:#835e00;background-color:#feeab8}.bsui .list-group-item-orange.list-group-item-action:hover,.bsui .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.bsui .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.bsui .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.bsui .close:hover{color:#000;text-decoration:none}.bsui .close:not(:disabled):not(.disabled):hover,.bsui .close:not(:disabled):not(.disabled):focus{opacity:.75}.bsui button.close{padding:0;background-color:transparent;border:0}.bsui a.close.disabled{pointer-events:none}.bsui .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.bsui .toast:not(:last-child){margin-bottom:.75rem}.bsui .toast.showing{opacity:1}.bsui .toast.show{display:block;opacity:1}.bsui .toast.hide{display:none}.bsui .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.bsui .toast-body{padding:.75rem}.bsui .modal-open{overflow:hidden}.bsui .modal-open .modal{overflow-x:hidden;overflow-y:auto}.bsui .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.bsui .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .bsui .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .bsui .modal-dialog{transition:none}}.modal.show .bsui .modal-dialog{transform:none}.modal.modal-static .bsui .modal-dialog{transform:scale(1.02)}.bsui .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.bsui .modal-dialog-scrollable .modal-header,.bsui .modal-dialog-scrollable .modal-footer{flex-shrink:0}.bsui .modal-dialog-scrollable .modal-body{overflow-y:auto}.bsui .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.bsui .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.bsui .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.bsui .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.bsui .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.bsui .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.bsui .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.bsui .modal-backdrop.fade{opacity:0}.bsui .modal-backdrop.show{opacity:.5}.bsui .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.bsui .modal-title{margin-bottom:0;line-height:1.6}.bsui .modal-body{position:relative;flex:1 1 auto;padding:1rem}.bsui .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.bsui .modal-footer>*{margin:.25rem}.bsui .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.bsui .modal-dialog{max-width:500px;margin:1.75rem auto}.bsui .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.bsui .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.bsui .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.bsui .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.bsui .modal-sm{max-width:300px}}@media (min-width: 992px){.bsui .modal-lg,.bsui .modal-xl{max-width:800px}}@media (min-width: 1200px){.bsui .modal-xl{max-width:1140px}}.bsui .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.bsui .tooltip.show{opacity:.9}.bsui .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.bsui .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bsui .bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bsui .bs-tooltip-top .arrow,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bsui .bs-tooltip-top .arrow::before,.bsui .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bsui .bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bsui .bs-tooltip-right .arrow,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-right .arrow::before,.bsui .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bsui .bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bsui .bs-tooltip-bottom .arrow,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bsui .bs-tooltip-bottom .arrow::before,.bsui .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bsui .bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bsui .bs-tooltip-left .arrow,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bsui .bs-tooltip-left .arrow::before,.bsui .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bsui .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.bsui .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.bsui .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.bsui .popover .arrow::before,.bsui .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bsui .bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bsui .bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bsui .bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bsui .bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bsui .bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bsui .bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bsui .bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bsui .bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bsui .bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bsui .bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bsui .bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bsui .bs-popover-bottom .popover-header::before,.bsui .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bsui .bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bsui .bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bsui .bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bsui .bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bsui .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.bsui .popover-header:empty{display:none}.bsui .popover-body{padding:.5rem .75rem;color:#212529}.bsui .carousel{position:relative}.bsui .carousel.pointer-event{touch-action:pan-y}.bsui .carousel-inner{position:relative;width:100%;overflow:hidden}.bsui .carousel-inner::after{display:block;clear:both;content:""}.bsui .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.bsui .carousel-item{transition:none}}.bsui .carousel-item.active,.bsui .carousel-item-next,.bsui .carousel-item-prev{display:block}.bsui .carousel-item-next:not(.carousel-item-left),.bsui .active.carousel-item-right{transform:translateX(100%)}.bsui .carousel-item-prev:not(.carousel-item-right),.bsui .active.carousel-item-left{transform:translateX(-100%)}.bsui .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.bsui .carousel-fade .carousel-item.active,.bsui .carousel-fade .carousel-item-next.carousel-item-left,.bsui .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.bsui .carousel-fade .active.carousel-item-left,.bsui .carousel-fade .active.carousel-item-right{transition:none}}.bsui .carousel-control-prev,.bsui .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-control-prev,.bsui .carousel-control-next{transition:none}}.bsui .carousel-control-prev:hover,.bsui .carousel-control-prev:focus,.bsui .carousel-control-next:hover,.bsui .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.bsui .carousel-control-prev{left:0}.bsui .carousel-control-next{right:0}.bsui .carousel-control-prev-icon,.bsui .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.bsui .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.bsui .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.bsui .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.bsui .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.bsui .carousel-indicators li{transition:none}}.bsui .carousel-indicators .active{opacity:1}.bsui .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.bsui .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.bsui .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.bsui .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.bsui .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.bsui .spinner-border,.bsui .spinner-grow{animation-duration:1.5s}}.bsui .align-baseline{vertical-align:baseline !important}.bsui .align-top{vertical-align:top !important}.bsui .align-middle{vertical-align:middle !important}.bsui .align-bottom{vertical-align:bottom !important}.bsui .align-text-bottom{vertical-align:text-bottom !important}.bsui .align-text-top{vertical-align:text-top !important}.bsui .bg-primary{background-color:#1e73be !important}.bsui a.bg-primary:hover,.bsui a.bg-primary:focus,.bsui button.bg-primary:hover,.bsui button.bg-primary:focus{background-color:#175892 !important}.bsui .bg-secondary{background-color:#6c757d !important}.bsui a.bg-secondary:hover,.bsui a.bg-secondary:focus,.bsui button.bg-secondary:hover,.bsui button.bg-secondary:focus{background-color:#545b62 !important}.bsui .bg-success{background-color:#44c553 !important}.bsui a.bg-success:hover,.bsui a.bg-success:focus,.bsui button.bg-success:hover,.bsui button.bg-success:focus{background-color:#33a340 !important}.bsui .bg-info{background-color:#17a2b8 !important}.bsui a.bg-info:hover,.bsui a.bg-info:focus,.bsui button.bg-info:hover,.bsui button.bg-info:focus{background-color:#117a8b !important}.bsui .bg-warning{background-color:#ffc107 !important}.bsui a.bg-warning:hover,.bsui a.bg-warning:focus,.bsui button.bg-warning:hover,.bsui button.bg-warning:focus{background-color:#d39e00 !important}.bsui .bg-danger{background-color:#dc3545 !important}.bsui a.bg-danger:hover,.bsui a.bg-danger:focus,.bsui button.bg-danger:hover,.bsui button.bg-danger:focus{background-color:#bd2130 !important}.bsui .bg-light{background-color:#f8f9fa !important}.bsui a.bg-light:hover,.bsui a.bg-light:focus,.bsui button.bg-light:hover,.bsui button.bg-light:focus{background-color:#dae0e5 !important}.bsui .bg-dark{background-color:#343a40 !important}.bsui a.bg-dark:hover,.bsui a.bg-dark:focus,.bsui button.bg-dark:hover,.bsui button.bg-dark:focus{background-color:#1d2124 !important}.bsui .bg-white{background-color:#fff !important}.bsui a.bg-white:hover,.bsui a.bg-white:focus,.bsui button.bg-white:hover,.bsui button.bg-white:focus{background-color:#e6e6e6 !important}.bsui .bg-purple{background-color:#ad6edd !important}.bsui a.bg-purple:hover,.bsui a.bg-purple:focus,.bsui button.bg-purple:hover,.bsui button.bg-purple:focus{background-color:#9645d3 !important}.bsui .bg-salmon{background-color:#ff977a !important}.bsui a.bg-salmon:hover,.bsui a.bg-salmon:focus,.bsui button.bg-salmon:hover,.bsui button.bg-salmon:focus{background-color:#ff6f47 !important}.bsui .bg-cyan{background-color:#35bdff !important}.bsui a.bg-cyan:hover,.bsui a.bg-cyan:focus,.bsui button.bg-cyan:hover,.bsui button.bg-cyan:focus{background-color:#02acff !important}.bsui .bg-gray{background-color:#ced4da !important}.bsui a.bg-gray:hover,.bsui a.bg-gray:focus,.bsui button.bg-gray:hover,.bsui button.bg-gray:focus{background-color:#b1bbc4 !important}.bsui .bg-gray-dark{background-color:#6c757d !important}.bsui a.bg-gray-dark:hover,.bsui a.bg-gray-dark:focus,.bsui button.bg-gray-dark:hover,.bsui button.bg-gray-dark:focus{background-color:#545b62 !important}.bsui .bg-indigo{background-color:#502c6c !important}.bsui a.bg-indigo:hover,.bsui a.bg-indigo:focus,.bsui button.bg-indigo:hover,.bsui button.bg-indigo:focus{background-color:#351d48 !important}.bsui .bg-orange{background-color:#fbb500 !important}.bsui a.bg-orange:hover,.bsui a.bg-orange:focus,.bsui button.bg-orange:hover,.bsui button.bg-orange:focus{background-color:#c89000 !important}.bsui .bg-white{background-color:#fff !important}.bsui .bg-transparent{background-color:transparent !important}.bsui .border{border:1px solid #dee2e6 !important}.bsui .border-top{border-top:1px solid #dee2e6 !important}.bsui .border-right{border-right:1px solid #dee2e6 !important}.bsui .border-bottom{border-bottom:1px solid #dee2e6 !important}.bsui .border-left{border-left:1px solid #dee2e6 !important}.bsui .border-0{border:0 !important}.bsui .border-top-0{border-top:0 !important}.bsui .border-right-0{border-right:0 !important}.bsui .border-bottom-0{border-bottom:0 !important}.bsui .border-left-0{border-left:0 !important}.bsui .border-primary{border-color:#1e73be !important}.bsui .border-secondary{border-color:#6c757d !important}.bsui .border-success{border-color:#44c553 !important}.bsui .border-info{border-color:#17a2b8 !important}.bsui .border-warning{border-color:#ffc107 !important}.bsui .border-danger{border-color:#dc3545 !important}.bsui .border-light{border-color:#f8f9fa !important}.bsui .border-dark{border-color:#343a40 !important}.bsui .border-white{border-color:#fff !important}.bsui .border-purple{border-color:#ad6edd !important}.bsui .border-salmon{border-color:#ff977a !important}.bsui .border-cyan{border-color:#35bdff !important}.bsui .border-gray{border-color:#ced4da !important}.bsui .border-gray-dark{border-color:#6c757d !important}.bsui .border-indigo{border-color:#502c6c !important}.bsui .border-orange{border-color:#fbb500 !important}.bsui .border-white{border-color:#fff !important}.bsui .rounded-sm{border-radius:.2rem !important}.bsui .rounded{border-radius:.25rem !important}.bsui .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.bsui .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.bsui .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.bsui .rounded-lg{border-radius:.3rem !important}.bsui .rounded-circle{border-radius:50% !important}.bsui .rounded-pill{border-radius:50rem !important}.bsui .rounded-0{border-radius:0 !important}.bsui .clearfix::after{display:block;clear:both;content:""}.bsui .d-none{display:none !important}.bsui .d-inline{display:inline !important}.bsui .d-inline-block{display:inline-block !important}.bsui .d-block{display:block !important}.bsui .d-table{display:table !important}.bsui .d-table-row{display:table-row !important}.bsui .d-table-cell{display:table-cell !important}.bsui .d-flex{display:flex !important}.bsui .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.bsui .d-sm-none{display:none !important}.bsui .d-sm-inline{display:inline !important}.bsui .d-sm-inline-block{display:inline-block !important}.bsui .d-sm-block{display:block !important}.bsui .d-sm-table{display:table !important}.bsui .d-sm-table-row{display:table-row !important}.bsui .d-sm-table-cell{display:table-cell !important}.bsui .d-sm-flex{display:flex !important}.bsui .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.bsui .d-md-none{display:none !important}.bsui .d-md-inline{display:inline !important}.bsui .d-md-inline-block{display:inline-block !important}.bsui .d-md-block{display:block !important}.bsui .d-md-table{display:table !important}.bsui .d-md-table-row{display:table-row !important}.bsui .d-md-table-cell{display:table-cell !important}.bsui .d-md-flex{display:flex !important}.bsui .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.bsui .d-lg-none{display:none !important}.bsui .d-lg-inline{display:inline !important}.bsui .d-lg-inline-block{display:inline-block !important}.bsui .d-lg-block{display:block !important}.bsui .d-lg-table{display:table !important}.bsui .d-lg-table-row{display:table-row !important}.bsui .d-lg-table-cell{display:table-cell !important}.bsui .d-lg-flex{display:flex !important}.bsui .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.bsui .d-xl-none{display:none !important}.bsui .d-xl-inline{display:inline !important}.bsui .d-xl-inline-block{display:inline-block !important}.bsui .d-xl-block{display:block !important}.bsui .d-xl-table{display:table !important}.bsui .d-xl-table-row{display:table-row !important}.bsui .d-xl-table-cell{display:table-cell !important}.bsui .d-xl-flex{display:flex !important}.bsui .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.bsui .d-xxl-none{display:none !important}.bsui .d-xxl-inline{display:inline !important}.bsui .d-xxl-inline-block{display:inline-block !important}.bsui .d-xxl-block{display:block !important}.bsui .d-xxl-table{display:table !important}.bsui .d-xxl-table-row{display:table-row !important}.bsui .d-xxl-table-cell{display:table-cell !important}.bsui .d-xxl-flex{display:flex !important}.bsui .d-xxl-inline-flex{display:inline-flex !important}}@media print{.bsui .d-print-none{display:none !important}.bsui .d-print-inline{display:inline !important}.bsui .d-print-inline-block{display:inline-block !important}.bsui .d-print-block{display:block !important}.bsui .d-print-table{display:table !important}.bsui .d-print-table-row{display:table-row !important}.bsui .d-print-table-cell{display:table-cell !important}.bsui .d-print-flex{display:flex !important}.bsui .d-print-inline-flex{display:inline-flex !important}}.bsui .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.bsui .embed-responsive::before{display:block;content:""}.bsui .embed-responsive .embed-responsive-item,.bsui .embed-responsive iframe,.bsui .embed-responsive embed,.bsui .embed-responsive object,.bsui .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.bsui .embed-responsive-21by9::before{padding-top:42.85714286%}.bsui .embed-responsive-16by9::before{padding-top:56.25%}.bsui .embed-responsive-4by3::before{padding-top:75%}.bsui .embed-responsive-1by1::before{padding-top:100%}.bsui .flex-row{flex-direction:row !important}.bsui .flex-column{flex-direction:column !important}.bsui .flex-row-reverse{flex-direction:row-reverse !important}.bsui .flex-column-reverse{flex-direction:column-reverse !important}.bsui .flex-wrap{flex-wrap:wrap !important}.bsui .flex-nowrap{flex-wrap:nowrap !important}.bsui .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-fill{flex:1 1 auto !important}.bsui .flex-grow-0{flex-grow:0 !important}.bsui .flex-grow-1{flex-grow:1 !important}.bsui .flex-shrink-0{flex-shrink:0 !important}.bsui .flex-shrink-1{flex-shrink:1 !important}.bsui .justify-content-start{justify-content:flex-start !important}.bsui .justify-content-end{justify-content:flex-end !important}.bsui .justify-content-center{justify-content:center !important}.bsui .justify-content-between{justify-content:space-between !important}.bsui .justify-content-around{justify-content:space-around !important}.bsui .align-items-start{align-items:flex-start !important}.bsui .align-items-end{align-items:flex-end !important}.bsui .align-items-center{align-items:center !important}.bsui .align-items-baseline{align-items:baseline !important}.bsui .align-items-stretch{align-items:stretch !important}.bsui .align-content-start{align-content:flex-start !important}.bsui .align-content-end{align-content:flex-end !important}.bsui .align-content-center{align-content:center !important}.bsui .align-content-between{align-content:space-between !important}.bsui .align-content-around{align-content:space-around !important}.bsui .align-content-stretch{align-content:stretch !important}.bsui .align-self-auto{align-self:auto !important}.bsui .align-self-start{align-self:flex-start !important}.bsui .align-self-end{align-self:flex-end !important}.bsui .align-self-center{align-self:center !important}.bsui .align-self-baseline{align-self:baseline !important}.bsui .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.bsui .flex-sm-row{flex-direction:row !important}.bsui .flex-sm-column{flex-direction:column !important}.bsui .flex-sm-row-reverse{flex-direction:row-reverse !important}.bsui .flex-sm-column-reverse{flex-direction:column-reverse !important}.bsui .flex-sm-wrap{flex-wrap:wrap !important}.bsui .flex-sm-nowrap{flex-wrap:nowrap !important}.bsui .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-sm-fill{flex:1 1 auto !important}.bsui .flex-sm-grow-0{flex-grow:0 !important}.bsui .flex-sm-grow-1{flex-grow:1 !important}.bsui .flex-sm-shrink-0{flex-shrink:0 !important}.bsui .flex-sm-shrink-1{flex-shrink:1 !important}.bsui .justify-content-sm-start{justify-content:flex-start !important}.bsui .justify-content-sm-end{justify-content:flex-end !important}.bsui .justify-content-sm-center{justify-content:center !important}.bsui .justify-content-sm-between{justify-content:space-between !important}.bsui .justify-content-sm-around{justify-content:space-around !important}.bsui .align-items-sm-start{align-items:flex-start !important}.bsui .align-items-sm-end{align-items:flex-end !important}.bsui .align-items-sm-center{align-items:center !important}.bsui .align-items-sm-baseline{align-items:baseline !important}.bsui .align-items-sm-stretch{align-items:stretch !important}.bsui .align-content-sm-start{align-content:flex-start !important}.bsui .align-content-sm-end{align-content:flex-end !important}.bsui .align-content-sm-center{align-content:center !important}.bsui .align-content-sm-between{align-content:space-between !important}.bsui .align-content-sm-around{align-content:space-around !important}.bsui .align-content-sm-stretch{align-content:stretch !important}.bsui .align-self-sm-auto{align-self:auto !important}.bsui .align-self-sm-start{align-self:flex-start !important}.bsui .align-self-sm-end{align-self:flex-end !important}.bsui .align-self-sm-center{align-self:center !important}.bsui .align-self-sm-baseline{align-self:baseline !important}.bsui .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.bsui .flex-md-row{flex-direction:row !important}.bsui .flex-md-column{flex-direction:column !important}.bsui .flex-md-row-reverse{flex-direction:row-reverse !important}.bsui .flex-md-column-reverse{flex-direction:column-reverse !important}.bsui .flex-md-wrap{flex-wrap:wrap !important}.bsui .flex-md-nowrap{flex-wrap:nowrap !important}.bsui .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-md-fill{flex:1 1 auto !important}.bsui .flex-md-grow-0{flex-grow:0 !important}.bsui .flex-md-grow-1{flex-grow:1 !important}.bsui .flex-md-shrink-0{flex-shrink:0 !important}.bsui .flex-md-shrink-1{flex-shrink:1 !important}.bsui .justify-content-md-start{justify-content:flex-start !important}.bsui .justify-content-md-end{justify-content:flex-end !important}.bsui .justify-content-md-center{justify-content:center !important}.bsui .justify-content-md-between{justify-content:space-between !important}.bsui .justify-content-md-around{justify-content:space-around !important}.bsui .align-items-md-start{align-items:flex-start !important}.bsui .align-items-md-end{align-items:flex-end !important}.bsui .align-items-md-center{align-items:center !important}.bsui .align-items-md-baseline{align-items:baseline !important}.bsui .align-items-md-stretch{align-items:stretch !important}.bsui .align-content-md-start{align-content:flex-start !important}.bsui .align-content-md-end{align-content:flex-end !important}.bsui .align-content-md-center{align-content:center !important}.bsui .align-content-md-between{align-content:space-between !important}.bsui .align-content-md-around{align-content:space-around !important}.bsui .align-content-md-stretch{align-content:stretch !important}.bsui .align-self-md-auto{align-self:auto !important}.bsui .align-self-md-start{align-self:flex-start !important}.bsui .align-self-md-end{align-self:flex-end !important}.bsui .align-self-md-center{align-self:center !important}.bsui .align-self-md-baseline{align-self:baseline !important}.bsui .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.bsui .flex-lg-row{flex-direction:row !important}.bsui .flex-lg-column{flex-direction:column !important}.bsui .flex-lg-row-reverse{flex-direction:row-reverse !important}.bsui .flex-lg-column-reverse{flex-direction:column-reverse !important}.bsui .flex-lg-wrap{flex-wrap:wrap !important}.bsui .flex-lg-nowrap{flex-wrap:nowrap !important}.bsui .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-lg-fill{flex:1 1 auto !important}.bsui .flex-lg-grow-0{flex-grow:0 !important}.bsui .flex-lg-grow-1{flex-grow:1 !important}.bsui .flex-lg-shrink-0{flex-shrink:0 !important}.bsui .flex-lg-shrink-1{flex-shrink:1 !important}.bsui .justify-content-lg-start{justify-content:flex-start !important}.bsui .justify-content-lg-end{justify-content:flex-end !important}.bsui .justify-content-lg-center{justify-content:center !important}.bsui .justify-content-lg-between{justify-content:space-between !important}.bsui .justify-content-lg-around{justify-content:space-around !important}.bsui .align-items-lg-start{align-items:flex-start !important}.bsui .align-items-lg-end{align-items:flex-end !important}.bsui .align-items-lg-center{align-items:center !important}.bsui .align-items-lg-baseline{align-items:baseline !important}.bsui .align-items-lg-stretch{align-items:stretch !important}.bsui .align-content-lg-start{align-content:flex-start !important}.bsui .align-content-lg-end{align-content:flex-end !important}.bsui .align-content-lg-center{align-content:center !important}.bsui .align-content-lg-between{align-content:space-between !important}.bsui .align-content-lg-around{align-content:space-around !important}.bsui .align-content-lg-stretch{align-content:stretch !important}.bsui .align-self-lg-auto{align-self:auto !important}.bsui .align-self-lg-start{align-self:flex-start !important}.bsui .align-self-lg-end{align-self:flex-end !important}.bsui .align-self-lg-center{align-self:center !important}.bsui .align-self-lg-baseline{align-self:baseline !important}.bsui .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.bsui .flex-xl-row{flex-direction:row !important}.bsui .flex-xl-column{flex-direction:column !important}.bsui .flex-xl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xl-wrap{flex-wrap:wrap !important}.bsui .flex-xl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xl-fill{flex:1 1 auto !important}.bsui .flex-xl-grow-0{flex-grow:0 !important}.bsui .flex-xl-grow-1{flex-grow:1 !important}.bsui .flex-xl-shrink-0{flex-shrink:0 !important}.bsui .flex-xl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xl-start{justify-content:flex-start !important}.bsui .justify-content-xl-end{justify-content:flex-end !important}.bsui .justify-content-xl-center{justify-content:center !important}.bsui .justify-content-xl-between{justify-content:space-between !important}.bsui .justify-content-xl-around{justify-content:space-around !important}.bsui .align-items-xl-start{align-items:flex-start !important}.bsui .align-items-xl-end{align-items:flex-end !important}.bsui .align-items-xl-center{align-items:center !important}.bsui .align-items-xl-baseline{align-items:baseline !important}.bsui .align-items-xl-stretch{align-items:stretch !important}.bsui .align-content-xl-start{align-content:flex-start !important}.bsui .align-content-xl-end{align-content:flex-end !important}.bsui .align-content-xl-center{align-content:center !important}.bsui .align-content-xl-between{align-content:space-between !important}.bsui .align-content-xl-around{align-content:space-around !important}.bsui .align-content-xl-stretch{align-content:stretch !important}.bsui .align-self-xl-auto{align-self:auto !important}.bsui .align-self-xl-start{align-self:flex-start !important}.bsui .align-self-xl-end{align-self:flex-end !important}.bsui .align-self-xl-center{align-self:center !important}.bsui .align-self-xl-baseline{align-self:baseline !important}.bsui .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.bsui .flex-xxl-row{flex-direction:row !important}.bsui .flex-xxl-column{flex-direction:column !important}.bsui .flex-xxl-row-reverse{flex-direction:row-reverse !important}.bsui .flex-xxl-column-reverse{flex-direction:column-reverse !important}.bsui .flex-xxl-wrap{flex-wrap:wrap !important}.bsui .flex-xxl-nowrap{flex-wrap:nowrap !important}.bsui .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.bsui .flex-xxl-fill{flex:1 1 auto !important}.bsui .flex-xxl-grow-0{flex-grow:0 !important}.bsui .flex-xxl-grow-1{flex-grow:1 !important}.bsui .flex-xxl-shrink-0{flex-shrink:0 !important}.bsui .flex-xxl-shrink-1{flex-shrink:1 !important}.bsui .justify-content-xxl-start{justify-content:flex-start !important}.bsui .justify-content-xxl-end{justify-content:flex-end !important}.bsui .justify-content-xxl-center{justify-content:center !important}.bsui .justify-content-xxl-between{justify-content:space-between !important}.bsui .justify-content-xxl-around{justify-content:space-around !important}.bsui .align-items-xxl-start{align-items:flex-start !important}.bsui .align-items-xxl-end{align-items:flex-end !important}.bsui .align-items-xxl-center{align-items:center !important}.bsui .align-items-xxl-baseline{align-items:baseline !important}.bsui .align-items-xxl-stretch{align-items:stretch !important}.bsui .align-content-xxl-start{align-content:flex-start !important}.bsui .align-content-xxl-end{align-content:flex-end !important}.bsui .align-content-xxl-center{align-content:center !important}.bsui .align-content-xxl-between{align-content:space-between !important}.bsui .align-content-xxl-around{align-content:space-around !important}.bsui .align-content-xxl-stretch{align-content:stretch !important}.bsui .align-self-xxl-auto{align-self:auto !important}.bsui .align-self-xxl-start{align-self:flex-start !important}.bsui .align-self-xxl-end{align-self:flex-end !important}.bsui .align-self-xxl-center{align-self:center !important}.bsui .align-self-xxl-baseline{align-self:baseline !important}.bsui .align-self-xxl-stretch{align-self:stretch !important}}.bsui .float-left{float:left !important}.bsui .float-right{float:right !important}.bsui .float-none{float:none !important}@media (min-width: 576px){.bsui .float-sm-left{float:left !important}.bsui .float-sm-right{float:right !important}.bsui .float-sm-none{float:none !important}}@media (min-width: 768px){.bsui .float-md-left{float:left !important}.bsui .float-md-right{float:right !important}.bsui .float-md-none{float:none !important}}@media (min-width: 992px){.bsui .float-lg-left{float:left !important}.bsui .float-lg-right{float:right !important}.bsui .float-lg-none{float:none !important}}@media (min-width: 1200px){.bsui .float-xl-left{float:left !important}.bsui .float-xl-right{float:right !important}.bsui .float-xl-none{float:none !important}}@media (min-width: 1400px){.bsui .float-xxl-left{float:left !important}.bsui .float-xxl-right{float:right !important}.bsui .float-xxl-none{float:none !important}}.bsui .user-select-all{user-select:all !important}.bsui .user-select-auto{user-select:auto !important}.bsui .user-select-none{user-select:none !important}.bsui .overflow-auto{overflow:auto !important}.bsui .overflow-hidden{overflow:hidden !important}.bsui .position-static{position:static !important}.bsui .position-relative{position:relative !important}.bsui .position-absolute{position:absolute !important}.bsui .position-fixed{position:fixed !important}.bsui .position-sticky{position:sticky !important}.bsui .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.bsui .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.bsui .sticky-top{position:sticky;top:0;z-index:1020}}.bsui .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.bsui .sr-only-focusable:active,.bsui .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.bsui .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.bsui .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.bsui .shadow-none{box-shadow:none !important}.bsui .w-25{width:25% !important}.bsui .w-50{width:50% !important}.bsui .w-75{width:75% !important}.bsui .w-100{width:100% !important}.bsui .w-auto{width:auto !important}.bsui .h-25{height:25% !important}.bsui .h-50{height:50% !important}.bsui .h-75{height:75% !important}.bsui .h-100{height:100% !important}.bsui .h-auto{height:auto !important}.bsui .mw-100{max-width:100% !important}.bsui .mh-100{max-height:100% !important}.bsui .min-vw-100{min-width:100vw !important}.bsui .min-vh-100{min-height:100vh !important}.bsui .vw-100{width:100vw !important}.bsui .vh-100{height:100vh !important}.bsui .m-0{margin:0 !important}.bsui .mt-0,.bsui .my-0{margin-top:0 !important}.bsui .mr-0,.bsui .mx-0{margin-right:0 !important}.bsui .mb-0,.bsui .my-0{margin-bottom:0 !important}.bsui .ml-0,.bsui .mx-0{margin-left:0 !important}.bsui .m-1{margin:.25rem !important}.bsui .mt-1,.bsui .my-1{margin-top:.25rem !important}.bsui .mr-1,.bsui .mx-1{margin-right:.25rem !important}.bsui .mb-1,.bsui .my-1{margin-bottom:.25rem !important}.bsui .ml-1,.bsui .mx-1{margin-left:.25rem !important}.bsui .m-2{margin:.5rem !important}.bsui .mt-2,.bsui .my-2{margin-top:.5rem !important}.bsui .mr-2,.bsui .mx-2{margin-right:.5rem !important}.bsui .mb-2,.bsui .my-2{margin-bottom:.5rem !important}.bsui .ml-2,.bsui .mx-2{margin-left:.5rem !important}.bsui .m-3{margin:1rem !important}.bsui .mt-3,.bsui .my-3{margin-top:1rem !important}.bsui .mr-3,.bsui .mx-3{margin-right:1rem !important}.bsui .mb-3,.bsui .my-3{margin-bottom:1rem !important}.bsui .ml-3,.bsui .mx-3{margin-left:1rem !important}.bsui .m-4{margin:1.5rem !important}.bsui .mt-4,.bsui .my-4{margin-top:1.5rem !important}.bsui .mr-4,.bsui .mx-4{margin-right:1.5rem !important}.bsui .mb-4,.bsui .my-4{margin-bottom:1.5rem !important}.bsui .ml-4,.bsui .mx-4{margin-left:1.5rem !important}.bsui .m-5{margin:3rem !important}.bsui .mt-5,.bsui .my-5{margin-top:3rem !important}.bsui .mr-5,.bsui .mx-5{margin-right:3rem !important}.bsui .mb-5,.bsui .my-5{margin-bottom:3rem !important}.bsui .ml-5,.bsui .mx-5{margin-left:3rem !important}.bsui .m-6{margin:4rem !important}.bsui .mt-6,.bsui .my-6{margin-top:4rem !important}.bsui .mr-6,.bsui .mx-6{margin-right:4rem !important}.bsui .mb-6,.bsui .my-6{margin-bottom:4rem !important}.bsui .ml-6,.bsui .mx-6{margin-left:4rem !important}.bsui .m-7{margin:6rem !important}.bsui .mt-7,.bsui .my-7{margin-top:6rem !important}.bsui .mr-7,.bsui .mx-7{margin-right:6rem !important}.bsui .mb-7,.bsui .my-7{margin-bottom:6rem !important}.bsui .ml-7,.bsui .mx-7{margin-left:6rem !important}.bsui .m-8{margin:8rem !important}.bsui .mt-8,.bsui .my-8{margin-top:8rem !important}.bsui .mr-8,.bsui .mx-8{margin-right:8rem !important}.bsui .mb-8,.bsui .my-8{margin-bottom:8rem !important}.bsui .ml-8,.bsui .mx-8{margin-left:8rem !important}.bsui .m-9{margin:10rem !important}.bsui .mt-9,.bsui .my-9{margin-top:10rem !important}.bsui .mr-9,.bsui .mx-9{margin-right:10rem !important}.bsui .mb-9,.bsui .my-9{margin-bottom:10rem !important}.bsui .ml-9,.bsui .mx-9{margin-left:10rem !important}.bsui .m-10{margin:12rem !important}.bsui .mt-10,.bsui .my-10{margin-top:12rem !important}.bsui .mr-10,.bsui .mx-10{margin-right:12rem !important}.bsui .mb-10,.bsui .my-10{margin-bottom:12rem !important}.bsui .ml-10,.bsui .mx-10{margin-left:12rem !important}.bsui .m-11{margin:14rem !important}.bsui .mt-11,.bsui .my-11{margin-top:14rem !important}.bsui .mr-11,.bsui .mx-11{margin-right:14rem !important}.bsui .mb-11,.bsui .my-11{margin-bottom:14rem !important}.bsui .ml-11,.bsui .mx-11{margin-left:14rem !important}.bsui .m-12{margin:16rem !important}.bsui .mt-12,.bsui .my-12{margin-top:16rem !important}.bsui .mr-12,.bsui .mx-12{margin-right:16rem !important}.bsui .mb-12,.bsui .my-12{margin-bottom:16rem !important}.bsui .ml-12,.bsui .mx-12{margin-left:16rem !important}.bsui .p-0{padding:0 !important}.bsui .pt-0,.bsui .py-0{padding-top:0 !important}.bsui .pr-0,.bsui .px-0{padding-right:0 !important}.bsui .pb-0,.bsui .py-0{padding-bottom:0 !important}.bsui .pl-0,.bsui .px-0{padding-left:0 !important}.bsui .p-1{padding:.25rem !important}.bsui .pt-1,.bsui .py-1{padding-top:.25rem !important}.bsui .pr-1,.bsui .px-1{padding-right:.25rem !important}.bsui .pb-1,.bsui .py-1{padding-bottom:.25rem !important}.bsui .pl-1,.bsui .px-1{padding-left:.25rem !important}.bsui .p-2{padding:.5rem !important}.bsui .pt-2,.bsui .py-2{padding-top:.5rem !important}.bsui .pr-2,.bsui .px-2{padding-right:.5rem !important}.bsui .pb-2,.bsui .py-2{padding-bottom:.5rem !important}.bsui .pl-2,.bsui .px-2{padding-left:.5rem !important}.bsui .p-3{padding:1rem !important}.bsui .pt-3,.bsui .py-3{padding-top:1rem !important}.bsui .pr-3,.bsui .px-3{padding-right:1rem !important}.bsui .pb-3,.bsui .py-3{padding-bottom:1rem !important}.bsui .pl-3,.bsui .px-3{padding-left:1rem !important}.bsui .p-4{padding:1.5rem !important}.bsui .pt-4,.bsui .py-4{padding-top:1.5rem !important}.bsui .pr-4,.bsui .px-4{padding-right:1.5rem !important}.bsui .pb-4,.bsui .py-4{padding-bottom:1.5rem !important}.bsui .pl-4,.bsui .px-4{padding-left:1.5rem !important}.bsui .p-5{padding:3rem !important}.bsui .pt-5,.bsui .py-5{padding-top:3rem !important}.bsui .pr-5,.bsui .px-5{padding-right:3rem !important}.bsui .pb-5,.bsui .py-5{padding-bottom:3rem !important}.bsui .pl-5,.bsui .px-5{padding-left:3rem !important}.bsui .p-6{padding:4rem !important}.bsui .pt-6,.bsui .py-6{padding-top:4rem !important}.bsui .pr-6,.bsui .px-6{padding-right:4rem !important}.bsui .pb-6,.bsui .py-6{padding-bottom:4rem !important}.bsui .pl-6,.bsui .px-6{padding-left:4rem !important}.bsui .p-7{padding:6rem !important}.bsui .pt-7,.bsui .py-7{padding-top:6rem !important}.bsui .pr-7,.bsui .px-7{padding-right:6rem !important}.bsui .pb-7,.bsui .py-7{padding-bottom:6rem !important}.bsui .pl-7,.bsui .px-7{padding-left:6rem !important}.bsui .p-8{padding:8rem !important}.bsui .pt-8,.bsui .py-8{padding-top:8rem !important}.bsui .pr-8,.bsui .px-8{padding-right:8rem !important}.bsui .pb-8,.bsui .py-8{padding-bottom:8rem !important}.bsui .pl-8,.bsui .px-8{padding-left:8rem !important}.bsui .p-9{padding:10rem !important}.bsui .pt-9,.bsui .py-9{padding-top:10rem !important}.bsui .pr-9,.bsui .px-9{padding-right:10rem !important}.bsui .pb-9,.bsui .py-9{padding-bottom:10rem !important}.bsui .pl-9,.bsui .px-9{padding-left:10rem !important}.bsui .p-10{padding:12rem !important}.bsui .pt-10,.bsui .py-10{padding-top:12rem !important}.bsui .pr-10,.bsui .px-10{padding-right:12rem !important}.bsui .pb-10,.bsui .py-10{padding-bottom:12rem !important}.bsui .pl-10,.bsui .px-10{padding-left:12rem !important}.bsui .p-11{padding:14rem !important}.bsui .pt-11,.bsui .py-11{padding-top:14rem !important}.bsui .pr-11,.bsui .px-11{padding-right:14rem !important}.bsui .pb-11,.bsui .py-11{padding-bottom:14rem !important}.bsui .pl-11,.bsui .px-11{padding-left:14rem !important}.bsui .p-12{padding:16rem !important}.bsui .pt-12,.bsui .py-12{padding-top:16rem !important}.bsui .pr-12,.bsui .px-12{padding-right:16rem !important}.bsui .pb-12,.bsui .py-12{padding-bottom:16rem !important}.bsui .pl-12,.bsui .px-12{padding-left:16rem !important}.bsui .m-n1{margin:-.25rem !important}.bsui .mt-n1,.bsui .my-n1{margin-top:-.25rem !important}.bsui .mr-n1,.bsui .mx-n1{margin-right:-.25rem !important}.bsui .mb-n1,.bsui .my-n1{margin-bottom:-.25rem !important}.bsui .ml-n1,.bsui .mx-n1{margin-left:-.25rem !important}.bsui .m-n2{margin:-.5rem !important}.bsui .mt-n2,.bsui .my-n2{margin-top:-.5rem !important}.bsui .mr-n2,.bsui .mx-n2{margin-right:-.5rem !important}.bsui .mb-n2,.bsui .my-n2{margin-bottom:-.5rem !important}.bsui .ml-n2,.bsui .mx-n2{margin-left:-.5rem !important}.bsui .m-n3{margin:-1rem !important}.bsui .mt-n3,.bsui .my-n3{margin-top:-1rem !important}.bsui .mr-n3,.bsui .mx-n3{margin-right:-1rem !important}.bsui .mb-n3,.bsui .my-n3{margin-bottom:-1rem !important}.bsui .ml-n3,.bsui .mx-n3{margin-left:-1rem !important}.bsui .m-n4{margin:-1.5rem !important}.bsui .mt-n4,.bsui .my-n4{margin-top:-1.5rem !important}.bsui .mr-n4,.bsui .mx-n4{margin-right:-1.5rem !important}.bsui .mb-n4,.bsui .my-n4{margin-bottom:-1.5rem !important}.bsui .ml-n4,.bsui .mx-n4{margin-left:-1.5rem !important}.bsui .m-n5{margin:-3rem !important}.bsui .mt-n5,.bsui .my-n5{margin-top:-3rem !important}.bsui .mr-n5,.bsui .mx-n5{margin-right:-3rem !important}.bsui .mb-n5,.bsui .my-n5{margin-bottom:-3rem !important}.bsui .ml-n5,.bsui .mx-n5{margin-left:-3rem !important}.bsui .m-n6{margin:-4rem !important}.bsui .mt-n6,.bsui .my-n6{margin-top:-4rem !important}.bsui .mr-n6,.bsui .mx-n6{margin-right:-4rem !important}.bsui .mb-n6,.bsui .my-n6{margin-bottom:-4rem !important}.bsui .ml-n6,.bsui .mx-n6{margin-left:-4rem !important}.bsui .m-n7{margin:-6rem !important}.bsui .mt-n7,.bsui .my-n7{margin-top:-6rem !important}.bsui .mr-n7,.bsui .mx-n7{margin-right:-6rem !important}.bsui .mb-n7,.bsui .my-n7{margin-bottom:-6rem !important}.bsui .ml-n7,.bsui .mx-n7{margin-left:-6rem !important}.bsui .m-n8{margin:-8rem !important}.bsui .mt-n8,.bsui .my-n8{margin-top:-8rem !important}.bsui .mr-n8,.bsui .mx-n8{margin-right:-8rem !important}.bsui .mb-n8,.bsui .my-n8{margin-bottom:-8rem !important}.bsui .ml-n8,.bsui .mx-n8{margin-left:-8rem !important}.bsui .m-n9{margin:-10rem !important}.bsui .mt-n9,.bsui .my-n9{margin-top:-10rem !important}.bsui .mr-n9,.bsui .mx-n9{margin-right:-10rem !important}.bsui .mb-n9,.bsui .my-n9{margin-bottom:-10rem !important}.bsui .ml-n9,.bsui .mx-n9{margin-left:-10rem !important}.bsui .m-n10{margin:-12rem !important}.bsui .mt-n10,.bsui .my-n10{margin-top:-12rem !important}.bsui .mr-n10,.bsui .mx-n10{margin-right:-12rem !important}.bsui .mb-n10,.bsui .my-n10{margin-bottom:-12rem !important}.bsui .ml-n10,.bsui .mx-n10{margin-left:-12rem !important}.bsui .m-n11{margin:-14rem !important}.bsui .mt-n11,.bsui .my-n11{margin-top:-14rem !important}.bsui .mr-n11,.bsui .mx-n11{margin-right:-14rem !important}.bsui .mb-n11,.bsui .my-n11{margin-bottom:-14rem !important}.bsui .ml-n11,.bsui .mx-n11{margin-left:-14rem !important}.bsui .m-n12{margin:-16rem !important}.bsui .mt-n12,.bsui .my-n12{margin-top:-16rem !important}.bsui .mr-n12,.bsui .mx-n12{margin-right:-16rem !important}.bsui .mb-n12,.bsui .my-n12{margin-bottom:-16rem !important}.bsui .ml-n12,.bsui .mx-n12{margin-left:-16rem !important}.bsui .m-auto{margin:auto !important}.bsui .mt-auto,.bsui .my-auto{margin-top:auto !important}.bsui .mr-auto,.bsui .mx-auto{margin-right:auto !important}.bsui .mb-auto,.bsui .my-auto{margin-bottom:auto !important}.bsui .ml-auto,.bsui .mx-auto{margin-left:auto !important}@media (min-width: 576px){.bsui .m-sm-0{margin:0 !important}.bsui .mt-sm-0,.bsui .my-sm-0{margin-top:0 !important}.bsui .mr-sm-0,.bsui .mx-sm-0{margin-right:0 !important}.bsui .mb-sm-0,.bsui .my-sm-0{margin-bottom:0 !important}.bsui .ml-sm-0,.bsui .mx-sm-0{margin-left:0 !important}.bsui .m-sm-1{margin:.25rem !important}.bsui .mt-sm-1,.bsui .my-sm-1{margin-top:.25rem !important}.bsui .mr-sm-1,.bsui .mx-sm-1{margin-right:.25rem !important}.bsui .mb-sm-1,.bsui .my-sm-1{margin-bottom:.25rem !important}.bsui .ml-sm-1,.bsui .mx-sm-1{margin-left:.25rem !important}.bsui .m-sm-2{margin:.5rem !important}.bsui .mt-sm-2,.bsui .my-sm-2{margin-top:.5rem !important}.bsui .mr-sm-2,.bsui .mx-sm-2{margin-right:.5rem !important}.bsui .mb-sm-2,.bsui .my-sm-2{margin-bottom:.5rem !important}.bsui .ml-sm-2,.bsui .mx-sm-2{margin-left:.5rem !important}.bsui .m-sm-3{margin:1rem !important}.bsui .mt-sm-3,.bsui .my-sm-3{margin-top:1rem !important}.bsui .mr-sm-3,.bsui .mx-sm-3{margin-right:1rem !important}.bsui .mb-sm-3,.bsui .my-sm-3{margin-bottom:1rem !important}.bsui .ml-sm-3,.bsui .mx-sm-3{margin-left:1rem !important}.bsui .m-sm-4{margin:1.5rem !important}.bsui .mt-sm-4,.bsui .my-sm-4{margin-top:1.5rem !important}.bsui .mr-sm-4,.bsui .mx-sm-4{margin-right:1.5rem !important}.bsui .mb-sm-4,.bsui .my-sm-4{margin-bottom:1.5rem !important}.bsui .ml-sm-4,.bsui .mx-sm-4{margin-left:1.5rem !important}.bsui .m-sm-5{margin:3rem !important}.bsui .mt-sm-5,.bsui .my-sm-5{margin-top:3rem !important}.bsui .mr-sm-5,.bsui .mx-sm-5{margin-right:3rem !important}.bsui .mb-sm-5,.bsui .my-sm-5{margin-bottom:3rem !important}.bsui .ml-sm-5,.bsui .mx-sm-5{margin-left:3rem !important}.bsui .m-sm-6{margin:4rem !important}.bsui .mt-sm-6,.bsui .my-sm-6{margin-top:4rem !important}.bsui .mr-sm-6,.bsui .mx-sm-6{margin-right:4rem !important}.bsui .mb-sm-6,.bsui .my-sm-6{margin-bottom:4rem !important}.bsui .ml-sm-6,.bsui .mx-sm-6{margin-left:4rem !important}.bsui .m-sm-7{margin:6rem !important}.bsui .mt-sm-7,.bsui .my-sm-7{margin-top:6rem !important}.bsui .mr-sm-7,.bsui .mx-sm-7{margin-right:6rem !important}.bsui .mb-sm-7,.bsui .my-sm-7{margin-bottom:6rem !important}.bsui .ml-sm-7,.bsui .mx-sm-7{margin-left:6rem !important}.bsui .m-sm-8{margin:8rem !important}.bsui .mt-sm-8,.bsui .my-sm-8{margin-top:8rem !important}.bsui .mr-sm-8,.bsui .mx-sm-8{margin-right:8rem !important}.bsui .mb-sm-8,.bsui .my-sm-8{margin-bottom:8rem !important}.bsui .ml-sm-8,.bsui .mx-sm-8{margin-left:8rem !important}.bsui .m-sm-9{margin:10rem !important}.bsui .mt-sm-9,.bsui .my-sm-9{margin-top:10rem !important}.bsui .mr-sm-9,.bsui .mx-sm-9{margin-right:10rem !important}.bsui .mb-sm-9,.bsui .my-sm-9{margin-bottom:10rem !important}.bsui .ml-sm-9,.bsui .mx-sm-9{margin-left:10rem !important}.bsui .m-sm-10{margin:12rem !important}.bsui .mt-sm-10,.bsui .my-sm-10{margin-top:12rem !important}.bsui .mr-sm-10,.bsui .mx-sm-10{margin-right:12rem !important}.bsui .mb-sm-10,.bsui .my-sm-10{margin-bottom:12rem !important}.bsui .ml-sm-10,.bsui .mx-sm-10{margin-left:12rem !important}.bsui .m-sm-11{margin:14rem !important}.bsui .mt-sm-11,.bsui .my-sm-11{margin-top:14rem !important}.bsui .mr-sm-11,.bsui .mx-sm-11{margin-right:14rem !important}.bsui .mb-sm-11,.bsui .my-sm-11{margin-bottom:14rem !important}.bsui .ml-sm-11,.bsui .mx-sm-11{margin-left:14rem !important}.bsui .m-sm-12{margin:16rem !important}.bsui .mt-sm-12,.bsui .my-sm-12{margin-top:16rem !important}.bsui .mr-sm-12,.bsui .mx-sm-12{margin-right:16rem !important}.bsui .mb-sm-12,.bsui .my-sm-12{margin-bottom:16rem !important}.bsui .ml-sm-12,.bsui .mx-sm-12{margin-left:16rem !important}.bsui .p-sm-0{padding:0 !important}.bsui .pt-sm-0,.bsui .py-sm-0{padding-top:0 !important}.bsui .pr-sm-0,.bsui .px-sm-0{padding-right:0 !important}.bsui .pb-sm-0,.bsui .py-sm-0{padding-bottom:0 !important}.bsui .pl-sm-0,.bsui .px-sm-0{padding-left:0 !important}.bsui .p-sm-1{padding:.25rem !important}.bsui .pt-sm-1,.bsui .py-sm-1{padding-top:.25rem !important}.bsui .pr-sm-1,.bsui .px-sm-1{padding-right:.25rem !important}.bsui .pb-sm-1,.bsui .py-sm-1{padding-bottom:.25rem !important}.bsui .pl-sm-1,.bsui .px-sm-1{padding-left:.25rem !important}.bsui .p-sm-2{padding:.5rem !important}.bsui .pt-sm-2,.bsui .py-sm-2{padding-top:.5rem !important}.bsui .pr-sm-2,.bsui .px-sm-2{padding-right:.5rem !important}.bsui .pb-sm-2,.bsui .py-sm-2{padding-bottom:.5rem !important}.bsui .pl-sm-2,.bsui .px-sm-2{padding-left:.5rem !important}.bsui .p-sm-3{padding:1rem !important}.bsui .pt-sm-3,.bsui .py-sm-3{padding-top:1rem !important}.bsui .pr-sm-3,.bsui .px-sm-3{padding-right:1rem !important}.bsui .pb-sm-3,.bsui .py-sm-3{padding-bottom:1rem !important}.bsui .pl-sm-3,.bsui .px-sm-3{padding-left:1rem !important}.bsui .p-sm-4{padding:1.5rem !important}.bsui .pt-sm-4,.bsui .py-sm-4{padding-top:1.5rem !important}.bsui .pr-sm-4,.bsui .px-sm-4{padding-right:1.5rem !important}.bsui .pb-sm-4,.bsui .py-sm-4{padding-bottom:1.5rem !important}.bsui .pl-sm-4,.bsui .px-sm-4{padding-left:1.5rem !important}.bsui .p-sm-5{padding:3rem !important}.bsui .pt-sm-5,.bsui .py-sm-5{padding-top:3rem !important}.bsui .pr-sm-5,.bsui .px-sm-5{padding-right:3rem !important}.bsui .pb-sm-5,.bsui .py-sm-5{padding-bottom:3rem !important}.bsui .pl-sm-5,.bsui .px-sm-5{padding-left:3rem !important}.bsui .p-sm-6{padding:4rem !important}.bsui .pt-sm-6,.bsui .py-sm-6{padding-top:4rem !important}.bsui .pr-sm-6,.bsui .px-sm-6{padding-right:4rem !important}.bsui .pb-sm-6,.bsui .py-sm-6{padding-bottom:4rem !important}.bsui .pl-sm-6,.bsui .px-sm-6{padding-left:4rem !important}.bsui .p-sm-7{padding:6rem !important}.bsui .pt-sm-7,.bsui .py-sm-7{padding-top:6rem !important}.bsui .pr-sm-7,.bsui .px-sm-7{padding-right:6rem !important}.bsui .pb-sm-7,.bsui .py-sm-7{padding-bottom:6rem !important}.bsui .pl-sm-7,.bsui .px-sm-7{padding-left:6rem !important}.bsui .p-sm-8{padding:8rem !important}.bsui .pt-sm-8,.bsui .py-sm-8{padding-top:8rem !important}.bsui .pr-sm-8,.bsui .px-sm-8{padding-right:8rem !important}.bsui .pb-sm-8,.bsui .py-sm-8{padding-bottom:8rem !important}.bsui .pl-sm-8,.bsui .px-sm-8{padding-left:8rem !important}.bsui .p-sm-9{padding:10rem !important}.bsui .pt-sm-9,.bsui .py-sm-9{padding-top:10rem !important}.bsui .pr-sm-9,.bsui .px-sm-9{padding-right:10rem !important}.bsui .pb-sm-9,.bsui .py-sm-9{padding-bottom:10rem !important}.bsui .pl-sm-9,.bsui .px-sm-9{padding-left:10rem !important}.bsui .p-sm-10{padding:12rem !important}.bsui .pt-sm-10,.bsui .py-sm-10{padding-top:12rem !important}.bsui .pr-sm-10,.bsui .px-sm-10{padding-right:12rem !important}.bsui .pb-sm-10,.bsui .py-sm-10{padding-bottom:12rem !important}.bsui .pl-sm-10,.bsui .px-sm-10{padding-left:12rem !important}.bsui .p-sm-11{padding:14rem !important}.bsui .pt-sm-11,.bsui .py-sm-11{padding-top:14rem !important}.bsui .pr-sm-11,.bsui .px-sm-11{padding-right:14rem !important}.bsui .pb-sm-11,.bsui .py-sm-11{padding-bottom:14rem !important}.bsui .pl-sm-11,.bsui .px-sm-11{padding-left:14rem !important}.bsui .p-sm-12{padding:16rem !important}.bsui .pt-sm-12,.bsui .py-sm-12{padding-top:16rem !important}.bsui .pr-sm-12,.bsui .px-sm-12{padding-right:16rem !important}.bsui .pb-sm-12,.bsui .py-sm-12{padding-bottom:16rem !important}.bsui .pl-sm-12,.bsui .px-sm-12{padding-left:16rem !important}.bsui .m-sm-n1{margin:-.25rem !important}.bsui .mt-sm-n1,.bsui .my-sm-n1{margin-top:-.25rem !important}.bsui .mr-sm-n1,.bsui .mx-sm-n1{margin-right:-.25rem !important}.bsui .mb-sm-n1,.bsui .my-sm-n1{margin-bottom:-.25rem !important}.bsui .ml-sm-n1,.bsui .mx-sm-n1{margin-left:-.25rem !important}.bsui .m-sm-n2{margin:-.5rem !important}.bsui .mt-sm-n2,.bsui .my-sm-n2{margin-top:-.5rem !important}.bsui .mr-sm-n2,.bsui .mx-sm-n2{margin-right:-.5rem !important}.bsui .mb-sm-n2,.bsui .my-sm-n2{margin-bottom:-.5rem !important}.bsui .ml-sm-n2,.bsui .mx-sm-n2{margin-left:-.5rem !important}.bsui .m-sm-n3{margin:-1rem !important}.bsui .mt-sm-n3,.bsui .my-sm-n3{margin-top:-1rem !important}.bsui .mr-sm-n3,.bsui .mx-sm-n3{margin-right:-1rem !important}.bsui .mb-sm-n3,.bsui .my-sm-n3{margin-bottom:-1rem !important}.bsui .ml-sm-n3,.bsui .mx-sm-n3{margin-left:-1rem !important}.bsui .m-sm-n4{margin:-1.5rem !important}.bsui .mt-sm-n4,.bsui .my-sm-n4{margin-top:-1.5rem !important}.bsui .mr-sm-n4,.bsui .mx-sm-n4{margin-right:-1.5rem !important}.bsui .mb-sm-n4,.bsui .my-sm-n4{margin-bottom:-1.5rem !important}.bsui .ml-sm-n4,.bsui .mx-sm-n4{margin-left:-1.5rem !important}.bsui .m-sm-n5{margin:-3rem !important}.bsui .mt-sm-n5,.bsui .my-sm-n5{margin-top:-3rem !important}.bsui .mr-sm-n5,.bsui .mx-sm-n5{margin-right:-3rem !important}.bsui .mb-sm-n5,.bsui .my-sm-n5{margin-bottom:-3rem !important}.bsui .ml-sm-n5,.bsui .mx-sm-n5{margin-left:-3rem !important}.bsui .m-sm-n6{margin:-4rem !important}.bsui .mt-sm-n6,.bsui .my-sm-n6{margin-top:-4rem !important}.bsui .mr-sm-n6,.bsui .mx-sm-n6{margin-right:-4rem !important}.bsui .mb-sm-n6,.bsui .my-sm-n6{margin-bottom:-4rem !important}.bsui .ml-sm-n6,.bsui .mx-sm-n6{margin-left:-4rem !important}.bsui .m-sm-n7{margin:-6rem !important}.bsui .mt-sm-n7,.bsui .my-sm-n7{margin-top:-6rem !important}.bsui .mr-sm-n7,.bsui .mx-sm-n7{margin-right:-6rem !important}.bsui .mb-sm-n7,.bsui .my-sm-n7{margin-bottom:-6rem !important}.bsui .ml-sm-n7,.bsui .mx-sm-n7{margin-left:-6rem !important}.bsui .m-sm-n8{margin:-8rem !important}.bsui .mt-sm-n8,.bsui .my-sm-n8{margin-top:-8rem !important}.bsui .mr-sm-n8,.bsui .mx-sm-n8{margin-right:-8rem !important}.bsui .mb-sm-n8,.bsui .my-sm-n8{margin-bottom:-8rem !important}.bsui .ml-sm-n8,.bsui .mx-sm-n8{margin-left:-8rem !important}.bsui .m-sm-n9{margin:-10rem !important}.bsui .mt-sm-n9,.bsui .my-sm-n9{margin-top:-10rem !important}.bsui .mr-sm-n9,.bsui .mx-sm-n9{margin-right:-10rem !important}.bsui .mb-sm-n9,.bsui .my-sm-n9{margin-bottom:-10rem !important}.bsui .ml-sm-n9,.bsui .mx-sm-n9{margin-left:-10rem !important}.bsui .m-sm-n10{margin:-12rem !important}.bsui .mt-sm-n10,.bsui .my-sm-n10{margin-top:-12rem !important}.bsui .mr-sm-n10,.bsui .mx-sm-n10{margin-right:-12rem !important}.bsui .mb-sm-n10,.bsui .my-sm-n10{margin-bottom:-12rem !important}.bsui .ml-sm-n10,.bsui .mx-sm-n10{margin-left:-12rem !important}.bsui .m-sm-n11{margin:-14rem !important}.bsui .mt-sm-n11,.bsui .my-sm-n11{margin-top:-14rem !important}.bsui .mr-sm-n11,.bsui .mx-sm-n11{margin-right:-14rem !important}.bsui .mb-sm-n11,.bsui .my-sm-n11{margin-bottom:-14rem !important}.bsui .ml-sm-n11,.bsui .mx-sm-n11{margin-left:-14rem !important}.bsui .m-sm-n12{margin:-16rem !important}.bsui .mt-sm-n12,.bsui .my-sm-n12{margin-top:-16rem !important}.bsui .mr-sm-n12,.bsui .mx-sm-n12{margin-right:-16rem !important}.bsui .mb-sm-n12,.bsui .my-sm-n12{margin-bottom:-16rem !important}.bsui .ml-sm-n12,.bsui .mx-sm-n12{margin-left:-16rem !important}.bsui .m-sm-auto{margin:auto !important}.bsui .mt-sm-auto,.bsui .my-sm-auto{margin-top:auto !important}.bsui .mr-sm-auto,.bsui .mx-sm-auto{margin-right:auto !important}.bsui .mb-sm-auto,.bsui .my-sm-auto{margin-bottom:auto !important}.bsui .ml-sm-auto,.bsui .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.bsui .m-md-0{margin:0 !important}.bsui .mt-md-0,.bsui .my-md-0{margin-top:0 !important}.bsui .mr-md-0,.bsui .mx-md-0{margin-right:0 !important}.bsui .mb-md-0,.bsui .my-md-0{margin-bottom:0 !important}.bsui .ml-md-0,.bsui .mx-md-0{margin-left:0 !important}.bsui .m-md-1{margin:.25rem !important}.bsui .mt-md-1,.bsui .my-md-1{margin-top:.25rem !important}.bsui .mr-md-1,.bsui .mx-md-1{margin-right:.25rem !important}.bsui .mb-md-1,.bsui .my-md-1{margin-bottom:.25rem !important}.bsui .ml-md-1,.bsui .mx-md-1{margin-left:.25rem !important}.bsui .m-md-2{margin:.5rem !important}.bsui .mt-md-2,.bsui .my-md-2{margin-top:.5rem !important}.bsui .mr-md-2,.bsui .mx-md-2{margin-right:.5rem !important}.bsui .mb-md-2,.bsui .my-md-2{margin-bottom:.5rem !important}.bsui .ml-md-2,.bsui .mx-md-2{margin-left:.5rem !important}.bsui .m-md-3{margin:1rem !important}.bsui .mt-md-3,.bsui .my-md-3{margin-top:1rem !important}.bsui .mr-md-3,.bsui .mx-md-3{margin-right:1rem !important}.bsui .mb-md-3,.bsui .my-md-3{margin-bottom:1rem !important}.bsui .ml-md-3,.bsui .mx-md-3{margin-left:1rem !important}.bsui .m-md-4{margin:1.5rem !important}.bsui .mt-md-4,.bsui .my-md-4{margin-top:1.5rem !important}.bsui .mr-md-4,.bsui .mx-md-4{margin-right:1.5rem !important}.bsui .mb-md-4,.bsui .my-md-4{margin-bottom:1.5rem !important}.bsui .ml-md-4,.bsui .mx-md-4{margin-left:1.5rem !important}.bsui .m-md-5{margin:3rem !important}.bsui .mt-md-5,.bsui .my-md-5{margin-top:3rem !important}.bsui .mr-md-5,.bsui .mx-md-5{margin-right:3rem !important}.bsui .mb-md-5,.bsui .my-md-5{margin-bottom:3rem !important}.bsui .ml-md-5,.bsui .mx-md-5{margin-left:3rem !important}.bsui .m-md-6{margin:4rem !important}.bsui .mt-md-6,.bsui .my-md-6{margin-top:4rem !important}.bsui .mr-md-6,.bsui .mx-md-6{margin-right:4rem !important}.bsui .mb-md-6,.bsui .my-md-6{margin-bottom:4rem !important}.bsui .ml-md-6,.bsui .mx-md-6{margin-left:4rem !important}.bsui .m-md-7{margin:6rem !important}.bsui .mt-md-7,.bsui .my-md-7{margin-top:6rem !important}.bsui .mr-md-7,.bsui .mx-md-7{margin-right:6rem !important}.bsui .mb-md-7,.bsui .my-md-7{margin-bottom:6rem !important}.bsui .ml-md-7,.bsui .mx-md-7{margin-left:6rem !important}.bsui .m-md-8{margin:8rem !important}.bsui .mt-md-8,.bsui .my-md-8{margin-top:8rem !important}.bsui .mr-md-8,.bsui .mx-md-8{margin-right:8rem !important}.bsui .mb-md-8,.bsui .my-md-8{margin-bottom:8rem !important}.bsui .ml-md-8,.bsui .mx-md-8{margin-left:8rem !important}.bsui .m-md-9{margin:10rem !important}.bsui .mt-md-9,.bsui .my-md-9{margin-top:10rem !important}.bsui .mr-md-9,.bsui .mx-md-9{margin-right:10rem !important}.bsui .mb-md-9,.bsui .my-md-9{margin-bottom:10rem !important}.bsui .ml-md-9,.bsui .mx-md-9{margin-left:10rem !important}.bsui .m-md-10{margin:12rem !important}.bsui .mt-md-10,.bsui .my-md-10{margin-top:12rem !important}.bsui .mr-md-10,.bsui .mx-md-10{margin-right:12rem !important}.bsui .mb-md-10,.bsui .my-md-10{margin-bottom:12rem !important}.bsui .ml-md-10,.bsui .mx-md-10{margin-left:12rem !important}.bsui .m-md-11{margin:14rem !important}.bsui .mt-md-11,.bsui .my-md-11{margin-top:14rem !important}.bsui .mr-md-11,.bsui .mx-md-11{margin-right:14rem !important}.bsui .mb-md-11,.bsui .my-md-11{margin-bottom:14rem !important}.bsui .ml-md-11,.bsui .mx-md-11{margin-left:14rem !important}.bsui .m-md-12{margin:16rem !important}.bsui .mt-md-12,.bsui .my-md-12{margin-top:16rem !important}.bsui .mr-md-12,.bsui .mx-md-12{margin-right:16rem !important}.bsui .mb-md-12,.bsui .my-md-12{margin-bottom:16rem !important}.bsui .ml-md-12,.bsui .mx-md-12{margin-left:16rem !important}.bsui .p-md-0{padding:0 !important}.bsui .pt-md-0,.bsui .py-md-0{padding-top:0 !important}.bsui .pr-md-0,.bsui .px-md-0{padding-right:0 !important}.bsui .pb-md-0,.bsui .py-md-0{padding-bottom:0 !important}.bsui .pl-md-0,.bsui .px-md-0{padding-left:0 !important}.bsui .p-md-1{padding:.25rem !important}.bsui .pt-md-1,.bsui .py-md-1{padding-top:.25rem !important}.bsui .pr-md-1,.bsui .px-md-1{padding-right:.25rem !important}.bsui .pb-md-1,.bsui .py-md-1{padding-bottom:.25rem !important}.bsui .pl-md-1,.bsui .px-md-1{padding-left:.25rem !important}.bsui .p-md-2{padding:.5rem !important}.bsui .pt-md-2,.bsui .py-md-2{padding-top:.5rem !important}.bsui .pr-md-2,.bsui .px-md-2{padding-right:.5rem !important}.bsui .pb-md-2,.bsui .py-md-2{padding-bottom:.5rem !important}.bsui .pl-md-2,.bsui .px-md-2{padding-left:.5rem !important}.bsui .p-md-3{padding:1rem !important}.bsui .pt-md-3,.bsui .py-md-3{padding-top:1rem !important}.bsui .pr-md-3,.bsui .px-md-3{padding-right:1rem !important}.bsui .pb-md-3,.bsui .py-md-3{padding-bottom:1rem !important}.bsui .pl-md-3,.bsui .px-md-3{padding-left:1rem !important}.bsui .p-md-4{padding:1.5rem !important}.bsui .pt-md-4,.bsui .py-md-4{padding-top:1.5rem !important}.bsui .pr-md-4,.bsui .px-md-4{padding-right:1.5rem !important}.bsui .pb-md-4,.bsui .py-md-4{padding-bottom:1.5rem !important}.bsui .pl-md-4,.bsui .px-md-4{padding-left:1.5rem !important}.bsui .p-md-5{padding:3rem !important}.bsui .pt-md-5,.bsui .py-md-5{padding-top:3rem !important}.bsui .pr-md-5,.bsui .px-md-5{padding-right:3rem !important}.bsui .pb-md-5,.bsui .py-md-5{padding-bottom:3rem !important}.bsui .pl-md-5,.bsui .px-md-5{padding-left:3rem !important}.bsui .p-md-6{padding:4rem !important}.bsui .pt-md-6,.bsui .py-md-6{padding-top:4rem !important}.bsui .pr-md-6,.bsui .px-md-6{padding-right:4rem !important}.bsui .pb-md-6,.bsui .py-md-6{padding-bottom:4rem !important}.bsui .pl-md-6,.bsui .px-md-6{padding-left:4rem !important}.bsui .p-md-7{padding:6rem !important}.bsui .pt-md-7,.bsui .py-md-7{padding-top:6rem !important}.bsui .pr-md-7,.bsui .px-md-7{padding-right:6rem !important}.bsui .pb-md-7,.bsui .py-md-7{padding-bottom:6rem !important}.bsui .pl-md-7,.bsui .px-md-7{padding-left:6rem !important}.bsui .p-md-8{padding:8rem !important}.bsui .pt-md-8,.bsui .py-md-8{padding-top:8rem !important}.bsui .pr-md-8,.bsui .px-md-8{padding-right:8rem !important}.bsui .pb-md-8,.bsui .py-md-8{padding-bottom:8rem !important}.bsui .pl-md-8,.bsui .px-md-8{padding-left:8rem !important}.bsui .p-md-9{padding:10rem !important}.bsui .pt-md-9,.bsui .py-md-9{padding-top:10rem !important}.bsui .pr-md-9,.bsui .px-md-9{padding-right:10rem !important}.bsui .pb-md-9,.bsui .py-md-9{padding-bottom:10rem !important}.bsui .pl-md-9,.bsui .px-md-9{padding-left:10rem !important}.bsui .p-md-10{padding:12rem !important}.bsui .pt-md-10,.bsui .py-md-10{padding-top:12rem !important}.bsui .pr-md-10,.bsui .px-md-10{padding-right:12rem !important}.bsui .pb-md-10,.bsui .py-md-10{padding-bottom:12rem !important}.bsui .pl-md-10,.bsui .px-md-10{padding-left:12rem !important}.bsui .p-md-11{padding:14rem !important}.bsui .pt-md-11,.bsui .py-md-11{padding-top:14rem !important}.bsui .pr-md-11,.bsui .px-md-11{padding-right:14rem !important}.bsui .pb-md-11,.bsui .py-md-11{padding-bottom:14rem !important}.bsui .pl-md-11,.bsui .px-md-11{padding-left:14rem !important}.bsui .p-md-12{padding:16rem !important}.bsui .pt-md-12,.bsui .py-md-12{padding-top:16rem !important}.bsui .pr-md-12,.bsui .px-md-12{padding-right:16rem !important}.bsui .pb-md-12,.bsui .py-md-12{padding-bottom:16rem !important}.bsui .pl-md-12,.bsui .px-md-12{padding-left:16rem !important}.bsui .m-md-n1{margin:-.25rem !important}.bsui .mt-md-n1,.bsui .my-md-n1{margin-top:-.25rem !important}.bsui .mr-md-n1,.bsui .mx-md-n1{margin-right:-.25rem !important}.bsui .mb-md-n1,.bsui .my-md-n1{margin-bottom:-.25rem !important}.bsui .ml-md-n1,.bsui .mx-md-n1{margin-left:-.25rem !important}.bsui .m-md-n2{margin:-.5rem !important}.bsui .mt-md-n2,.bsui .my-md-n2{margin-top:-.5rem !important}.bsui .mr-md-n2,.bsui .mx-md-n2{margin-right:-.5rem !important}.bsui .mb-md-n2,.bsui .my-md-n2{margin-bottom:-.5rem !important}.bsui .ml-md-n2,.bsui .mx-md-n2{margin-left:-.5rem !important}.bsui .m-md-n3{margin:-1rem !important}.bsui .mt-md-n3,.bsui .my-md-n3{margin-top:-1rem !important}.bsui .mr-md-n3,.bsui .mx-md-n3{margin-right:-1rem !important}.bsui .mb-md-n3,.bsui .my-md-n3{margin-bottom:-1rem !important}.bsui .ml-md-n3,.bsui .mx-md-n3{margin-left:-1rem !important}.bsui .m-md-n4{margin:-1.5rem !important}.bsui .mt-md-n4,.bsui .my-md-n4{margin-top:-1.5rem !important}.bsui .mr-md-n4,.bsui .mx-md-n4{margin-right:-1.5rem !important}.bsui .mb-md-n4,.bsui .my-md-n4{margin-bottom:-1.5rem !important}.bsui .ml-md-n4,.bsui .mx-md-n4{margin-left:-1.5rem !important}.bsui .m-md-n5{margin:-3rem !important}.bsui .mt-md-n5,.bsui .my-md-n5{margin-top:-3rem !important}.bsui .mr-md-n5,.bsui .mx-md-n5{margin-right:-3rem !important}.bsui .mb-md-n5,.bsui .my-md-n5{margin-bottom:-3rem !important}.bsui .ml-md-n5,.bsui .mx-md-n5{margin-left:-3rem !important}.bsui .m-md-n6{margin:-4rem !important}.bsui .mt-md-n6,.bsui .my-md-n6{margin-top:-4rem !important}.bsui .mr-md-n6,.bsui .mx-md-n6{margin-right:-4rem !important}.bsui .mb-md-n6,.bsui .my-md-n6{margin-bottom:-4rem !important}.bsui .ml-md-n6,.bsui .mx-md-n6{margin-left:-4rem !important}.bsui .m-md-n7{margin:-6rem !important}.bsui .mt-md-n7,.bsui .my-md-n7{margin-top:-6rem !important}.bsui .mr-md-n7,.bsui .mx-md-n7{margin-right:-6rem !important}.bsui .mb-md-n7,.bsui .my-md-n7{margin-bottom:-6rem !important}.bsui .ml-md-n7,.bsui .mx-md-n7{margin-left:-6rem !important}.bsui .m-md-n8{margin:-8rem !important}.bsui .mt-md-n8,.bsui .my-md-n8{margin-top:-8rem !important}.bsui .mr-md-n8,.bsui .mx-md-n8{margin-right:-8rem !important}.bsui .mb-md-n8,.bsui .my-md-n8{margin-bottom:-8rem !important}.bsui .ml-md-n8,.bsui .mx-md-n8{margin-left:-8rem !important}.bsui .m-md-n9{margin:-10rem !important}.bsui .mt-md-n9,.bsui .my-md-n9{margin-top:-10rem !important}.bsui .mr-md-n9,.bsui .mx-md-n9{margin-right:-10rem !important}.bsui .mb-md-n9,.bsui .my-md-n9{margin-bottom:-10rem !important}.bsui .ml-md-n9,.bsui .mx-md-n9{margin-left:-10rem !important}.bsui .m-md-n10{margin:-12rem !important}.bsui .mt-md-n10,.bsui .my-md-n10{margin-top:-12rem !important}.bsui .mr-md-n10,.bsui .mx-md-n10{margin-right:-12rem !important}.bsui .mb-md-n10,.bsui .my-md-n10{margin-bottom:-12rem !important}.bsui .ml-md-n10,.bsui .mx-md-n10{margin-left:-12rem !important}.bsui .m-md-n11{margin:-14rem !important}.bsui .mt-md-n11,.bsui .my-md-n11{margin-top:-14rem !important}.bsui .mr-md-n11,.bsui .mx-md-n11{margin-right:-14rem !important}.bsui .mb-md-n11,.bsui .my-md-n11{margin-bottom:-14rem !important}.bsui .ml-md-n11,.bsui .mx-md-n11{margin-left:-14rem !important}.bsui .m-md-n12{margin:-16rem !important}.bsui .mt-md-n12,.bsui .my-md-n12{margin-top:-16rem !important}.bsui .mr-md-n12,.bsui .mx-md-n12{margin-right:-16rem !important}.bsui .mb-md-n12,.bsui .my-md-n12{margin-bottom:-16rem !important}.bsui .ml-md-n12,.bsui .mx-md-n12{margin-left:-16rem !important}.bsui .m-md-auto{margin:auto !important}.bsui .mt-md-auto,.bsui .my-md-auto{margin-top:auto !important}.bsui .mr-md-auto,.bsui .mx-md-auto{margin-right:auto !important}.bsui .mb-md-auto,.bsui .my-md-auto{margin-bottom:auto !important}.bsui .ml-md-auto,.bsui .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.bsui .m-lg-0{margin:0 !important}.bsui .mt-lg-0,.bsui .my-lg-0{margin-top:0 !important}.bsui .mr-lg-0,.bsui .mx-lg-0{margin-right:0 !important}.bsui .mb-lg-0,.bsui .my-lg-0{margin-bottom:0 !important}.bsui .ml-lg-0,.bsui .mx-lg-0{margin-left:0 !important}.bsui .m-lg-1{margin:.25rem !important}.bsui .mt-lg-1,.bsui .my-lg-1{margin-top:.25rem !important}.bsui .mr-lg-1,.bsui .mx-lg-1{margin-right:.25rem !important}.bsui .mb-lg-1,.bsui .my-lg-1{margin-bottom:.25rem !important}.bsui .ml-lg-1,.bsui .mx-lg-1{margin-left:.25rem !important}.bsui .m-lg-2{margin:.5rem !important}.bsui .mt-lg-2,.bsui .my-lg-2{margin-top:.5rem !important}.bsui .mr-lg-2,.bsui .mx-lg-2{margin-right:.5rem !important}.bsui .mb-lg-2,.bsui .my-lg-2{margin-bottom:.5rem !important}.bsui .ml-lg-2,.bsui .mx-lg-2{margin-left:.5rem !important}.bsui .m-lg-3{margin:1rem !important}.bsui .mt-lg-3,.bsui .my-lg-3{margin-top:1rem !important}.bsui .mr-lg-3,.bsui .mx-lg-3{margin-right:1rem !important}.bsui .mb-lg-3,.bsui .my-lg-3{margin-bottom:1rem !important}.bsui .ml-lg-3,.bsui .mx-lg-3{margin-left:1rem !important}.bsui .m-lg-4{margin:1.5rem !important}.bsui .mt-lg-4,.bsui .my-lg-4{margin-top:1.5rem !important}.bsui .mr-lg-4,.bsui .mx-lg-4{margin-right:1.5rem !important}.bsui .mb-lg-4,.bsui .my-lg-4{margin-bottom:1.5rem !important}.bsui .ml-lg-4,.bsui .mx-lg-4{margin-left:1.5rem !important}.bsui .m-lg-5{margin:3rem !important}.bsui .mt-lg-5,.bsui .my-lg-5{margin-top:3rem !important}.bsui .mr-lg-5,.bsui .mx-lg-5{margin-right:3rem !important}.bsui .mb-lg-5,.bsui .my-lg-5{margin-bottom:3rem !important}.bsui .ml-lg-5,.bsui .mx-lg-5{margin-left:3rem !important}.bsui .m-lg-6{margin:4rem !important}.bsui .mt-lg-6,.bsui .my-lg-6{margin-top:4rem !important}.bsui .mr-lg-6,.bsui .mx-lg-6{margin-right:4rem !important}.bsui .mb-lg-6,.bsui .my-lg-6{margin-bottom:4rem !important}.bsui .ml-lg-6,.bsui .mx-lg-6{margin-left:4rem !important}.bsui .m-lg-7{margin:6rem !important}.bsui .mt-lg-7,.bsui .my-lg-7{margin-top:6rem !important}.bsui .mr-lg-7,.bsui .mx-lg-7{margin-right:6rem !important}.bsui .mb-lg-7,.bsui .my-lg-7{margin-bottom:6rem !important}.bsui .ml-lg-7,.bsui .mx-lg-7{margin-left:6rem !important}.bsui .m-lg-8{margin:8rem !important}.bsui .mt-lg-8,.bsui .my-lg-8{margin-top:8rem !important}.bsui .mr-lg-8,.bsui .mx-lg-8{margin-right:8rem !important}.bsui .mb-lg-8,.bsui .my-lg-8{margin-bottom:8rem !important}.bsui .ml-lg-8,.bsui .mx-lg-8{margin-left:8rem !important}.bsui .m-lg-9{margin:10rem !important}.bsui .mt-lg-9,.bsui .my-lg-9{margin-top:10rem !important}.bsui .mr-lg-9,.bsui .mx-lg-9{margin-right:10rem !important}.bsui .mb-lg-9,.bsui .my-lg-9{margin-bottom:10rem !important}.bsui .ml-lg-9,.bsui .mx-lg-9{margin-left:10rem !important}.bsui .m-lg-10{margin:12rem !important}.bsui .mt-lg-10,.bsui .my-lg-10{margin-top:12rem !important}.bsui .mr-lg-10,.bsui .mx-lg-10{margin-right:12rem !important}.bsui .mb-lg-10,.bsui .my-lg-10{margin-bottom:12rem !important}.bsui .ml-lg-10,.bsui .mx-lg-10{margin-left:12rem !important}.bsui .m-lg-11{margin:14rem !important}.bsui .mt-lg-11,.bsui .my-lg-11{margin-top:14rem !important}.bsui .mr-lg-11,.bsui .mx-lg-11{margin-right:14rem !important}.bsui .mb-lg-11,.bsui .my-lg-11{margin-bottom:14rem !important}.bsui .ml-lg-11,.bsui .mx-lg-11{margin-left:14rem !important}.bsui .m-lg-12{margin:16rem !important}.bsui .mt-lg-12,.bsui .my-lg-12{margin-top:16rem !important}.bsui .mr-lg-12,.bsui .mx-lg-12{margin-right:16rem !important}.bsui .mb-lg-12,.bsui .my-lg-12{margin-bottom:16rem !important}.bsui .ml-lg-12,.bsui .mx-lg-12{margin-left:16rem !important}.bsui .p-lg-0{padding:0 !important}.bsui .pt-lg-0,.bsui .py-lg-0{padding-top:0 !important}.bsui .pr-lg-0,.bsui .px-lg-0{padding-right:0 !important}.bsui .pb-lg-0,.bsui .py-lg-0{padding-bottom:0 !important}.bsui .pl-lg-0,.bsui .px-lg-0{padding-left:0 !important}.bsui .p-lg-1{padding:.25rem !important}.bsui .pt-lg-1,.bsui .py-lg-1{padding-top:.25rem !important}.bsui .pr-lg-1,.bsui .px-lg-1{padding-right:.25rem !important}.bsui .pb-lg-1,.bsui .py-lg-1{padding-bottom:.25rem !important}.bsui .pl-lg-1,.bsui .px-lg-1{padding-left:.25rem !important}.bsui .p-lg-2{padding:.5rem !important}.bsui .pt-lg-2,.bsui .py-lg-2{padding-top:.5rem !important}.bsui .pr-lg-2,.bsui .px-lg-2{padding-right:.5rem !important}.bsui .pb-lg-2,.bsui .py-lg-2{padding-bottom:.5rem !important}.bsui .pl-lg-2,.bsui .px-lg-2{padding-left:.5rem !important}.bsui .p-lg-3{padding:1rem !important}.bsui .pt-lg-3,.bsui .py-lg-3{padding-top:1rem !important}.bsui .pr-lg-3,.bsui .px-lg-3{padding-right:1rem !important}.bsui .pb-lg-3,.bsui .py-lg-3{padding-bottom:1rem !important}.bsui .pl-lg-3,.bsui .px-lg-3{padding-left:1rem !important}.bsui .p-lg-4{padding:1.5rem !important}.bsui .pt-lg-4,.bsui .py-lg-4{padding-top:1.5rem !important}.bsui .pr-lg-4,.bsui .px-lg-4{padding-right:1.5rem !important}.bsui .pb-lg-4,.bsui .py-lg-4{padding-bottom:1.5rem !important}.bsui .pl-lg-4,.bsui .px-lg-4{padding-left:1.5rem !important}.bsui .p-lg-5{padding:3rem !important}.bsui .pt-lg-5,.bsui .py-lg-5{padding-top:3rem !important}.bsui .pr-lg-5,.bsui .px-lg-5{padding-right:3rem !important}.bsui .pb-lg-5,.bsui .py-lg-5{padding-bottom:3rem !important}.bsui .pl-lg-5,.bsui .px-lg-5{padding-left:3rem !important}.bsui .p-lg-6{padding:4rem !important}.bsui .pt-lg-6,.bsui .py-lg-6{padding-top:4rem !important}.bsui .pr-lg-6,.bsui .px-lg-6{padding-right:4rem !important}.bsui .pb-lg-6,.bsui .py-lg-6{padding-bottom:4rem !important}.bsui .pl-lg-6,.bsui .px-lg-6{padding-left:4rem !important}.bsui .p-lg-7{padding:6rem !important}.bsui .pt-lg-7,.bsui .py-lg-7{padding-top:6rem !important}.bsui .pr-lg-7,.bsui .px-lg-7{padding-right:6rem !important}.bsui .pb-lg-7,.bsui .py-lg-7{padding-bottom:6rem !important}.bsui .pl-lg-7,.bsui .px-lg-7{padding-left:6rem !important}.bsui .p-lg-8{padding:8rem !important}.bsui .pt-lg-8,.bsui .py-lg-8{padding-top:8rem !important}.bsui .pr-lg-8,.bsui .px-lg-8{padding-right:8rem !important}.bsui .pb-lg-8,.bsui .py-lg-8{padding-bottom:8rem !important}.bsui .pl-lg-8,.bsui .px-lg-8{padding-left:8rem !important}.bsui .p-lg-9{padding:10rem !important}.bsui .pt-lg-9,.bsui .py-lg-9{padding-top:10rem !important}.bsui .pr-lg-9,.bsui .px-lg-9{padding-right:10rem !important}.bsui .pb-lg-9,.bsui .py-lg-9{padding-bottom:10rem !important}.bsui .pl-lg-9,.bsui .px-lg-9{padding-left:10rem !important}.bsui .p-lg-10{padding:12rem !important}.bsui .pt-lg-10,.bsui .py-lg-10{padding-top:12rem !important}.bsui .pr-lg-10,.bsui .px-lg-10{padding-right:12rem !important}.bsui .pb-lg-10,.bsui .py-lg-10{padding-bottom:12rem !important}.bsui .pl-lg-10,.bsui .px-lg-10{padding-left:12rem !important}.bsui .p-lg-11{padding:14rem !important}.bsui .pt-lg-11,.bsui .py-lg-11{padding-top:14rem !important}.bsui .pr-lg-11,.bsui .px-lg-11{padding-right:14rem !important}.bsui .pb-lg-11,.bsui .py-lg-11{padding-bottom:14rem !important}.bsui .pl-lg-11,.bsui .px-lg-11{padding-left:14rem !important}.bsui .p-lg-12{padding:16rem !important}.bsui .pt-lg-12,.bsui .py-lg-12{padding-top:16rem !important}.bsui .pr-lg-12,.bsui .px-lg-12{padding-right:16rem !important}.bsui .pb-lg-12,.bsui .py-lg-12{padding-bottom:16rem !important}.bsui .pl-lg-12,.bsui .px-lg-12{padding-left:16rem !important}.bsui .m-lg-n1{margin:-.25rem !important}.bsui .mt-lg-n1,.bsui .my-lg-n1{margin-top:-.25rem !important}.bsui .mr-lg-n1,.bsui .mx-lg-n1{margin-right:-.25rem !important}.bsui .mb-lg-n1,.bsui .my-lg-n1{margin-bottom:-.25rem !important}.bsui .ml-lg-n1,.bsui .mx-lg-n1{margin-left:-.25rem !important}.bsui .m-lg-n2{margin:-.5rem !important}.bsui .mt-lg-n2,.bsui .my-lg-n2{margin-top:-.5rem !important}.bsui .mr-lg-n2,.bsui .mx-lg-n2{margin-right:-.5rem !important}.bsui .mb-lg-n2,.bsui .my-lg-n2{margin-bottom:-.5rem !important}.bsui .ml-lg-n2,.bsui .mx-lg-n2{margin-left:-.5rem !important}.bsui .m-lg-n3{margin:-1rem !important}.bsui .mt-lg-n3,.bsui .my-lg-n3{margin-top:-1rem !important}.bsui .mr-lg-n3,.bsui .mx-lg-n3{margin-right:-1rem !important}.bsui .mb-lg-n3,.bsui .my-lg-n3{margin-bottom:-1rem !important}.bsui .ml-lg-n3,.bsui .mx-lg-n3{margin-left:-1rem !important}.bsui .m-lg-n4{margin:-1.5rem !important}.bsui .mt-lg-n4,.bsui .my-lg-n4{margin-top:-1.5rem !important}.bsui .mr-lg-n4,.bsui .mx-lg-n4{margin-right:-1.5rem !important}.bsui .mb-lg-n4,.bsui .my-lg-n4{margin-bottom:-1.5rem !important}.bsui .ml-lg-n4,.bsui .mx-lg-n4{margin-left:-1.5rem !important}.bsui .m-lg-n5{margin:-3rem !important}.bsui .mt-lg-n5,.bsui .my-lg-n5{margin-top:-3rem !important}.bsui .mr-lg-n5,.bsui .mx-lg-n5{margin-right:-3rem !important}.bsui .mb-lg-n5,.bsui .my-lg-n5{margin-bottom:-3rem !important}.bsui .ml-lg-n5,.bsui .mx-lg-n5{margin-left:-3rem !important}.bsui .m-lg-n6{margin:-4rem !important}.bsui .mt-lg-n6,.bsui .my-lg-n6{margin-top:-4rem !important}.bsui .mr-lg-n6,.bsui .mx-lg-n6{margin-right:-4rem !important}.bsui .mb-lg-n6,.bsui .my-lg-n6{margin-bottom:-4rem !important}.bsui .ml-lg-n6,.bsui .mx-lg-n6{margin-left:-4rem !important}.bsui .m-lg-n7{margin:-6rem !important}.bsui .mt-lg-n7,.bsui .my-lg-n7{margin-top:-6rem !important}.bsui .mr-lg-n7,.bsui .mx-lg-n7{margin-right:-6rem !important}.bsui .mb-lg-n7,.bsui .my-lg-n7{margin-bottom:-6rem !important}.bsui .ml-lg-n7,.bsui .mx-lg-n7{margin-left:-6rem !important}.bsui .m-lg-n8{margin:-8rem !important}.bsui .mt-lg-n8,.bsui .my-lg-n8{margin-top:-8rem !important}.bsui .mr-lg-n8,.bsui .mx-lg-n8{margin-right:-8rem !important}.bsui .mb-lg-n8,.bsui .my-lg-n8{margin-bottom:-8rem !important}.bsui .ml-lg-n8,.bsui .mx-lg-n8{margin-left:-8rem !important}.bsui .m-lg-n9{margin:-10rem !important}.bsui .mt-lg-n9,.bsui .my-lg-n9{margin-top:-10rem !important}.bsui .mr-lg-n9,.bsui .mx-lg-n9{margin-right:-10rem !important}.bsui .mb-lg-n9,.bsui .my-lg-n9{margin-bottom:-10rem !important}.bsui .ml-lg-n9,.bsui .mx-lg-n9{margin-left:-10rem !important}.bsui .m-lg-n10{margin:-12rem !important}.bsui .mt-lg-n10,.bsui .my-lg-n10{margin-top:-12rem !important}.bsui .mr-lg-n10,.bsui .mx-lg-n10{margin-right:-12rem !important}.bsui .mb-lg-n10,.bsui .my-lg-n10{margin-bottom:-12rem !important}.bsui .ml-lg-n10,.bsui .mx-lg-n10{margin-left:-12rem !important}.bsui .m-lg-n11{margin:-14rem !important}.bsui .mt-lg-n11,.bsui .my-lg-n11{margin-top:-14rem !important}.bsui .mr-lg-n11,.bsui .mx-lg-n11{margin-right:-14rem !important}.bsui .mb-lg-n11,.bsui .my-lg-n11{margin-bottom:-14rem !important}.bsui .ml-lg-n11,.bsui .mx-lg-n11{margin-left:-14rem !important}.bsui .m-lg-n12{margin:-16rem !important}.bsui .mt-lg-n12,.bsui .my-lg-n12{margin-top:-16rem !important}.bsui .mr-lg-n12,.bsui .mx-lg-n12{margin-right:-16rem !important}.bsui .mb-lg-n12,.bsui .my-lg-n12{margin-bottom:-16rem !important}.bsui .ml-lg-n12,.bsui .mx-lg-n12{margin-left:-16rem !important}.bsui .m-lg-auto{margin:auto !important}.bsui .mt-lg-auto,.bsui .my-lg-auto{margin-top:auto !important}.bsui .mr-lg-auto,.bsui .mx-lg-auto{margin-right:auto !important}.bsui .mb-lg-auto,.bsui .my-lg-auto{margin-bottom:auto !important}.bsui .ml-lg-auto,.bsui .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.bsui .m-xl-0{margin:0 !important}.bsui .mt-xl-0,.bsui .my-xl-0{margin-top:0 !important}.bsui .mr-xl-0,.bsui .mx-xl-0{margin-right:0 !important}.bsui .mb-xl-0,.bsui .my-xl-0{margin-bottom:0 !important}.bsui .ml-xl-0,.bsui .mx-xl-0{margin-left:0 !important}.bsui .m-xl-1{margin:.25rem !important}.bsui .mt-xl-1,.bsui .my-xl-1{margin-top:.25rem !important}.bsui .mr-xl-1,.bsui .mx-xl-1{margin-right:.25rem !important}.bsui .mb-xl-1,.bsui .my-xl-1{margin-bottom:.25rem !important}.bsui .ml-xl-1,.bsui .mx-xl-1{margin-left:.25rem !important}.bsui .m-xl-2{margin:.5rem !important}.bsui .mt-xl-2,.bsui .my-xl-2{margin-top:.5rem !important}.bsui .mr-xl-2,.bsui .mx-xl-2{margin-right:.5rem !important}.bsui .mb-xl-2,.bsui .my-xl-2{margin-bottom:.5rem !important}.bsui .ml-xl-2,.bsui .mx-xl-2{margin-left:.5rem !important}.bsui .m-xl-3{margin:1rem !important}.bsui .mt-xl-3,.bsui .my-xl-3{margin-top:1rem !important}.bsui .mr-xl-3,.bsui .mx-xl-3{margin-right:1rem !important}.bsui .mb-xl-3,.bsui .my-xl-3{margin-bottom:1rem !important}.bsui .ml-xl-3,.bsui .mx-xl-3{margin-left:1rem !important}.bsui .m-xl-4{margin:1.5rem !important}.bsui .mt-xl-4,.bsui .my-xl-4{margin-top:1.5rem !important}.bsui .mr-xl-4,.bsui .mx-xl-4{margin-right:1.5rem !important}.bsui .mb-xl-4,.bsui .my-xl-4{margin-bottom:1.5rem !important}.bsui .ml-xl-4,.bsui .mx-xl-4{margin-left:1.5rem !important}.bsui .m-xl-5{margin:3rem !important}.bsui .mt-xl-5,.bsui .my-xl-5{margin-top:3rem !important}.bsui .mr-xl-5,.bsui .mx-xl-5{margin-right:3rem !important}.bsui .mb-xl-5,.bsui .my-xl-5{margin-bottom:3rem !important}.bsui .ml-xl-5,.bsui .mx-xl-5{margin-left:3rem !important}.bsui .m-xl-6{margin:4rem !important}.bsui .mt-xl-6,.bsui .my-xl-6{margin-top:4rem !important}.bsui .mr-xl-6,.bsui .mx-xl-6{margin-right:4rem !important}.bsui .mb-xl-6,.bsui .my-xl-6{margin-bottom:4rem !important}.bsui .ml-xl-6,.bsui .mx-xl-6{margin-left:4rem !important}.bsui .m-xl-7{margin:6rem !important}.bsui .mt-xl-7,.bsui .my-xl-7{margin-top:6rem !important}.bsui .mr-xl-7,.bsui .mx-xl-7{margin-right:6rem !important}.bsui .mb-xl-7,.bsui .my-xl-7{margin-bottom:6rem !important}.bsui .ml-xl-7,.bsui .mx-xl-7{margin-left:6rem !important}.bsui .m-xl-8{margin:8rem !important}.bsui .mt-xl-8,.bsui .my-xl-8{margin-top:8rem !important}.bsui .mr-xl-8,.bsui .mx-xl-8{margin-right:8rem !important}.bsui .mb-xl-8,.bsui .my-xl-8{margin-bottom:8rem !important}.bsui .ml-xl-8,.bsui .mx-xl-8{margin-left:8rem !important}.bsui .m-xl-9{margin:10rem !important}.bsui .mt-xl-9,.bsui .my-xl-9{margin-top:10rem !important}.bsui .mr-xl-9,.bsui .mx-xl-9{margin-right:10rem !important}.bsui .mb-xl-9,.bsui .my-xl-9{margin-bottom:10rem !important}.bsui .ml-xl-9,.bsui .mx-xl-9{margin-left:10rem !important}.bsui .m-xl-10{margin:12rem !important}.bsui .mt-xl-10,.bsui .my-xl-10{margin-top:12rem !important}.bsui .mr-xl-10,.bsui .mx-xl-10{margin-right:12rem !important}.bsui .mb-xl-10,.bsui .my-xl-10{margin-bottom:12rem !important}.bsui .ml-xl-10,.bsui .mx-xl-10{margin-left:12rem !important}.bsui .m-xl-11{margin:14rem !important}.bsui .mt-xl-11,.bsui .my-xl-11{margin-top:14rem !important}.bsui .mr-xl-11,.bsui .mx-xl-11{margin-right:14rem !important}.bsui .mb-xl-11,.bsui .my-xl-11{margin-bottom:14rem !important}.bsui .ml-xl-11,.bsui .mx-xl-11{margin-left:14rem !important}.bsui .m-xl-12{margin:16rem !important}.bsui .mt-xl-12,.bsui .my-xl-12{margin-top:16rem !important}.bsui .mr-xl-12,.bsui .mx-xl-12{margin-right:16rem !important}.bsui .mb-xl-12,.bsui .my-xl-12{margin-bottom:16rem !important}.bsui .ml-xl-12,.bsui .mx-xl-12{margin-left:16rem !important}.bsui .p-xl-0{padding:0 !important}.bsui .pt-xl-0,.bsui .py-xl-0{padding-top:0 !important}.bsui .pr-xl-0,.bsui .px-xl-0{padding-right:0 !important}.bsui .pb-xl-0,.bsui .py-xl-0{padding-bottom:0 !important}.bsui .pl-xl-0,.bsui .px-xl-0{padding-left:0 !important}.bsui .p-xl-1{padding:.25rem !important}.bsui .pt-xl-1,.bsui .py-xl-1{padding-top:.25rem !important}.bsui .pr-xl-1,.bsui .px-xl-1{padding-right:.25rem !important}.bsui .pb-xl-1,.bsui .py-xl-1{padding-bottom:.25rem !important}.bsui .pl-xl-1,.bsui .px-xl-1{padding-left:.25rem !important}.bsui .p-xl-2{padding:.5rem !important}.bsui .pt-xl-2,.bsui .py-xl-2{padding-top:.5rem !important}.bsui .pr-xl-2,.bsui .px-xl-2{padding-right:.5rem !important}.bsui .pb-xl-2,.bsui .py-xl-2{padding-bottom:.5rem !important}.bsui .pl-xl-2,.bsui .px-xl-2{padding-left:.5rem !important}.bsui .p-xl-3{padding:1rem !important}.bsui .pt-xl-3,.bsui .py-xl-3{padding-top:1rem !important}.bsui .pr-xl-3,.bsui .px-xl-3{padding-right:1rem !important}.bsui .pb-xl-3,.bsui .py-xl-3{padding-bottom:1rem !important}.bsui .pl-xl-3,.bsui .px-xl-3{padding-left:1rem !important}.bsui .p-xl-4{padding:1.5rem !important}.bsui .pt-xl-4,.bsui .py-xl-4{padding-top:1.5rem !important}.bsui .pr-xl-4,.bsui .px-xl-4{padding-right:1.5rem !important}.bsui .pb-xl-4,.bsui .py-xl-4{padding-bottom:1.5rem !important}.bsui .pl-xl-4,.bsui .px-xl-4{padding-left:1.5rem !important}.bsui .p-xl-5{padding:3rem !important}.bsui .pt-xl-5,.bsui .py-xl-5{padding-top:3rem !important}.bsui .pr-xl-5,.bsui .px-xl-5{padding-right:3rem !important}.bsui .pb-xl-5,.bsui .py-xl-5{padding-bottom:3rem !important}.bsui .pl-xl-5,.bsui .px-xl-5{padding-left:3rem !important}.bsui .p-xl-6{padding:4rem !important}.bsui .pt-xl-6,.bsui .py-xl-6{padding-top:4rem !important}.bsui .pr-xl-6,.bsui .px-xl-6{padding-right:4rem !important}.bsui .pb-xl-6,.bsui .py-xl-6{padding-bottom:4rem !important}.bsui .pl-xl-6,.bsui .px-xl-6{padding-left:4rem !important}.bsui .p-xl-7{padding:6rem !important}.bsui .pt-xl-7,.bsui .py-xl-7{padding-top:6rem !important}.bsui .pr-xl-7,.bsui .px-xl-7{padding-right:6rem !important}.bsui .pb-xl-7,.bsui .py-xl-7{padding-bottom:6rem !important}.bsui .pl-xl-7,.bsui .px-xl-7{padding-left:6rem !important}.bsui .p-xl-8{padding:8rem !important}.bsui .pt-xl-8,.bsui .py-xl-8{padding-top:8rem !important}.bsui .pr-xl-8,.bsui .px-xl-8{padding-right:8rem !important}.bsui .pb-xl-8,.bsui .py-xl-8{padding-bottom:8rem !important}.bsui .pl-xl-8,.bsui .px-xl-8{padding-left:8rem !important}.bsui .p-xl-9{padding:10rem !important}.bsui .pt-xl-9,.bsui .py-xl-9{padding-top:10rem !important}.bsui .pr-xl-9,.bsui .px-xl-9{padding-right:10rem !important}.bsui .pb-xl-9,.bsui .py-xl-9{padding-bottom:10rem !important}.bsui .pl-xl-9,.bsui .px-xl-9{padding-left:10rem !important}.bsui .p-xl-10{padding:12rem !important}.bsui .pt-xl-10,.bsui .py-xl-10{padding-top:12rem !important}.bsui .pr-xl-10,.bsui .px-xl-10{padding-right:12rem !important}.bsui .pb-xl-10,.bsui .py-xl-10{padding-bottom:12rem !important}.bsui .pl-xl-10,.bsui .px-xl-10{padding-left:12rem !important}.bsui .p-xl-11{padding:14rem !important}.bsui .pt-xl-11,.bsui .py-xl-11{padding-top:14rem !important}.bsui .pr-xl-11,.bsui .px-xl-11{padding-right:14rem !important}.bsui .pb-xl-11,.bsui .py-xl-11{padding-bottom:14rem !important}.bsui .pl-xl-11,.bsui .px-xl-11{padding-left:14rem !important}.bsui .p-xl-12{padding:16rem !important}.bsui .pt-xl-12,.bsui .py-xl-12{padding-top:16rem !important}.bsui .pr-xl-12,.bsui .px-xl-12{padding-right:16rem !important}.bsui .pb-xl-12,.bsui .py-xl-12{padding-bottom:16rem !important}.bsui .pl-xl-12,.bsui .px-xl-12{padding-left:16rem !important}.bsui .m-xl-n1{margin:-.25rem !important}.bsui .mt-xl-n1,.bsui .my-xl-n1{margin-top:-.25rem !important}.bsui .mr-xl-n1,.bsui .mx-xl-n1{margin-right:-.25rem !important}.bsui .mb-xl-n1,.bsui .my-xl-n1{margin-bottom:-.25rem !important}.bsui .ml-xl-n1,.bsui .mx-xl-n1{margin-left:-.25rem !important}.bsui .m-xl-n2{margin:-.5rem !important}.bsui .mt-xl-n2,.bsui .my-xl-n2{margin-top:-.5rem !important}.bsui .mr-xl-n2,.bsui .mx-xl-n2{margin-right:-.5rem !important}.bsui .mb-xl-n2,.bsui .my-xl-n2{margin-bottom:-.5rem !important}.bsui .ml-xl-n2,.bsui .mx-xl-n2{margin-left:-.5rem !important}.bsui .m-xl-n3{margin:-1rem !important}.bsui .mt-xl-n3,.bsui .my-xl-n3{margin-top:-1rem !important}.bsui .mr-xl-n3,.bsui .mx-xl-n3{margin-right:-1rem !important}.bsui .mb-xl-n3,.bsui .my-xl-n3{margin-bottom:-1rem !important}.bsui .ml-xl-n3,.bsui .mx-xl-n3{margin-left:-1rem !important}.bsui .m-xl-n4{margin:-1.5rem !important}.bsui .mt-xl-n4,.bsui .my-xl-n4{margin-top:-1.5rem !important}.bsui .mr-xl-n4,.bsui .mx-xl-n4{margin-right:-1.5rem !important}.bsui .mb-xl-n4,.bsui .my-xl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xl-n4,.bsui .mx-xl-n4{margin-left:-1.5rem !important}.bsui .m-xl-n5{margin:-3rem !important}.bsui .mt-xl-n5,.bsui .my-xl-n5{margin-top:-3rem !important}.bsui .mr-xl-n5,.bsui .mx-xl-n5{margin-right:-3rem !important}.bsui .mb-xl-n5,.bsui .my-xl-n5{margin-bottom:-3rem !important}.bsui .ml-xl-n5,.bsui .mx-xl-n5{margin-left:-3rem !important}.bsui .m-xl-n6{margin:-4rem !important}.bsui .mt-xl-n6,.bsui .my-xl-n6{margin-top:-4rem !important}.bsui .mr-xl-n6,.bsui .mx-xl-n6{margin-right:-4rem !important}.bsui .mb-xl-n6,.bsui .my-xl-n6{margin-bottom:-4rem !important}.bsui .ml-xl-n6,.bsui .mx-xl-n6{margin-left:-4rem !important}.bsui .m-xl-n7{margin:-6rem !important}.bsui .mt-xl-n7,.bsui .my-xl-n7{margin-top:-6rem !important}.bsui .mr-xl-n7,.bsui .mx-xl-n7{margin-right:-6rem !important}.bsui .mb-xl-n7,.bsui .my-xl-n7{margin-bottom:-6rem !important}.bsui .ml-xl-n7,.bsui .mx-xl-n7{margin-left:-6rem !important}.bsui .m-xl-n8{margin:-8rem !important}.bsui .mt-xl-n8,.bsui .my-xl-n8{margin-top:-8rem !important}.bsui .mr-xl-n8,.bsui .mx-xl-n8{margin-right:-8rem !important}.bsui .mb-xl-n8,.bsui .my-xl-n8{margin-bottom:-8rem !important}.bsui .ml-xl-n8,.bsui .mx-xl-n8{margin-left:-8rem !important}.bsui .m-xl-n9{margin:-10rem !important}.bsui .mt-xl-n9,.bsui .my-xl-n9{margin-top:-10rem !important}.bsui .mr-xl-n9,.bsui .mx-xl-n9{margin-right:-10rem !important}.bsui .mb-xl-n9,.bsui .my-xl-n9{margin-bottom:-10rem !important}.bsui .ml-xl-n9,.bsui .mx-xl-n9{margin-left:-10rem !important}.bsui .m-xl-n10{margin:-12rem !important}.bsui .mt-xl-n10,.bsui .my-xl-n10{margin-top:-12rem !important}.bsui .mr-xl-n10,.bsui .mx-xl-n10{margin-right:-12rem !important}.bsui .mb-xl-n10,.bsui .my-xl-n10{margin-bottom:-12rem !important}.bsui .ml-xl-n10,.bsui .mx-xl-n10{margin-left:-12rem !important}.bsui .m-xl-n11{margin:-14rem !important}.bsui .mt-xl-n11,.bsui .my-xl-n11{margin-top:-14rem !important}.bsui .mr-xl-n11,.bsui .mx-xl-n11{margin-right:-14rem !important}.bsui .mb-xl-n11,.bsui .my-xl-n11{margin-bottom:-14rem !important}.bsui .ml-xl-n11,.bsui .mx-xl-n11{margin-left:-14rem !important}.bsui .m-xl-n12{margin:-16rem !important}.bsui .mt-xl-n12,.bsui .my-xl-n12{margin-top:-16rem !important}.bsui .mr-xl-n12,.bsui .mx-xl-n12{margin-right:-16rem !important}.bsui .mb-xl-n12,.bsui .my-xl-n12{margin-bottom:-16rem !important}.bsui .ml-xl-n12,.bsui .mx-xl-n12{margin-left:-16rem !important}.bsui .m-xl-auto{margin:auto !important}.bsui .mt-xl-auto,.bsui .my-xl-auto{margin-top:auto !important}.bsui .mr-xl-auto,.bsui .mx-xl-auto{margin-right:auto !important}.bsui .mb-xl-auto,.bsui .my-xl-auto{margin-bottom:auto !important}.bsui .ml-xl-auto,.bsui .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.bsui .m-xxl-0{margin:0 !important}.bsui .mt-xxl-0,.bsui .my-xxl-0{margin-top:0 !important}.bsui .mr-xxl-0,.bsui .mx-xxl-0{margin-right:0 !important}.bsui .mb-xxl-0,.bsui .my-xxl-0{margin-bottom:0 !important}.bsui .ml-xxl-0,.bsui .mx-xxl-0{margin-left:0 !important}.bsui .m-xxl-1{margin:.25rem !important}.bsui .mt-xxl-1,.bsui .my-xxl-1{margin-top:.25rem !important}.bsui .mr-xxl-1,.bsui .mx-xxl-1{margin-right:.25rem !important}.bsui .mb-xxl-1,.bsui .my-xxl-1{margin-bottom:.25rem !important}.bsui .ml-xxl-1,.bsui .mx-xxl-1{margin-left:.25rem !important}.bsui .m-xxl-2{margin:.5rem !important}.bsui .mt-xxl-2,.bsui .my-xxl-2{margin-top:.5rem !important}.bsui .mr-xxl-2,.bsui .mx-xxl-2{margin-right:.5rem !important}.bsui .mb-xxl-2,.bsui .my-xxl-2{margin-bottom:.5rem !important}.bsui .ml-xxl-2,.bsui .mx-xxl-2{margin-left:.5rem !important}.bsui .m-xxl-3{margin:1rem !important}.bsui .mt-xxl-3,.bsui .my-xxl-3{margin-top:1rem !important}.bsui .mr-xxl-3,.bsui .mx-xxl-3{margin-right:1rem !important}.bsui .mb-xxl-3,.bsui .my-xxl-3{margin-bottom:1rem !important}.bsui .ml-xxl-3,.bsui .mx-xxl-3{margin-left:1rem !important}.bsui .m-xxl-4{margin:1.5rem !important}.bsui .mt-xxl-4,.bsui .my-xxl-4{margin-top:1.5rem !important}.bsui .mr-xxl-4,.bsui .mx-xxl-4{margin-right:1.5rem !important}.bsui .mb-xxl-4,.bsui .my-xxl-4{margin-bottom:1.5rem !important}.bsui .ml-xxl-4,.bsui .mx-xxl-4{margin-left:1.5rem !important}.bsui .m-xxl-5{margin:3rem !important}.bsui .mt-xxl-5,.bsui .my-xxl-5{margin-top:3rem !important}.bsui .mr-xxl-5,.bsui .mx-xxl-5{margin-right:3rem !important}.bsui .mb-xxl-5,.bsui .my-xxl-5{margin-bottom:3rem !important}.bsui .ml-xxl-5,.bsui .mx-xxl-5{margin-left:3rem !important}.bsui .m-xxl-6{margin:4rem !important}.bsui .mt-xxl-6,.bsui .my-xxl-6{margin-top:4rem !important}.bsui .mr-xxl-6,.bsui .mx-xxl-6{margin-right:4rem !important}.bsui .mb-xxl-6,.bsui .my-xxl-6{margin-bottom:4rem !important}.bsui .ml-xxl-6,.bsui .mx-xxl-6{margin-left:4rem !important}.bsui .m-xxl-7{margin:6rem !important}.bsui .mt-xxl-7,.bsui .my-xxl-7{margin-top:6rem !important}.bsui .mr-xxl-7,.bsui .mx-xxl-7{margin-right:6rem !important}.bsui .mb-xxl-7,.bsui .my-xxl-7{margin-bottom:6rem !important}.bsui .ml-xxl-7,.bsui .mx-xxl-7{margin-left:6rem !important}.bsui .m-xxl-8{margin:8rem !important}.bsui .mt-xxl-8,.bsui .my-xxl-8{margin-top:8rem !important}.bsui .mr-xxl-8,.bsui .mx-xxl-8{margin-right:8rem !important}.bsui .mb-xxl-8,.bsui .my-xxl-8{margin-bottom:8rem !important}.bsui .ml-xxl-8,.bsui .mx-xxl-8{margin-left:8rem !important}.bsui .m-xxl-9{margin:10rem !important}.bsui .mt-xxl-9,.bsui .my-xxl-9{margin-top:10rem !important}.bsui .mr-xxl-9,.bsui .mx-xxl-9{margin-right:10rem !important}.bsui .mb-xxl-9,.bsui .my-xxl-9{margin-bottom:10rem !important}.bsui .ml-xxl-9,.bsui .mx-xxl-9{margin-left:10rem !important}.bsui .m-xxl-10{margin:12rem !important}.bsui .mt-xxl-10,.bsui .my-xxl-10{margin-top:12rem !important}.bsui .mr-xxl-10,.bsui .mx-xxl-10{margin-right:12rem !important}.bsui .mb-xxl-10,.bsui .my-xxl-10{margin-bottom:12rem !important}.bsui .ml-xxl-10,.bsui .mx-xxl-10{margin-left:12rem !important}.bsui .m-xxl-11{margin:14rem !important}.bsui .mt-xxl-11,.bsui .my-xxl-11{margin-top:14rem !important}.bsui .mr-xxl-11,.bsui .mx-xxl-11{margin-right:14rem !important}.bsui .mb-xxl-11,.bsui .my-xxl-11{margin-bottom:14rem !important}.bsui .ml-xxl-11,.bsui .mx-xxl-11{margin-left:14rem !important}.bsui .m-xxl-12{margin:16rem !important}.bsui .mt-xxl-12,.bsui .my-xxl-12{margin-top:16rem !important}.bsui .mr-xxl-12,.bsui .mx-xxl-12{margin-right:16rem !important}.bsui .mb-xxl-12,.bsui .my-xxl-12{margin-bottom:16rem !important}.bsui .ml-xxl-12,.bsui .mx-xxl-12{margin-left:16rem !important}.bsui .p-xxl-0{padding:0 !important}.bsui .pt-xxl-0,.bsui .py-xxl-0{padding-top:0 !important}.bsui .pr-xxl-0,.bsui .px-xxl-0{padding-right:0 !important}.bsui .pb-xxl-0,.bsui .py-xxl-0{padding-bottom:0 !important}.bsui .pl-xxl-0,.bsui .px-xxl-0{padding-left:0 !important}.bsui .p-xxl-1{padding:.25rem !important}.bsui .pt-xxl-1,.bsui .py-xxl-1{padding-top:.25rem !important}.bsui .pr-xxl-1,.bsui .px-xxl-1{padding-right:.25rem !important}.bsui .pb-xxl-1,.bsui .py-xxl-1{padding-bottom:.25rem !important}.bsui .pl-xxl-1,.bsui .px-xxl-1{padding-left:.25rem !important}.bsui .p-xxl-2{padding:.5rem !important}.bsui .pt-xxl-2,.bsui .py-xxl-2{padding-top:.5rem !important}.bsui .pr-xxl-2,.bsui .px-xxl-2{padding-right:.5rem !important}.bsui .pb-xxl-2,.bsui .py-xxl-2{padding-bottom:.5rem !important}.bsui .pl-xxl-2,.bsui .px-xxl-2{padding-left:.5rem !important}.bsui .p-xxl-3{padding:1rem !important}.bsui .pt-xxl-3,.bsui .py-xxl-3{padding-top:1rem !important}.bsui .pr-xxl-3,.bsui .px-xxl-3{padding-right:1rem !important}.bsui .pb-xxl-3,.bsui .py-xxl-3{padding-bottom:1rem !important}.bsui .pl-xxl-3,.bsui .px-xxl-3{padding-left:1rem !important}.bsui .p-xxl-4{padding:1.5rem !important}.bsui .pt-xxl-4,.bsui .py-xxl-4{padding-top:1.5rem !important}.bsui .pr-xxl-4,.bsui .px-xxl-4{padding-right:1.5rem !important}.bsui .pb-xxl-4,.bsui .py-xxl-4{padding-bottom:1.5rem !important}.bsui .pl-xxl-4,.bsui .px-xxl-4{padding-left:1.5rem !important}.bsui .p-xxl-5{padding:3rem !important}.bsui .pt-xxl-5,.bsui .py-xxl-5{padding-top:3rem !important}.bsui .pr-xxl-5,.bsui .px-xxl-5{padding-right:3rem !important}.bsui .pb-xxl-5,.bsui .py-xxl-5{padding-bottom:3rem !important}.bsui .pl-xxl-5,.bsui .px-xxl-5{padding-left:3rem !important}.bsui .p-xxl-6{padding:4rem !important}.bsui .pt-xxl-6,.bsui .py-xxl-6{padding-top:4rem !important}.bsui .pr-xxl-6,.bsui .px-xxl-6{padding-right:4rem !important}.bsui .pb-xxl-6,.bsui .py-xxl-6{padding-bottom:4rem !important}.bsui .pl-xxl-6,.bsui .px-xxl-6{padding-left:4rem !important}.bsui .p-xxl-7{padding:6rem !important}.bsui .pt-xxl-7,.bsui .py-xxl-7{padding-top:6rem !important}.bsui .pr-xxl-7,.bsui .px-xxl-7{padding-right:6rem !important}.bsui .pb-xxl-7,.bsui .py-xxl-7{padding-bottom:6rem !important}.bsui .pl-xxl-7,.bsui .px-xxl-7{padding-left:6rem !important}.bsui .p-xxl-8{padding:8rem !important}.bsui .pt-xxl-8,.bsui .py-xxl-8{padding-top:8rem !important}.bsui .pr-xxl-8,.bsui .px-xxl-8{padding-right:8rem !important}.bsui .pb-xxl-8,.bsui .py-xxl-8{padding-bottom:8rem !important}.bsui .pl-xxl-8,.bsui .px-xxl-8{padding-left:8rem !important}.bsui .p-xxl-9{padding:10rem !important}.bsui .pt-xxl-9,.bsui .py-xxl-9{padding-top:10rem !important}.bsui .pr-xxl-9,.bsui .px-xxl-9{padding-right:10rem !important}.bsui .pb-xxl-9,.bsui .py-xxl-9{padding-bottom:10rem !important}.bsui .pl-xxl-9,.bsui .px-xxl-9{padding-left:10rem !important}.bsui .p-xxl-10{padding:12rem !important}.bsui .pt-xxl-10,.bsui .py-xxl-10{padding-top:12rem !important}.bsui .pr-xxl-10,.bsui .px-xxl-10{padding-right:12rem !important}.bsui .pb-xxl-10,.bsui .py-xxl-10{padding-bottom:12rem !important}.bsui .pl-xxl-10,.bsui .px-xxl-10{padding-left:12rem !important}.bsui .p-xxl-11{padding:14rem !important}.bsui .pt-xxl-11,.bsui .py-xxl-11{padding-top:14rem !important}.bsui .pr-xxl-11,.bsui .px-xxl-11{padding-right:14rem !important}.bsui .pb-xxl-11,.bsui .py-xxl-11{padding-bottom:14rem !important}.bsui .pl-xxl-11,.bsui .px-xxl-11{padding-left:14rem !important}.bsui .p-xxl-12{padding:16rem !important}.bsui .pt-xxl-12,.bsui .py-xxl-12{padding-top:16rem !important}.bsui .pr-xxl-12,.bsui .px-xxl-12{padding-right:16rem !important}.bsui .pb-xxl-12,.bsui .py-xxl-12{padding-bottom:16rem !important}.bsui .pl-xxl-12,.bsui .px-xxl-12{padding-left:16rem !important}.bsui .m-xxl-n1{margin:-.25rem !important}.bsui .mt-xxl-n1,.bsui .my-xxl-n1{margin-top:-.25rem !important}.bsui .mr-xxl-n1,.bsui .mx-xxl-n1{margin-right:-.25rem !important}.bsui .mb-xxl-n1,.bsui .my-xxl-n1{margin-bottom:-.25rem !important}.bsui .ml-xxl-n1,.bsui .mx-xxl-n1{margin-left:-.25rem !important}.bsui .m-xxl-n2{margin:-.5rem !important}.bsui .mt-xxl-n2,.bsui .my-xxl-n2{margin-top:-.5rem !important}.bsui .mr-xxl-n2,.bsui .mx-xxl-n2{margin-right:-.5rem !important}.bsui .mb-xxl-n2,.bsui .my-xxl-n2{margin-bottom:-.5rem !important}.bsui .ml-xxl-n2,.bsui .mx-xxl-n2{margin-left:-.5rem !important}.bsui .m-xxl-n3{margin:-1rem !important}.bsui .mt-xxl-n3,.bsui .my-xxl-n3{margin-top:-1rem !important}.bsui .mr-xxl-n3,.bsui .mx-xxl-n3{margin-right:-1rem !important}.bsui .mb-xxl-n3,.bsui .my-xxl-n3{margin-bottom:-1rem !important}.bsui .ml-xxl-n3,.bsui .mx-xxl-n3{margin-left:-1rem !important}.bsui .m-xxl-n4{margin:-1.5rem !important}.bsui .mt-xxl-n4,.bsui .my-xxl-n4{margin-top:-1.5rem !important}.bsui .mr-xxl-n4,.bsui .mx-xxl-n4{margin-right:-1.5rem !important}.bsui .mb-xxl-n4,.bsui .my-xxl-n4{margin-bottom:-1.5rem !important}.bsui .ml-xxl-n4,.bsui .mx-xxl-n4{margin-left:-1.5rem !important}.bsui .m-xxl-n5{margin:-3rem !important}.bsui .mt-xxl-n5,.bsui .my-xxl-n5{margin-top:-3rem !important}.bsui .mr-xxl-n5,.bsui .mx-xxl-n5{margin-right:-3rem !important}.bsui .mb-xxl-n5,.bsui .my-xxl-n5{margin-bottom:-3rem !important}.bsui .ml-xxl-n5,.bsui .mx-xxl-n5{margin-left:-3rem !important}.bsui .m-xxl-n6{margin:-4rem !important}.bsui .mt-xxl-n6,.bsui .my-xxl-n6{margin-top:-4rem !important}.bsui .mr-xxl-n6,.bsui .mx-xxl-n6{margin-right:-4rem !important}.bsui .mb-xxl-n6,.bsui .my-xxl-n6{margin-bottom:-4rem !important}.bsui .ml-xxl-n6,.bsui .mx-xxl-n6{margin-left:-4rem !important}.bsui .m-xxl-n7{margin:-6rem !important}.bsui .mt-xxl-n7,.bsui .my-xxl-n7{margin-top:-6rem !important}.bsui .mr-xxl-n7,.bsui .mx-xxl-n7{margin-right:-6rem !important}.bsui .mb-xxl-n7,.bsui .my-xxl-n7{margin-bottom:-6rem !important}.bsui .ml-xxl-n7,.bsui .mx-xxl-n7{margin-left:-6rem !important}.bsui .m-xxl-n8{margin:-8rem !important}.bsui .mt-xxl-n8,.bsui .my-xxl-n8{margin-top:-8rem !important}.bsui .mr-xxl-n8,.bsui .mx-xxl-n8{margin-right:-8rem !important}.bsui .mb-xxl-n8,.bsui .my-xxl-n8{margin-bottom:-8rem !important}.bsui .ml-xxl-n8,.bsui .mx-xxl-n8{margin-left:-8rem !important}.bsui .m-xxl-n9{margin:-10rem !important}.bsui .mt-xxl-n9,.bsui .my-xxl-n9{margin-top:-10rem !important}.bsui .mr-xxl-n9,.bsui .mx-xxl-n9{margin-right:-10rem !important}.bsui .mb-xxl-n9,.bsui .my-xxl-n9{margin-bottom:-10rem !important}.bsui .ml-xxl-n9,.bsui .mx-xxl-n9{margin-left:-10rem !important}.bsui .m-xxl-n10{margin:-12rem !important}.bsui .mt-xxl-n10,.bsui .my-xxl-n10{margin-top:-12rem !important}.bsui .mr-xxl-n10,.bsui .mx-xxl-n10{margin-right:-12rem !important}.bsui .mb-xxl-n10,.bsui .my-xxl-n10{margin-bottom:-12rem !important}.bsui .ml-xxl-n10,.bsui .mx-xxl-n10{margin-left:-12rem !important}.bsui .m-xxl-n11{margin:-14rem !important}.bsui .mt-xxl-n11,.bsui .my-xxl-n11{margin-top:-14rem !important}.bsui .mr-xxl-n11,.bsui .mx-xxl-n11{margin-right:-14rem !important}.bsui .mb-xxl-n11,.bsui .my-xxl-n11{margin-bottom:-14rem !important}.bsui .ml-xxl-n11,.bsui .mx-xxl-n11{margin-left:-14rem !important}.bsui .m-xxl-n12{margin:-16rem !important}.bsui .mt-xxl-n12,.bsui .my-xxl-n12{margin-top:-16rem !important}.bsui .mr-xxl-n12,.bsui .mx-xxl-n12{margin-right:-16rem !important}.bsui .mb-xxl-n12,.bsui .my-xxl-n12{margin-bottom:-16rem !important}.bsui .ml-xxl-n12,.bsui .mx-xxl-n12{margin-left:-16rem !important}.bsui .m-xxl-auto{margin:auto !important}.bsui .mt-xxl-auto,.bsui .my-xxl-auto{margin-top:auto !important}.bsui .mr-xxl-auto,.bsui .mx-xxl-auto{margin-right:auto !important}.bsui .mb-xxl-auto,.bsui .my-xxl-auto{margin-bottom:auto !important}.bsui .ml-xxl-auto,.bsui .mx-xxl-auto{margin-left:auto !important}}.bsui .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.bsui .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.bsui .text-justify{text-align:justify !important}.bsui .text-wrap{white-space:normal !important}.bsui .text-nowrap{white-space:nowrap !important}.bsui .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bsui .text-left{text-align:left !important}.bsui .text-right{text-align:right !important}.bsui .text-center{text-align:center !important}@media (min-width: 576px){.bsui .text-sm-left{text-align:left !important}.bsui .text-sm-right{text-align:right !important}.bsui .text-sm-center{text-align:center !important}}@media (min-width: 768px){.bsui .text-md-left{text-align:left !important}.bsui .text-md-right{text-align:right !important}.bsui .text-md-center{text-align:center !important}}@media (min-width: 992px){.bsui .text-lg-left{text-align:left !important}.bsui .text-lg-right{text-align:right !important}.bsui .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.bsui .text-xl-left{text-align:left !important}.bsui .text-xl-right{text-align:right !important}.bsui .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.bsui .text-xxl-left{text-align:left !important}.bsui .text-xxl-right{text-align:right !important}.bsui .text-xxl-center{text-align:center !important}}.bsui .text-lowercase{text-transform:lowercase !important}.bsui .text-uppercase{text-transform:uppercase !important}.bsui .text-capitalize{text-transform:capitalize !important}.bsui .font-weight-light{font-weight:300 !important}.bsui .font-weight-lighter{font-weight:lighter !important}.bsui .font-weight-normal{font-weight:400 !important}.bsui .font-weight-bold{font-weight:700 !important}.bsui .font-weight-bolder{font-weight:bolder !important}.bsui .font-italic{font-style:italic !important}.bsui .text-white{color:#fff !important}.bsui .text-primary{color:#1e73be !important}.bsui a.text-primary:hover,.bsui a.text-primary:focus{color:#144b7c !important}.bsui .text-secondary{color:#6c757d !important}.bsui a.text-secondary:hover,.bsui a.text-secondary:focus{color:#494f54 !important}.bsui .text-success{color:#44c553 !important}.bsui a.text-success:hover,.bsui a.text-success:focus{color:#2d9038 !important}.bsui .text-info{color:#17a2b8 !important}.bsui a.text-info:hover,.bsui a.text-info:focus{color:#0f6674 !important}.bsui .text-warning{color:#ffc107 !important}.bsui a.text-warning:hover,.bsui a.text-warning:focus{color:#ba8b00 !important}.bsui .text-danger{color:#dc3545 !important}.bsui a.text-danger:hover,.bsui a.text-danger:focus{color:#a71d2a !important}.bsui .text-light{color:#f8f9fa !important}.bsui a.text-light:hover,.bsui a.text-light:focus{color:#cbd3da !important}.bsui .text-dark{color:#343a40 !important}.bsui a.text-dark:hover,.bsui a.text-dark:focus{color:#121416 !important}.bsui .text-white{color:#fff !important}.bsui a.text-white:hover,.bsui a.text-white:focus{color:#d9d9d9 !important}.bsui .text-purple{color:#ad6edd !important}.bsui a.text-purple:hover,.bsui a.text-purple:focus{color:#8a30ce !important}.bsui .text-salmon{color:#ff977a !important}.bsui a.text-salmon:hover,.bsui a.text-salmon:focus{color:#ff5b2e !important}.bsui .text-cyan{color:#35bdff !important}.bsui a.text-cyan:hover,.bsui a.text-cyan:focus{color:#009ce8 !important}.bsui .text-gray{color:#ced4da !important}.bsui a.text-gray:hover,.bsui a.text-gray:focus{color:#a2aeb9 !important}.bsui .text-gray-dark{color:#6c757d !important}.bsui a.text-gray-dark:hover,.bsui a.text-gray-dark:focus{color:#494f54 !important}.bsui .text-indigo{color:#502c6c !important}.bsui a.text-indigo:hover,.bsui a.text-indigo:focus{color:#281636 !important}.bsui .text-orange{color:#fbb500 !important}.bsui a.text-orange:hover,.bsui a.text-orange:focus{color:#af7e00 !important}.bsui .text-body{color:#212529 !important}.bsui .text-muted{color:#6c757d !important}.bsui .text-black-50{color:rgba(0,0,0,0.5) !important}.bsui .text-white-50{color:rgba(255,255,255,0.5) !important}.bsui .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bsui .text-decoration-none{text-decoration:none !important}.bsui .text-break{word-break:break-word !important;word-wrap:break-word !important}.bsui .text-reset{color:inherit !important}.bsui .visible{visibility:visible !important}.bsui .invisible{visibility:hidden !important}@media print{.bsui *,.bsui *::before,.bsui *::after{text-shadow:none !important;box-shadow:none !important}.bsui a:not(.btn){text-decoration:underline}.bsui abbr[title]::after{content:" (" attr(title) ")"}.bsui pre{white-space:pre-wrap !important}.bsui pre,.bsui blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.bsui tr,.bsui img{page-break-inside:avoid}.bsui p,.bsui h2,.bsui h3{orphans:3;widows:3}.bsui h2,.bsui h3{page-break-after:avoid}@page{.bsui{size:a3}}.bsui body{min-width:992px !important}.bsui .container{min-width:992px !important}.bsui .navbar{display:none}.bsui .badge{border:1px solid #000}.bsui .table{border-collapse:collapse !important}.bsui .table td,.bsui .table th{background-color:#fff !important}.bsui .table-bordered th,.bsui .table-bordered td{border:1px solid #dee2e6 !important}.bsui .table-dark{color:inherit}.bsui .table-dark th,.bsui .table-dark td,.bsui .table-dark thead th,.bsui .table-dark tbody+tbody{border-color:#dee2e6}.bsui .table .thead-dark th{color:inherit;border-color:#dee2e6}}.bsui .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.bsui .iconpicker-popover.popover.top,.bsui .iconpicker-popover.popover.topLeftCorner,.bsui .iconpicker-popover.popover.topLeft,.bsui .iconpicker-popover.popover.topRight,.bsui .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.bsui .iconpicker-popover.popover.right,.bsui .iconpicker-popover.popover.rightTop,.bsui .iconpicker-popover.popover.rightBottom{margin-left:10px}.bsui .iconpicker-popover.popover.bottom,.bsui .iconpicker-popover.popover.bottomRightCorner,.bsui .iconpicker-popover.popover.bottomRight,.bsui .iconpicker-popover.popover.bottomLeft,.bsui .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.bsui .iconpicker-popover.popover.left,.bsui .iconpicker-popover.popover.leftBottom,.bsui .iconpicker-popover.popover.leftTop{margin-left:-10px}.bsui .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.bsui .iconpicker-popover.popover.inline>.arrow{display:none}.bsui .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.bsui .dropdown-menu.iconpicker-container{padding:0}.bsui .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.bsui .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.bsui .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.bsui .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.bsui .iconpicker-popover .popover-footer:before,.bsui .iconpicker-popover .popover-footer:after{content:" ";display:table}.bsui .iconpicker-popover .popover-footer:after{clear:both}.bsui .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.bsui .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.bsui .iconpicker-popover.popover>.arrow,.bsui .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bsui .iconpicker-popover.popover>.arrow{border-width:11px}.bsui .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.bsui .iconpicker-popover.popover.top>.arrow,.bsui .iconpicker-popover.popover.topLeft>.arrow,.bsui .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.bsui .iconpicker-popover.popover.top>.arrow:after,.bsui .iconpicker-popover.popover.topLeft>.arrow:after,.bsui .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.bsui .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.right>.arrow,.bsui .iconpicker-popover.popover.rightTop>.arrow,.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.right>.arrow:after,.bsui .iconpicker-popover.popover.rightTop>.arrow:after,.bsui .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.bsui .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.bottom>.arrow,.bsui .iconpicker-popover.popover.bottomRight>.arrow,.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.bsui .iconpicker-popover.popover.bottom>.arrow:after,.bsui .iconpicker-popover.popover.bottomRight>.arrow:after,.bsui .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.bsui .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.bsui .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.bsui .iconpicker-popover.popover.left>.arrow,.bsui .iconpicker-popover.popover.leftBottom>.arrow,.bsui .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.bsui .iconpicker-popover.popover.left>.arrow:after,.bsui .iconpicker-popover.popover.leftBottom>.arrow:after,.bsui .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.bsui .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.bsui .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.bsui .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.bsui .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.bsui .iconpicker:before,.bsui .iconpicker:after{content:" ";display:table}.bsui .iconpicker:after{clear:both}.bsui .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.bsui .iconpicker .iconpicker-items:before,.bsui .iconpicker .iconpicker-items:after{content:" ";display:table}.bsui .iconpicker .iconpicker-items:after{clear:both}.bsui .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.bsui .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.bsui .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.bsui .iconpicker-component{cursor:pointer}.bsui .tofront{position:relative;z-index:1}.bsui .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.bsui .c-pointer:hover{cursor:pointer}.bsui .c-move:hover{cursor:move}.bsui .z-index-1{z-index:1}@media (max-width: 991.98px){.bsui .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.bsui .display-3{font-size:2rem}}.bsui .row.gap-y>.col,.bsui .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.bsui .mt-neg5{margin-top:-5rem}.bsui .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.bsui .h-md-100-v{height:100vh}.bsui .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.bsui .h-xl-300{height:300px}.bsui .h-max-380{max-height:380px}}.bsui .btn-round{border-radius:30px !important}.bsui .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.bsui .btn:hover,.bsui .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.bsui .btn-lg,.bsui .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.bsui .btn-sm,.bsui .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.bsui .btn-link:hover,.bsui .btn-link:focus{box-shadow:none}.bsui .btn-link.btn-primary{color:#1e73be;border-color:transparent}.bsui .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-success{color:#44c553;border-color:transparent}.bsui .btn-link.btn-info{color:#17a2b8;border-color:transparent}.bsui .btn-link.btn-warning{color:#ffc107;border-color:transparent}.bsui .btn-link.btn-danger{color:#dc3545;border-color:transparent}.bsui .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.bsui .btn-link.btn-dark{color:#343a40;border-color:transparent}.bsui .btn-link.btn-white{color:#fff;border-color:transparent}.bsui .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.bsui .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.bsui .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.bsui .btn-link.btn-gray{color:#ced4da;border-color:transparent}.bsui .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.bsui .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.bsui .btn-link.btn-orange{color:#fbb500;border-color:transparent}.bsui .btn-white{background-color:#fff}.bsui .input-round{border-radius:30px !important}.bsui .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.bsui .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.bsui .navbar{font-weight:400}.bsui .navbar-brand{margin-right:2rem;font-size:1.25rem}.bsui .dropdown-item{font-weight:300}.bsui .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.bsui .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.bsui .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.bsui .dropdown-menu.dropdown-caret-0:before{content:none}.bsui .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-brand:hover,.bsui .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-nav .nav-link:hover,.bsui .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.bsui .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.bsui .navbar-light .navbar-nav .show>.nav-link,.bsui .navbar-light .navbar-nav .active>.nav-link,.bsui .navbar-light .navbar-nav .nav-link.show,.bsui .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.bsui .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.bsui .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.bsui .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.bsui .navbar-light .navbar-text a:hover,.bsui .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.bsui .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.bsui .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.bsui .jumbotron-lg{padding:10rem 0}.bsui .jumbotron-xl{padding:15rem 0}.bsui .jumbotron-xl{min-height:100vh}.bsui .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bsui .bg-black{background-color:#000}.bsui .overlay{position:relative}.bsui .overlay .container{position:relative}.bsui .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.bsui .overlay-black:before{background-color:rgba(0,0,0,0.5)}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.bsui .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bsui .bg-primary{fill:#1e73be !important}.bsui .bg-secondary{fill:#6c757d !important}.bsui .bg-success{fill:#44c553 !important}.bsui .bg-info{fill:#17a2b8 !important}.bsui .bg-warning{fill:#ffc107 !important}.bsui .bg-danger{fill:#dc3545 !important}.bsui .bg-light{fill:#f8f9fa !important}.bsui .bg-dark{fill:#343a40 !important}.bsui .bg-white{fill:#fff !important}.bsui .bg-purple{fill:#ad6edd !important}.bsui .bg-salmon{fill:#ff977a !important}.bsui .bg-cyan{fill:#35bdff !important}.bsui .bg-gray{fill:#ced4da !important}.bsui .bg-gray-dark{fill:#6c757d !important}.bsui .bg-indigo{fill:#502c6c !important}.bsui .bg-orange{fill:#fbb500 !important}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.bsui .alert-primary hr{border-top-color:#1b66a8}.bsui .alert-primary .alert-link{color:#e6e6e6}.bsui .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-secondary hr{border-top-color:#60686f}.bsui .alert-secondary .alert-link{color:#e6e6e6}.bsui .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.bsui .alert-success hr{border-top-color:#39b747}.bsui .alert-success .alert-link{color:#e6e6e6}.bsui .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.bsui .alert-info hr{border-top-color:#148ea1}.bsui .alert-info .alert-link{color:#e6e6e6}.bsui .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.bsui .alert-warning hr{border-top-color:#edb100}.bsui .alert-warning .alert-link{color:#e6e6e6}.bsui .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.bsui .alert-danger hr{border-top-color:#d32535}.bsui .alert-danger .alert-link{color:#e6e6e6}.bsui .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.bsui .alert-light hr{border-top-color:#e9ecef}.bsui .alert-light .alert-link{color:#e6e6e6}.bsui .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.bsui .alert-dark hr{border-top-color:#292d32}.bsui .alert-dark .alert-link{color:#e6e6e6}.bsui .alert-white{color:#fff;background-color:#fff;border-color:#fff}.bsui .alert-white hr{border-top-color:#f2f2f2}.bsui .alert-white .alert-link{color:#e6e6e6}.bsui .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.bsui .alert-purple hr{border-top-color:#a159d8}.bsui .alert-purple .alert-link{color:#e6e6e6}.bsui .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.bsui .alert-salmon hr{border-top-color:#ff8361}.bsui .alert-salmon .alert-link{color:#e6e6e6}.bsui .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.bsui .alert-cyan hr{border-top-color:#1cb5ff}.bsui .alert-cyan .alert-link{color:#e6e6e6}.bsui .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.bsui .alert-gray hr{border-top-color:#bfc7cf}.bsui .alert-gray .alert-link{color:#e6e6e6}.bsui .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.bsui .alert-gray-dark hr{border-top-color:#60686f}.bsui .alert-gray-dark .alert-link{color:#e6e6e6}.bsui .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.bsui .alert-indigo hr{border-top-color:#43255a}.bsui .alert-indigo .alert-link{color:#e6e6e6}.bsui .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.bsui .alert-orange hr{border-top-color:#e2a300}.bsui .alert-orange .alert-link{color:#e6e6e6}.bsui ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.bsui .loginarea{z-index:1111}}.bsui .geodir-add-files .moxie-shim{position:initial !important;background:transparent}.bsui .iconbox{border:1px solid;text-align:center;display:inline-block}.bsui .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.bsui .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.bsui .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.bsui .btn-round{border-radius:30px !important}.bsui .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.bsui .btn-facebook:focus,.bsui .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-facebook.disabled,.bsui .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.bsui .btn-facebook:not(:disabled):not(.disabled):active,.bsui .btn-facebook:not(:disabled):not(.disabled).active,.show>.bsui .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.bsui .btn-facebook:not(:disabled):not(.disabled):active:focus,.bsui .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.bsui .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.bsui .btn-twitter:focus,.bsui .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-twitter.disabled,.bsui .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.bsui .btn-twitter:not(:disabled):not(.disabled):active,.bsui .btn-twitter:not(:disabled):not(.disabled).active,.show>.bsui .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.bsui .btn-twitter:not(:disabled):not(.disabled):active:focus,.bsui .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.bsui .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.bsui .btn-instagram:focus,.bsui .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram.disabled,.bsui .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.bsui .btn-instagram:not(:disabled):not(.disabled):active,.bsui .btn-instagram:not(:disabled):not(.disabled).active,.show>.bsui .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.bsui .btn-instagram:not(:disabled):not(.disabled):active:focus,.bsui .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.bsui .btn-linkedin:focus,.bsui .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-linkedin.disabled,.bsui .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.bsui .btn-linkedin:not(:disabled):not(.disabled):active,.bsui .btn-linkedin:not(:disabled):not(.disabled).active,.show>.bsui .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.bsui .btn-linkedin:not(:disabled):not(.disabled):active:focus,.bsui .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.bsui .btn-flickr:focus,.bsui .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-flickr.disabled,.bsui .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.bsui .btn-flickr:not(:disabled):not(.disabled):active,.bsui .btn-flickr:not(:disabled):not(.disabled).active,.show>.bsui .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.bsui .btn-flickr:not(:disabled):not(.disabled):active:focus,.bsui .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.bsui .btn-github:focus,.bsui .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-github.disabled,.bsui .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.bsui .btn-github:not(:disabled):not(.disabled):active,.bsui .btn-github:not(:disabled):not(.disabled).active,.show>.bsui .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.bsui .btn-github:not(:disabled):not(.disabled):active:focus,.bsui .btn-github:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.bsui .btn-youtube:focus,.bsui .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-youtube.disabled,.bsui .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.bsui .btn-youtube:not(:disabled):not(.disabled):active,.bsui .btn-youtube:not(:disabled):not(.disabled).active,.show>.bsui .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.bsui .btn-youtube:not(:disabled):not(.disabled):active:focus,.bsui .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.bsui .btn-wordpress:focus,.bsui .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-wordpress.disabled,.bsui .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.bsui .btn-wordpress:not(:disabled):not(.disabled):active,.bsui .btn-wordpress:not(:disabled):not(.disabled).active,.show>.bsui .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.bsui .btn-wordpress:not(:disabled):not(.disabled):active:focus,.bsui .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.bsui .btn-google:focus,.bsui .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-google.disabled,.bsui .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.bsui .btn-google:not(:disabled):not(.disabled):active,.bsui .btn-google:not(:disabled):not(.disabled).active,.show>.bsui .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.bsui .btn-google:not(:disabled):not(.disabled):active:focus,.bsui .btn-google:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.bsui .btn-yahoo:focus,.bsui .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-yahoo.disabled,.bsui .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.bsui .btn-yahoo:not(:disabled):not(.disabled):active,.bsui .btn-yahoo:not(:disabled):not(.disabled).active,.show>.bsui .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.bsui .btn-yahoo:not(:disabled):not(.disabled):active:focus,.bsui .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.bsui .btn-vkontakte:focus,.bsui .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-vkontakte.disabled,.bsui .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.bsui .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.bsui .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.bsui .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.bsui .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.bsui .btn-tiktok:focus,.bsui .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-tiktok.disabled,.bsui .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.bsui .btn-tiktok:not(:disabled):not(.disabled):active,.bsui .btn-tiktok:not(:disabled):not(.disabled).active,.show>.bsui .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.bsui .btn-tiktok:not(:disabled):not(.disabled):active:focus,.bsui .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.bsui .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.bsui .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-circle.btn-sm,.bsui .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-circle.btn-lg,.bsui .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.bsui .btn-square.btn-sm,.bsui .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.bsui .btn-square.btn-lg,.bsui .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.bsui .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.bsui .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.bsui .btn-icon-split.btn-sm .icon,.bsui .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.bsui .btn-icon-split.btn-sm .text,.bsui .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.bsui .btn-icon-split.btn-lg .icon,.bsui .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.bsui .btn-icon-split.btn-lg .text,.bsui .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.bsui .alert a{color:inherit;text-decoration:underline}.bsui .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.bsui .row.row-cols-md-0{display:block}.bsui .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.bsui .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.bsui .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.bsui .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.bsui .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.bsui .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.bsui .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.bsui .row.row-cols-md-0 .card .card-footer{flex:1 100%}.bsui .row.row-cols-md-0 .gv-hide-0{display:none}}.bsui .row-cols-md-2 .gv-hide-2{display:none}.bsui .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.bsui .row-cols-md-3 .gv-hide-2,.bsui .row-cols-md-3 .gv-hide-3{display:none}.bsui .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.bsui .row-cols-md-4 .gv-hide-2,.bsui .row-cols-md-4 .gv-hide-3,.bsui .row-cols-md-4 .gv-hide-4{display:none}.bsui .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.bsui .row-cols-md-5 .gv-hide-2,.bsui .row-cols-md-5 .gv-hide-3,.bsui .row-cols-md-5 .gv-hide-4,.bsui .row-cols-md-5 .gv-hide-5{display:none}.bsui .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.bsui .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.bsui .row .gv-hide-0,.bsui .row .gv-hide-2,.bsui .row .gv-hide-3,.bsui .row .gv-hide-4,.bsui .row .gv-hide-5{display:none}.bsui .row .gv-hide-s-2 .gv-secondary,.bsui .row .gv-hide-s-3 .gv-secondary,.bsui .row .gv-hide-s-4 .gv-secondary,.bsui .row .gv-hide-s-5 .gv-secondary{display:none}}.bsui .border-width-1{border-width:1px !important}.bsui .border-width-2{border-width:2px !important}.bsui .border-width-3{border-width:3px !important}.bsui .border-width-4{border-width:4px !important}.bsui .border-width-5{border-width:5px !important}.bsui .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bsui .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.bsui .hover-content{display:none}.bsui .hover-content.fas{display:none}.bsui .btn:hover .hover-content,.bsui .badge:hover .hover-content,.bsui .hover-swap:hover .hover-content{display:initial}.bsui .btn:hover .hover-content-original,.bsui .badge:hover .hover-content-original,.bsui .hover-swap:hover .hover-content-original{display:none}.bsui .overflow-visible{overflow:visible}.bsui .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.bsui .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.bsui .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.bsui .embed-item-cover-xy{object-fit:cover;height:100%}.bsui .embed-item-cover-x{height:auto !important}.bsui .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.bsui .embed-item-contain{object-fit:contain}.bsui .embed-has-action{transition:all .3s ease-in-out}.bsui .embed-has-action i,.bsui .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.bsui .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.bsui .embed-has-action:hover i,.bsui .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.bsui .flatpickr-month .flatpickr-current-month>*{display:inline-block}.bsui .custom-select{-webkit-appearance:none;-moz-appearance:none}.bsui .badge-facebook{color:#fff;background-color:#3b5998}.bsui a.badge-facebook:hover,.bsui a.badge-facebook:focus{color:#fff;background-color:#2d4373}.bsui a.badge-facebook:focus,.bsui a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.bsui .badge-twitter{color:#212529;background-color:#55acee}.bsui a.badge-twitter:hover,.bsui a.badge-twitter:focus{color:#212529;background-color:#2795e9}.bsui a.badge-twitter:focus,.bsui a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-linkedin{color:#fff;background-color:#0976b4}.bsui a.badge-linkedin:hover,.bsui a.badge-linkedin:focus{color:#fff;background-color:#075683}.bsui a.badge-linkedin:focus,.bsui a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.bsui .badge-flickr{color:#fff;background-color:#f8457e}.bsui a.badge-flickr:hover,.bsui a.badge-flickr:focus{color:#fff;background-color:#f6145c}.bsui a.badge-flickr:focus,.bsui a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.bsui .badge-github{color:#fff;background-color:#333}.bsui a.badge-github:hover,.bsui a.badge-github:focus{color:#fff;background-color:#1a1a1a}.bsui a.badge-github:focus,.bsui a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.bsui .badge-youtube{color:#fff;background-color:#e52d27}.bsui a.badge-youtube:hover,.bsui a.badge-youtube:focus{color:#fff;background-color:#c21d17}.bsui a.badge-youtube:focus,.bsui a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.bsui .badge-wordpress{color:#fff;background-color:#207297}.bsui a.badge-wordpress:hover,.bsui a.badge-wordpress:focus{color:#fff;background-color:#17526d}.bsui a.badge-wordpress:focus,.bsui a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.bsui .badge-google{color:#fff;background-color:#ea4335}.bsui a.badge-google:hover,.bsui a.badge-google:focus{color:#fff;background-color:#d62516}.bsui a.badge-google:focus,.bsui a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.bsui .badge-yahoo{color:#fff;background-color:#6040d2}.bsui a.badge-yahoo:hover,.bsui a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.bsui a.badge-yahoo:focus,.bsui a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.bsui .badge-vkontakte{color:#fff;background-color:#4a76a8}.bsui a.badge-vkontakte:hover,.bsui a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.bsui a.badge-vkontakte:focus,.bsui a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.bsui .badge-tiktok{color:#fff;background-color:#010101}.bsui a.badge-tiktok:hover,.bsui a.badge-tiktok:focus{color:#fff;background-color:#000}.bsui a.badge-tiktok:focus,.bsui a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.bsui .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui a.badge-instagram:hover,.bsui a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.bsui a.badge-instagram:focus,.bsui a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.bsui .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bsui .bg-initial{background:initial !important}.bsui .bg-inherit{background:inherit !important}.bsui .overlay-white:before{background-color:rgba(255,255,255,0.5)}.bsui .form-label-group{position:relative;margin-bottom:1rem}.bsui .form-label-group>input,.bsui .form-label-group>textarea,.bsui .form-label-group>label{padding:.45rem 1.2rem}.bsui .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.bsui .form-label-group input::-webkit-input-placeholder,.bsui .form-label-group input:-ms-input-placeholder,.bsui .form-label-group input::-ms-input-placeholder,.bsui .form-label-group input::-moz-placeholder,.bsui .form-label-group input::placeholder,.bsui .form-label-group textarea::-webkit-input-placeholder,.bsui .form-label-group textarea:-ms-input-placeholder,.bsui .form-label-group textarea::-ms-input-placeholder,.bsui .form-label-group textarea::-moz-placeholder,.bsui .form-label-group textarea::placeholder{color:transparent}.bsui .form-label-group input:not(:placeholder-shown),.bsui .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.bsui .form-label-group input:not(:placeholder-shown) ~ label,.bsui .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.bsui .ab-left,.bsui .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.bsui .ab-left-angle,.bsui .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-left-angle .badge,.bsui .ab-top-left-angle .badge{display:block}.bsui .ab-right,.bsui .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.bsui .ab-right-angle,.bsui .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.bsui .ab-right-angle .badge,.bsui .ab-top-right-angle .badge{display:block}.bsui .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.bsui .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-left-angle .badge{display:block}.bsui .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.bsui .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.bsui .ab-bottom-right-angle .badge{display:block}.bsui .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.bsui .clear-both{clear:both}.bsui .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.bsui .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.bsui .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.bsui .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.bsui .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.bsui .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.bsui .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.bsui .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.bsui .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.bsui .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.bsui .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.bsui .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.bsui .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.bsui .hover-zoom{transition:transform .2s}.bsui .hover-zoom:hover{transform:scale(1.2)}.bsui .hover-shadow{transition:all ease 0.3s}.bsui .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.bsui .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-up:hover{top:-10px !important}.bsui .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-down:hover{bottom:-10px !important}.bsui .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-left:hover{left:-10px !important}.bsui .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.bsui .hover-move-right:hover{right:-10px !important}.bsui .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bsui .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bsui .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bsui .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bsui .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bsui .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bsui .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bsui .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bsui .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bsui .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bsui .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bsui .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bsui .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bsui .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bsui .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bsui .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} diff --git a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-fse.css b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-fse.css index 8e21da4..faa53d6 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-fse.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-fse.css @@ -11,4 +11,4 @@ * Licensed under the MIT License * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE * - */}.editor-styles-wrapper :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.editor-styles-wrapper *,.editor-styles-wrapper *::before,.editor-styles-wrapper *::after{box-sizing:border-box}.editor-styles-wrapper html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}.editor-styles-wrapper article,.editor-styles-wrapper aside,.editor-styles-wrapper figcaption,.editor-styles-wrapper figure,.editor-styles-wrapper footer,.editor-styles-wrapper header,.editor-styles-wrapper hgroup,.editor-styles-wrapper main,.editor-styles-wrapper nav,.editor-styles-wrapper section{display:block}.editor-styles-wrapper body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:left;background-color:#fff}.editor-styles-wrapper [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.editor-styles-wrapper hr{box-sizing:content-box;height:0;overflow:visible}.editor-styles-wrapper h1,.editor-styles-wrapper h2,.editor-styles-wrapper h3,.editor-styles-wrapper h4,.editor-styles-wrapper h5,.editor-styles-wrapper h6{margin-top:0;margin-bottom:.5rem}.editor-styles-wrapper p{margin-top:0;margin-bottom:1rem}.editor-styles-wrapper abbr[title],.editor-styles-wrapper abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.editor-styles-wrapper address{margin-bottom:1rem;font-style:normal;line-height:inherit}.editor-styles-wrapper ol,.editor-styles-wrapper ul,.editor-styles-wrapper dl{margin-top:0;margin-bottom:1rem}.editor-styles-wrapper ol ol,.editor-styles-wrapper ul ul,.editor-styles-wrapper ol ul,.editor-styles-wrapper ul ol{margin-bottom:0}.editor-styles-wrapper dt{font-weight:700}.editor-styles-wrapper dd{margin-bottom:.5rem;margin-left:0}.editor-styles-wrapper blockquote{margin:0 0 1rem}.editor-styles-wrapper b,.editor-styles-wrapper strong{font-weight:bolder}.editor-styles-wrapper small{font-size:80%}.editor-styles-wrapper sub,.editor-styles-wrapper sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.editor-styles-wrapper sub{bottom:-.25em}.editor-styles-wrapper sup{top:-.5em}.editor-styles-wrapper a{color:#1e73be;text-decoration:none;background-color:transparent}.editor-styles-wrapper a:hover{color:#144b7c;text-decoration:underline}.editor-styles-wrapper a:not([href]):not([class]){color:inherit;text-decoration:none}.editor-styles-wrapper a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.editor-styles-wrapper pre,.editor-styles-wrapper code,.editor-styles-wrapper kbd,.editor-styles-wrapper samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.editor-styles-wrapper pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.editor-styles-wrapper figure{margin:0 0 1rem}.editor-styles-wrapper img{vertical-align:middle;border-style:none}.editor-styles-wrapper svg{overflow:hidden;vertical-align:middle}.editor-styles-wrapper table{border-collapse:collapse}.editor-styles-wrapper caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}.editor-styles-wrapper th{text-align:inherit;text-align:-webkit-match-parent}.editor-styles-wrapper label{display:inline-block;margin-bottom:.5rem}.editor-styles-wrapper button{border-radius:0}.editor-styles-wrapper button:focus:not(:focus-visible){outline:0}.editor-styles-wrapper input,.editor-styles-wrapper button,.editor-styles-wrapper select,.editor-styles-wrapper optgroup,.editor-styles-wrapper textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.editor-styles-wrapper button,.editor-styles-wrapper input{overflow:visible}.editor-styles-wrapper button,.editor-styles-wrapper select{text-transform:none}.editor-styles-wrapper [role="button"]{cursor:pointer}.editor-styles-wrapper select{word-wrap:normal}.editor-styles-wrapper button,.editor-styles-wrapper [type="button"],.editor-styles-wrapper [type="reset"],.editor-styles-wrapper [type="submit"]{-webkit-appearance:button}.editor-styles-wrapper button:not(:disabled),.editor-styles-wrapper [type="button"]:not(:disabled),.editor-styles-wrapper [type="reset"]:not(:disabled),.editor-styles-wrapper [type="submit"]:not(:disabled){cursor:pointer}.editor-styles-wrapper button::-moz-focus-inner,.editor-styles-wrapper [type="button"]::-moz-focus-inner,.editor-styles-wrapper [type="reset"]::-moz-focus-inner,.editor-styles-wrapper [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.editor-styles-wrapper input[type="radio"],.editor-styles-wrapper input[type="checkbox"]{box-sizing:border-box;padding:0}.editor-styles-wrapper textarea{overflow:auto;resize:vertical}.editor-styles-wrapper fieldset{min-width:0;padding:0;margin:0;border:0}.editor-styles-wrapper legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.editor-styles-wrapper progress{vertical-align:baseline}.editor-styles-wrapper [type="number"]::-webkit-inner-spin-button,.editor-styles-wrapper [type="number"]::-webkit-outer-spin-button{height:auto}.editor-styles-wrapper [type="search"]{outline-offset:-2px;-webkit-appearance:none}.editor-styles-wrapper [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.editor-styles-wrapper ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.editor-styles-wrapper output{display:inline-block}.editor-styles-wrapper summary{display:list-item;cursor:pointer}.editor-styles-wrapper template{display:none}.editor-styles-wrapper [hidden]{display:none !important}.editor-styles-wrapper h1,.editor-styles-wrapper h2,.editor-styles-wrapper h3,.editor-styles-wrapper h4,.editor-styles-wrapper h5,.editor-styles-wrapper h6,.editor-styles-wrapper .h1,.editor-styles-wrapper .h2,.editor-styles-wrapper .h3,.editor-styles-wrapper .h4,.editor-styles-wrapper .h5,.editor-styles-wrapper .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.editor-styles-wrapper h1,.editor-styles-wrapper .h1{font-size:2.5rem}.editor-styles-wrapper h2,.editor-styles-wrapper .h2{font-size:2rem}.editor-styles-wrapper h3,.editor-styles-wrapper .h3{font-size:1.75rem}.editor-styles-wrapper h4,.editor-styles-wrapper .h4{font-size:1.5rem}.editor-styles-wrapper h5,.editor-styles-wrapper .h5{font-size:1.25rem}.editor-styles-wrapper h6,.editor-styles-wrapper .h6{font-size:1rem}.editor-styles-wrapper .lead{font-size:1.25rem;font-weight:300}.editor-styles-wrapper .display-1{font-size:6rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.editor-styles-wrapper small,.editor-styles-wrapper .small{font-size:85%;font-weight:400}.editor-styles-wrapper mark,.editor-styles-wrapper .mark{padding:.2em;background-color:#fcf8e3}.editor-styles-wrapper .list-unstyled{padding-left:0;list-style:none}.editor-styles-wrapper .list-inline{padding-left:0;list-style:none}.editor-styles-wrapper .list-inline-item{display:inline-block}.editor-styles-wrapper .list-inline-item:not(:last-child){margin-right:.5rem}.editor-styles-wrapper .initialism{font-size:90%;text-transform:uppercase}.editor-styles-wrapper .blockquote{margin-bottom:1rem;font-size:1.25rem}.editor-styles-wrapper .blockquote-footer{display:block;font-size:85%;color:#6c757d}.editor-styles-wrapper .blockquote-footer::before{content:"\2014\00A0"}.editor-styles-wrapper .img-fluid{max-width:100%;height:auto}.editor-styles-wrapper .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.editor-styles-wrapper .figure{display:inline-block}.editor-styles-wrapper .figure-img{margin-bottom:.5rem;line-height:1}.editor-styles-wrapper .figure-caption{font-size:90%;color:#6c757d}.editor-styles-wrapper code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.editor-styles-wrapper code{color:inherit}.editor-styles-wrapper kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.editor-styles-wrapper kbd kbd{padding:0;font-size:100%;font-weight:700}.editor-styles-wrapper pre{display:block;font-size:100%;color:#212529}.editor-styles-wrapper pre code{font-size:inherit;color:inherit;word-break:normal}.editor-styles-wrapper .pre-scrollable{max-height:340px;overflow-y:scroll}.editor-styles-wrapper .container,.editor-styles-wrapper .container-fluid,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl,.editor-styles-wrapper .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm{max-width:540px}}@media (min-width: 768px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md{max-width:720px}}@media (min-width: 992px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg{max-width:960px}}@media (min-width: 1200px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl{max-width:1140px}}@media (min-width: 1400px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl,.editor-styles-wrapper .container-xxl{max-width:1320px}}.editor-styles-wrapper .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.editor-styles-wrapper .no-gutters{margin-right:0;margin-left:0}.editor-styles-wrapper .no-gutters>.col,.editor-styles-wrapper .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.editor-styles-wrapper .col-1,.editor-styles-wrapper .col-2,.editor-styles-wrapper .col-3,.editor-styles-wrapper .col-4,.editor-styles-wrapper .col-5,.editor-styles-wrapper .col-6,.editor-styles-wrapper .col-7,.editor-styles-wrapper .col-8,.editor-styles-wrapper .col-9,.editor-styles-wrapper .col-10,.editor-styles-wrapper .col-11,.editor-styles-wrapper .col-12,.editor-styles-wrapper .col,.editor-styles-wrapper .col-auto,.editor-styles-wrapper .col-sm-1,.editor-styles-wrapper .col-sm-2,.editor-styles-wrapper .col-sm-3,.editor-styles-wrapper .col-sm-4,.editor-styles-wrapper .col-sm-5,.editor-styles-wrapper .col-sm-6,.editor-styles-wrapper .col-sm-7,.editor-styles-wrapper .col-sm-8,.editor-styles-wrapper .col-sm-9,.editor-styles-wrapper .col-sm-10,.editor-styles-wrapper .col-sm-11,.editor-styles-wrapper .col-sm-12,.editor-styles-wrapper .col-sm,.editor-styles-wrapper .col-sm-auto,.editor-styles-wrapper .col-md-1,.editor-styles-wrapper .col-md-2,.editor-styles-wrapper .col-md-3,.editor-styles-wrapper .col-md-4,.editor-styles-wrapper .col-md-5,.editor-styles-wrapper .col-md-6,.editor-styles-wrapper .col-md-7,.editor-styles-wrapper .col-md-8,.editor-styles-wrapper .col-md-9,.editor-styles-wrapper .col-md-10,.editor-styles-wrapper .col-md-11,.editor-styles-wrapper .col-md-12,.editor-styles-wrapper .col-md,.editor-styles-wrapper .col-md-auto,.editor-styles-wrapper .col-lg-1,.editor-styles-wrapper .col-lg-2,.editor-styles-wrapper .col-lg-3,.editor-styles-wrapper .col-lg-4,.editor-styles-wrapper .col-lg-5,.editor-styles-wrapper .col-lg-6,.editor-styles-wrapper .col-lg-7,.editor-styles-wrapper .col-lg-8,.editor-styles-wrapper .col-lg-9,.editor-styles-wrapper .col-lg-10,.editor-styles-wrapper .col-lg-11,.editor-styles-wrapper .col-lg-12,.editor-styles-wrapper .col-lg,.editor-styles-wrapper .col-lg-auto,.editor-styles-wrapper .col-xl-1,.editor-styles-wrapper .col-xl-2,.editor-styles-wrapper .col-xl-3,.editor-styles-wrapper .col-xl-4,.editor-styles-wrapper .col-xl-5,.editor-styles-wrapper .col-xl-6,.editor-styles-wrapper .col-xl-7,.editor-styles-wrapper .col-xl-8,.editor-styles-wrapper .col-xl-9,.editor-styles-wrapper .col-xl-10,.editor-styles-wrapper .col-xl-11,.editor-styles-wrapper .col-xl-12,.editor-styles-wrapper .col-xl,.editor-styles-wrapper .col-xl-auto,.editor-styles-wrapper .col-xxl-1,.editor-styles-wrapper .col-xxl-2,.editor-styles-wrapper .col-xxl-3,.editor-styles-wrapper .col-xxl-4,.editor-styles-wrapper .col-xxl-5,.editor-styles-wrapper .col-xxl-6,.editor-styles-wrapper .col-xxl-7,.editor-styles-wrapper .col-xxl-8,.editor-styles-wrapper .col-xxl-9,.editor-styles-wrapper .col-xxl-10,.editor-styles-wrapper .col-xxl-11,.editor-styles-wrapper .col-xxl-12,.editor-styles-wrapper .col-xxl,.editor-styles-wrapper .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.editor-styles-wrapper .col{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-first{order:-1}.editor-styles-wrapper .order-last{order:13}.editor-styles-wrapper .order-0{order:0}.editor-styles-wrapper .order-1{order:1}.editor-styles-wrapper .order-2{order:2}.editor-styles-wrapper .order-3{order:3}.editor-styles-wrapper .order-4{order:4}.editor-styles-wrapper .order-5{order:5}.editor-styles-wrapper .order-6{order:6}.editor-styles-wrapper .order-7{order:7}.editor-styles-wrapper .order-8{order:8}.editor-styles-wrapper .order-9{order:9}.editor-styles-wrapper .order-10{order:10}.editor-styles-wrapper .order-11{order:11}.editor-styles-wrapper .order-12{order:12}.editor-styles-wrapper .offset-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-3{margin-left:25%}.editor-styles-wrapper .offset-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-6{margin-left:50%}.editor-styles-wrapper .offset-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-9{margin-left:75%}.editor-styles-wrapper .offset-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-11{margin-left:91.66666667%}@media (min-width: 576px){.editor-styles-wrapper .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-sm-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-sm-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-sm-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-sm-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-sm-first{order:-1}.editor-styles-wrapper .order-sm-last{order:13}.editor-styles-wrapper .order-sm-0{order:0}.editor-styles-wrapper .order-sm-1{order:1}.editor-styles-wrapper .order-sm-2{order:2}.editor-styles-wrapper .order-sm-3{order:3}.editor-styles-wrapper .order-sm-4{order:4}.editor-styles-wrapper .order-sm-5{order:5}.editor-styles-wrapper .order-sm-6{order:6}.editor-styles-wrapper .order-sm-7{order:7}.editor-styles-wrapper .order-sm-8{order:8}.editor-styles-wrapper .order-sm-9{order:9}.editor-styles-wrapper .order-sm-10{order:10}.editor-styles-wrapper .order-sm-11{order:11}.editor-styles-wrapper .order-sm-12{order:12}.editor-styles-wrapper .offset-sm-0{margin-left:0}.editor-styles-wrapper .offset-sm-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-sm-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-sm-3{margin-left:25%}.editor-styles-wrapper .offset-sm-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-sm-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-sm-6{margin-left:50%}.editor-styles-wrapper .offset-sm-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-sm-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-sm-9{margin-left:75%}.editor-styles-wrapper .offset-sm-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-sm-11{margin-left:91.66666667%}}@media (min-width: 768px){.editor-styles-wrapper .col-md{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-md-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-md-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-md-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-md-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-md-first{order:-1}.editor-styles-wrapper .order-md-last{order:13}.editor-styles-wrapper .order-md-0{order:0}.editor-styles-wrapper .order-md-1{order:1}.editor-styles-wrapper .order-md-2{order:2}.editor-styles-wrapper .order-md-3{order:3}.editor-styles-wrapper .order-md-4{order:4}.editor-styles-wrapper .order-md-5{order:5}.editor-styles-wrapper .order-md-6{order:6}.editor-styles-wrapper .order-md-7{order:7}.editor-styles-wrapper .order-md-8{order:8}.editor-styles-wrapper .order-md-9{order:9}.editor-styles-wrapper .order-md-10{order:10}.editor-styles-wrapper .order-md-11{order:11}.editor-styles-wrapper .order-md-12{order:12}.editor-styles-wrapper .offset-md-0{margin-left:0}.editor-styles-wrapper .offset-md-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-md-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-md-3{margin-left:25%}.editor-styles-wrapper .offset-md-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-md-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-md-6{margin-left:50%}.editor-styles-wrapper .offset-md-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-md-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-md-9{margin-left:75%}.editor-styles-wrapper .offset-md-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-md-11{margin-left:91.66666667%}}@media (min-width: 992px){.editor-styles-wrapper .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-lg-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-lg-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-lg-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-lg-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-lg-first{order:-1}.editor-styles-wrapper .order-lg-last{order:13}.editor-styles-wrapper .order-lg-0{order:0}.editor-styles-wrapper .order-lg-1{order:1}.editor-styles-wrapper .order-lg-2{order:2}.editor-styles-wrapper .order-lg-3{order:3}.editor-styles-wrapper .order-lg-4{order:4}.editor-styles-wrapper .order-lg-5{order:5}.editor-styles-wrapper .order-lg-6{order:6}.editor-styles-wrapper .order-lg-7{order:7}.editor-styles-wrapper .order-lg-8{order:8}.editor-styles-wrapper .order-lg-9{order:9}.editor-styles-wrapper .order-lg-10{order:10}.editor-styles-wrapper .order-lg-11{order:11}.editor-styles-wrapper .order-lg-12{order:12}.editor-styles-wrapper .offset-lg-0{margin-left:0}.editor-styles-wrapper .offset-lg-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-lg-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-lg-3{margin-left:25%}.editor-styles-wrapper .offset-lg-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-lg-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-lg-6{margin-left:50%}.editor-styles-wrapper .offset-lg-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-lg-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-lg-9{margin-left:75%}.editor-styles-wrapper .offset-lg-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-lg-11{margin-left:91.66666667%}}@media (min-width: 1200px){.editor-styles-wrapper .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-xl-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-xl-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-xl-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-xl-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-xl-first{order:-1}.editor-styles-wrapper .order-xl-last{order:13}.editor-styles-wrapper .order-xl-0{order:0}.editor-styles-wrapper .order-xl-1{order:1}.editor-styles-wrapper .order-xl-2{order:2}.editor-styles-wrapper .order-xl-3{order:3}.editor-styles-wrapper .order-xl-4{order:4}.editor-styles-wrapper .order-xl-5{order:5}.editor-styles-wrapper .order-xl-6{order:6}.editor-styles-wrapper .order-xl-7{order:7}.editor-styles-wrapper .order-xl-8{order:8}.editor-styles-wrapper .order-xl-9{order:9}.editor-styles-wrapper .order-xl-10{order:10}.editor-styles-wrapper .order-xl-11{order:11}.editor-styles-wrapper .order-xl-12{order:12}.editor-styles-wrapper .offset-xl-0{margin-left:0}.editor-styles-wrapper .offset-xl-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-xl-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-xl-3{margin-left:25%}.editor-styles-wrapper .offset-xl-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-xl-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-xl-6{margin-left:50%}.editor-styles-wrapper .offset-xl-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-xl-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-xl-9{margin-left:75%}.editor-styles-wrapper .offset-xl-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-xl-11{margin-left:91.66666667%}}@media (min-width: 1400px){.editor-styles-wrapper .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-xxl-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-xxl-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-xxl-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-xxl-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-xxl-first{order:-1}.editor-styles-wrapper .order-xxl-last{order:13}.editor-styles-wrapper .order-xxl-0{order:0}.editor-styles-wrapper .order-xxl-1{order:1}.editor-styles-wrapper .order-xxl-2{order:2}.editor-styles-wrapper .order-xxl-3{order:3}.editor-styles-wrapper .order-xxl-4{order:4}.editor-styles-wrapper .order-xxl-5{order:5}.editor-styles-wrapper .order-xxl-6{order:6}.editor-styles-wrapper .order-xxl-7{order:7}.editor-styles-wrapper .order-xxl-8{order:8}.editor-styles-wrapper .order-xxl-9{order:9}.editor-styles-wrapper .order-xxl-10{order:10}.editor-styles-wrapper .order-xxl-11{order:11}.editor-styles-wrapper .order-xxl-12{order:12}.editor-styles-wrapper .offset-xxl-0{margin-left:0}.editor-styles-wrapper .offset-xxl-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-xxl-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-xxl-3{margin-left:25%}.editor-styles-wrapper .offset-xxl-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-xxl-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-xxl-6{margin-left:50%}.editor-styles-wrapper .offset-xxl-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-xxl-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-xxl-9{margin-left:75%}.editor-styles-wrapper .offset-xxl-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-xxl-11{margin-left:91.66666667%}}.editor-styles-wrapper .table{width:100%;margin-bottom:1rem;color:#212529}.editor-styles-wrapper .table th,.editor-styles-wrapper .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.editor-styles-wrapper .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.editor-styles-wrapper .table tbody+tbody{border-top:2px solid #dee2e6}.editor-styles-wrapper .table-sm th,.editor-styles-wrapper .table-sm td{padding:.3rem}.editor-styles-wrapper .table-bordered{border:1px solid #dee2e6}.editor-styles-wrapper .table-bordered th,.editor-styles-wrapper .table-bordered td{border:1px solid #dee2e6}.editor-styles-wrapper .table-bordered thead th,.editor-styles-wrapper .table-bordered thead td{border-bottom-width:2px}.editor-styles-wrapper .table-borderless th,.editor-styles-wrapper .table-borderless td,.editor-styles-wrapper .table-borderless thead th,.editor-styles-wrapper .table-borderless tbody+tbody{border:0}.editor-styles-wrapper .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.editor-styles-wrapper .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-primary,.editor-styles-wrapper .table-primary>th,.editor-styles-wrapper .table-primary>td{background-color:#c0d8ed}.editor-styles-wrapper .table-primary th,.editor-styles-wrapper .table-primary td,.editor-styles-wrapper .table-primary thead th,.editor-styles-wrapper .table-primary tbody+tbody{border-color:#8ab6dd}.editor-styles-wrapper .table-hover .table-primary:hover{background-color:#accce7}.editor-styles-wrapper .table-hover .table-primary:hover>td,.editor-styles-wrapper .table-hover .table-primary:hover>th{background-color:#accce7}.editor-styles-wrapper .table-secondary,.editor-styles-wrapper .table-secondary>th,.editor-styles-wrapper .table-secondary>td{background-color:#d6d8db}.editor-styles-wrapper .table-secondary th,.editor-styles-wrapper .table-secondary td,.editor-styles-wrapper .table-secondary thead th,.editor-styles-wrapper .table-secondary tbody+tbody{border-color:#b3b7bb}.editor-styles-wrapper .table-hover .table-secondary:hover{background-color:#c8cbcf}.editor-styles-wrapper .table-hover .table-secondary:hover>td,.editor-styles-wrapper .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.editor-styles-wrapper .table-success,.editor-styles-wrapper .table-success>th,.editor-styles-wrapper .table-success>td{background-color:#cbefcf}.editor-styles-wrapper .table-success th,.editor-styles-wrapper .table-success td,.editor-styles-wrapper .table-success thead th,.editor-styles-wrapper .table-success tbody+tbody{border-color:#9ee1a6}.editor-styles-wrapper .table-hover .table-success:hover{background-color:#b8e9bd}.editor-styles-wrapper .table-hover .table-success:hover>td,.editor-styles-wrapper .table-hover .table-success:hover>th{background-color:#b8e9bd}.editor-styles-wrapper .table-info,.editor-styles-wrapper .table-info>th,.editor-styles-wrapper .table-info>td{background-color:#bee5eb}.editor-styles-wrapper .table-info th,.editor-styles-wrapper .table-info td,.editor-styles-wrapper .table-info thead th,.editor-styles-wrapper .table-info tbody+tbody{border-color:#86cfda}.editor-styles-wrapper .table-hover .table-info:hover{background-color:#abdde5}.editor-styles-wrapper .table-hover .table-info:hover>td,.editor-styles-wrapper .table-hover .table-info:hover>th{background-color:#abdde5}.editor-styles-wrapper .table-warning,.editor-styles-wrapper .table-warning>th,.editor-styles-wrapper .table-warning>td{background-color:#ffeeba}.editor-styles-wrapper .table-warning th,.editor-styles-wrapper .table-warning td,.editor-styles-wrapper .table-warning thead th,.editor-styles-wrapper .table-warning tbody+tbody{border-color:#ffdf7e}.editor-styles-wrapper .table-hover .table-warning:hover{background-color:#ffe8a1}.editor-styles-wrapper .table-hover .table-warning:hover>td,.editor-styles-wrapper .table-hover .table-warning:hover>th{background-color:#ffe8a1}.editor-styles-wrapper .table-danger,.editor-styles-wrapper .table-danger>th,.editor-styles-wrapper .table-danger>td{background-color:#f5c6cb}.editor-styles-wrapper .table-danger th,.editor-styles-wrapper .table-danger td,.editor-styles-wrapper .table-danger thead th,.editor-styles-wrapper .table-danger tbody+tbody{border-color:#ed969e}.editor-styles-wrapper .table-hover .table-danger:hover{background-color:#f1b0b7}.editor-styles-wrapper .table-hover .table-danger:hover>td,.editor-styles-wrapper .table-hover .table-danger:hover>th{background-color:#f1b0b7}.editor-styles-wrapper .table-light,.editor-styles-wrapper .table-light>th,.editor-styles-wrapper .table-light>td{background-color:#fdfdfe}.editor-styles-wrapper .table-light th,.editor-styles-wrapper .table-light td,.editor-styles-wrapper .table-light thead th,.editor-styles-wrapper .table-light tbody+tbody{border-color:#fbfcfc}.editor-styles-wrapper .table-hover .table-light:hover{background-color:#ececf6}.editor-styles-wrapper .table-hover .table-light:hover>td,.editor-styles-wrapper .table-hover .table-light:hover>th{background-color:#ececf6}.editor-styles-wrapper .table-dark,.editor-styles-wrapper .table-dark>th,.editor-styles-wrapper .table-dark>td{background-color:#c6c8ca}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th,.editor-styles-wrapper .table-dark tbody+tbody{border-color:#95999c}.editor-styles-wrapper .table-hover .table-dark:hover{background-color:#b9bbbe}.editor-styles-wrapper .table-hover .table-dark:hover>td,.editor-styles-wrapper .table-hover .table-dark:hover>th{background-color:#b9bbbe}.editor-styles-wrapper .table-white,.editor-styles-wrapper .table-white>th,.editor-styles-wrapper .table-white>td{background-color:#fff}.editor-styles-wrapper .table-white th,.editor-styles-wrapper .table-white td,.editor-styles-wrapper .table-white thead th,.editor-styles-wrapper .table-white tbody+tbody{border-color:#fff}.editor-styles-wrapper .table-hover .table-white:hover{background-color:#f2f2f2}.editor-styles-wrapper .table-hover .table-white:hover>td,.editor-styles-wrapper .table-hover .table-white:hover>th{background-color:#f2f2f2}.editor-styles-wrapper .table-purple,.editor-styles-wrapper .table-purple>th,.editor-styles-wrapper .table-purple>td{background-color:#e8d6f5}.editor-styles-wrapper .table-purple th,.editor-styles-wrapper .table-purple td,.editor-styles-wrapper .table-purple thead th,.editor-styles-wrapper .table-purple tbody+tbody{border-color:#d4b4ed}.editor-styles-wrapper .table-hover .table-purple:hover{background-color:#ddc2f0}.editor-styles-wrapper .table-hover .table-purple:hover>td,.editor-styles-wrapper .table-hover .table-purple:hover>th{background-color:#ddc2f0}.editor-styles-wrapper .table-salmon,.editor-styles-wrapper .table-salmon>th,.editor-styles-wrapper .table-salmon>td{background-color:#ffe2da}.editor-styles-wrapper .table-salmon th,.editor-styles-wrapper .table-salmon td,.editor-styles-wrapper .table-salmon thead th,.editor-styles-wrapper .table-salmon tbody+tbody{border-color:#ffc9ba}.editor-styles-wrapper .table-hover .table-salmon:hover{background-color:#ffcec1}.editor-styles-wrapper .table-hover .table-salmon:hover>td,.editor-styles-wrapper .table-hover .table-salmon:hover>th{background-color:#ffcec1}.editor-styles-wrapper .table-cyan,.editor-styles-wrapper .table-cyan>th,.editor-styles-wrapper .table-cyan>td{background-color:#c6edff}.editor-styles-wrapper .table-cyan th,.editor-styles-wrapper .table-cyan td,.editor-styles-wrapper .table-cyan thead th,.editor-styles-wrapper .table-cyan tbody+tbody{border-color:#96ddff}.editor-styles-wrapper .table-hover .table-cyan:hover{background-color:#ade5ff}.editor-styles-wrapper .table-hover .table-cyan:hover>td,.editor-styles-wrapper .table-hover .table-cyan:hover>th{background-color:#ade5ff}.editor-styles-wrapper .table-gray,.editor-styles-wrapper .table-gray>th,.editor-styles-wrapper .table-gray>td{background-color:#f1f3f5}.editor-styles-wrapper .table-gray th,.editor-styles-wrapper .table-gray td,.editor-styles-wrapper .table-gray thead th,.editor-styles-wrapper .table-gray tbody+tbody{border-color:#e6e9ec}.editor-styles-wrapper .table-hover .table-gray:hover{background-color:#e2e6ea}.editor-styles-wrapper .table-hover .table-gray:hover>td,.editor-styles-wrapper .table-hover .table-gray:hover>th{background-color:#e2e6ea}.editor-styles-wrapper .table-gray-dark,.editor-styles-wrapper .table-gray-dark>th,.editor-styles-wrapper .table-gray-dark>td{background-color:#d6d8db}.editor-styles-wrapper .table-gray-dark th,.editor-styles-wrapper .table-gray-dark td,.editor-styles-wrapper .table-gray-dark thead th,.editor-styles-wrapper .table-gray-dark tbody+tbody{border-color:#b3b7bb}.editor-styles-wrapper .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.editor-styles-wrapper .table-hover .table-gray-dark:hover>td,.editor-styles-wrapper .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.editor-styles-wrapper .table-indigo,.editor-styles-wrapper .table-indigo>th,.editor-styles-wrapper .table-indigo>td{background-color:#cec4d6}.editor-styles-wrapper .table-indigo th,.editor-styles-wrapper .table-indigo td,.editor-styles-wrapper .table-indigo thead th,.editor-styles-wrapper .table-indigo tbody+tbody{border-color:#a491b3}.editor-styles-wrapper .table-hover .table-indigo:hover{background-color:#c2b5cc}.editor-styles-wrapper .table-hover .table-indigo:hover>td,.editor-styles-wrapper .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.editor-styles-wrapper .table-orange,.editor-styles-wrapper .table-orange>th,.editor-styles-wrapper .table-orange>td{background-color:#feeab8}.editor-styles-wrapper .table-orange th,.editor-styles-wrapper .table-orange td,.editor-styles-wrapper .table-orange thead th,.editor-styles-wrapper .table-orange tbody+tbody{border-color:#fdd97a}.editor-styles-wrapper .table-hover .table-orange:hover{background-color:#fee39f}.editor-styles-wrapper .table-hover .table-orange:hover>td,.editor-styles-wrapper .table-hover .table-orange:hover>th{background-color:#fee39f}.editor-styles-wrapper .table-active,.editor-styles-wrapper .table-active>th,.editor-styles-wrapper .table-active>td{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-hover .table-active:hover>td,.editor-styles-wrapper .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.editor-styles-wrapper .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.editor-styles-wrapper .table-dark{color:#fff;background-color:#343a40}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th{border-color:#454d55}.editor-styles-wrapper .table-dark.table-bordered{border:0}.editor-styles-wrapper .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.editor-styles-wrapper .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.editor-styles-wrapper .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.editor-styles-wrapper .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.editor-styles-wrapper .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.editor-styles-wrapper .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.editor-styles-wrapper .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-xxl>.table-bordered{border:0}}.editor-styles-wrapper .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive>.table-bordered{border:0}.editor-styles-wrapper .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .form-control{transition:none}}.editor-styles-wrapper .form-control::-ms-expand{background-color:transparent;border:0}.editor-styles-wrapper .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .form-control::placeholder{color:#6c757d;opacity:1}.editor-styles-wrapper .form-control:disabled,.editor-styles-wrapper .form-control[readonly]{background-color:#e9ecef;opacity:1}.editor-styles-wrapper input[type="date"].form-control,.editor-styles-wrapper input[type="time"].form-control,.editor-styles-wrapper input[type="datetime-local"].form-control,.editor-styles-wrapper input[type="month"].form-control{appearance:none}.editor-styles-wrapper select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.editor-styles-wrapper select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.editor-styles-wrapper .form-control-file,.editor-styles-wrapper .form-control-range{display:block;width:100%}.editor-styles-wrapper .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.editor-styles-wrapper .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.editor-styles-wrapper .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.editor-styles-wrapper .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.editor-styles-wrapper .form-control-plaintext.form-control-sm,.editor-styles-wrapper .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.editor-styles-wrapper .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper select.form-control[size],.editor-styles-wrapper select.form-control[multiple]{height:auto}.editor-styles-wrapper textarea.form-control{height:auto}.editor-styles-wrapper .form-group{margin-bottom:1rem}.editor-styles-wrapper .form-text{display:block;margin-top:.25rem}.editor-styles-wrapper .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.editor-styles-wrapper .form-row>.col,.editor-styles-wrapper .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.editor-styles-wrapper .form-check{position:relative;display:block;padding-left:1.25rem}.editor-styles-wrapper .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.editor-styles-wrapper .form-check-input[disabled] ~ .form-check-label,.editor-styles-wrapper .form-check-input:disabled ~ .form-check-label{color:#6c757d}.editor-styles-wrapper .form-check-label{margin-bottom:0}.editor-styles-wrapper .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.editor-styles-wrapper .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.editor-styles-wrapper .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.editor-styles-wrapper .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.editor-styles-wrapper .valid-tooltip,.form-row>[class*="col-"]>.editor-styles-wrapper .valid-tooltip{left:5px}.was-validated .editor-styles-wrapper:valid ~ .valid-feedback,.was-validated .editor-styles-wrapper:valid ~ .valid-tooltip,.editor-styles-wrapper.is-valid ~ .valid-feedback,.editor-styles-wrapper.is-valid ~ .valid-tooltip{display:block}.was-validated .editor-styles-wrapper .form-control:valid,.editor-styles-wrapper .form-control.is-valid{border-color:#44c553;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .editor-styles-wrapper .form-control:valid:focus,.editor-styles-wrapper .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper select.form-control:valid,.editor-styles-wrapper select.form-control.is-valid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .editor-styles-wrapper textarea.form-control:valid,.editor-styles-wrapper textarea.form-control.is-valid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .editor-styles-wrapper .custom-select:valid,.editor-styles-wrapper .custom-select.is-valid{border-color:#44c553;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .editor-styles-wrapper .custom-select:valid:focus,.editor-styles-wrapper .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper .form-check-input:valid ~ .form-check-label,.editor-styles-wrapper .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .editor-styles-wrapper .form-check-input:valid ~ .valid-feedback,.was-validated .editor-styles-wrapper .form-check-input:valid ~ .valid-tooltip,.editor-styles-wrapper .form-check-input.is-valid ~ .valid-feedback,.editor-styles-wrapper .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .editor-styles-wrapper .custom-control-input:valid ~ .custom-control-label,.editor-styles-wrapper .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .editor-styles-wrapper .custom-control-input:valid ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-control-input:valid:checked ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .editor-styles-wrapper .custom-control-input:valid:focus ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-file-input:valid ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-file-input:valid:focus ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.editor-styles-wrapper .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.editor-styles-wrapper .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.editor-styles-wrapper .invalid-tooltip,.form-row>[class*="col-"]>.editor-styles-wrapper .invalid-tooltip{left:5px}.was-validated .editor-styles-wrapper:invalid ~ .invalid-feedback,.was-validated .editor-styles-wrapper:invalid ~ .invalid-tooltip,.editor-styles-wrapper.is-invalid ~ .invalid-feedback,.editor-styles-wrapper.is-invalid ~ .invalid-tooltip{display:block}.was-validated .editor-styles-wrapper .form-control:invalid,.editor-styles-wrapper .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .editor-styles-wrapper .form-control:invalid:focus,.editor-styles-wrapper .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper select.form-control:invalid,.editor-styles-wrapper select.form-control.is-invalid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .editor-styles-wrapper textarea.form-control:invalid,.editor-styles-wrapper textarea.form-control.is-invalid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .editor-styles-wrapper .custom-select:invalid,.editor-styles-wrapper .custom-select.is-invalid{border-color:#dc3545;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .editor-styles-wrapper .custom-select:invalid:focus,.editor-styles-wrapper .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .form-check-label,.editor-styles-wrapper .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .invalid-feedback,.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .invalid-tooltip,.editor-styles-wrapper .form-check-input.is-invalid ~ .invalid-feedback,.editor-styles-wrapper .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .editor-styles-wrapper .custom-control-input:invalid ~ .custom-control-label,.editor-styles-wrapper .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .editor-styles-wrapper .custom-control-input:invalid ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-control-input:invalid:checked ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .editor-styles-wrapper .custom-control-input:invalid:focus ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-file-input:invalid ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-file-input:invalid:focus ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.editor-styles-wrapper .form-inline{display:flex;flex-flow:row wrap;align-items:center}.editor-styles-wrapper .form-inline .form-check{width:100%}@media (min-width: 576px){.editor-styles-wrapper .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.editor-styles-wrapper .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.editor-styles-wrapper .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.editor-styles-wrapper .form-inline .form-control-plaintext{display:inline-block}.editor-styles-wrapper .form-inline .input-group,.editor-styles-wrapper .form-inline .custom-select{width:auto}.editor-styles-wrapper .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.editor-styles-wrapper .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.editor-styles-wrapper .form-inline .custom-control{align-items:center;justify-content:center}.editor-styles-wrapper .form-inline .custom-control-label{margin-bottom:0}}.editor-styles-wrapper .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .btn{transition:none}}.editor-styles-wrapper .btn:hover{color:#212529;text-decoration:none}.editor-styles-wrapper .btn:focus,.editor-styles-wrapper .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .btn.disabled,.editor-styles-wrapper .btn:disabled{opacity:.65}.editor-styles-wrapper .btn:not(:disabled):not(.disabled){cursor:pointer}.editor-styles-wrapper a.btn.disabled,.editor-styles-wrapper fieldset:disabled a.btn{pointer-events:none}.editor-styles-wrapper .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.editor-styles-wrapper .btn-primary:focus,.editor-styles-wrapper .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.editor-styles-wrapper .btn-primary.disabled,.editor-styles-wrapper .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.editor-styles-wrapper .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.editor-styles-wrapper .btn-secondary:focus,.editor-styles-wrapper .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-secondary.disabled,.editor-styles-wrapper .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.editor-styles-wrapper .btn-success:focus,.editor-styles-wrapper .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.editor-styles-wrapper .btn-success.disabled,.editor-styles-wrapper .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.editor-styles-wrapper .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.editor-styles-wrapper .btn-info:focus,.editor-styles-wrapper .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.editor-styles-wrapper .btn-info.disabled,.editor-styles-wrapper .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.editor-styles-wrapper .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.editor-styles-wrapper .btn-warning:focus,.editor-styles-wrapper .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.editor-styles-wrapper .btn-warning.disabled,.editor-styles-wrapper .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.editor-styles-wrapper .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.editor-styles-wrapper .btn-danger:focus,.editor-styles-wrapper .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.editor-styles-wrapper .btn-danger.disabled,.editor-styles-wrapper .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.editor-styles-wrapper .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.editor-styles-wrapper .btn-light:focus,.editor-styles-wrapper .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.editor-styles-wrapper .btn-light.disabled,.editor-styles-wrapper .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.editor-styles-wrapper .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.editor-styles-wrapper .btn-dark:focus,.editor-styles-wrapper .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.editor-styles-wrapper .btn-dark.disabled,.editor-styles-wrapper .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.editor-styles-wrapper .btn-white{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.editor-styles-wrapper .btn-white:focus,.editor-styles-wrapper .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-white.disabled,.editor-styles-wrapper .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.editor-styles-wrapper .btn-purple:focus,.editor-styles-wrapper .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.editor-styles-wrapper .btn-purple.disabled,.editor-styles-wrapper .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.editor-styles-wrapper .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.editor-styles-wrapper .btn-salmon:focus,.editor-styles-wrapper .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.editor-styles-wrapper .btn-salmon.disabled,.editor-styles-wrapper .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.editor-styles-wrapper .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.editor-styles-wrapper .btn-cyan:focus,.editor-styles-wrapper .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.editor-styles-wrapper .btn-cyan.disabled,.editor-styles-wrapper .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.editor-styles-wrapper .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.editor-styles-wrapper .btn-gray:focus,.editor-styles-wrapper .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.editor-styles-wrapper .btn-gray.disabled,.editor-styles-wrapper .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.editor-styles-wrapper .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.editor-styles-wrapper .btn-gray-dark:focus,.editor-styles-wrapper .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-gray-dark.disabled,.editor-styles-wrapper .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.editor-styles-wrapper .btn-indigo:focus,.editor-styles-wrapper .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.editor-styles-wrapper .btn-indigo.disabled,.editor-styles-wrapper .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.editor-styles-wrapper .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.editor-styles-wrapper .btn-orange:focus,.editor-styles-wrapper .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.editor-styles-wrapper .btn-orange.disabled,.editor-styles-wrapper .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.editor-styles-wrapper .btn-outline-primary{color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:focus,.editor-styles-wrapper .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .btn-outline-primary.disabled,.editor-styles-wrapper .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:focus,.editor-styles-wrapper .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-secondary.disabled,.editor-styles-wrapper .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-success{color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:focus,.editor-styles-wrapper .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .btn-outline-success.disabled,.editor-styles-wrapper .btn-outline-success:disabled{color:#44c553;background-color:transparent}.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:focus,.editor-styles-wrapper .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .btn-outline-info.disabled,.editor-styles-wrapper .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .btn-outline-warning{color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:focus,.editor-styles-wrapper .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .btn-outline-warning.disabled,.editor-styles-wrapper .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .btn-outline-danger{color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:focus,.editor-styles-wrapper .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .btn-outline-danger.disabled,.editor-styles-wrapper .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:focus,.editor-styles-wrapper .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .btn-outline-light.disabled,.editor-styles-wrapper .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .btn-outline-dark{color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:focus,.editor-styles-wrapper .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .btn-outline-dark.disabled,.editor-styles-wrapper .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .btn-outline-white{color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:focus,.editor-styles-wrapper .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-outline-white.disabled,.editor-styles-wrapper .btn-outline-white:disabled{color:#fff;background-color:transparent}.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:focus,.editor-styles-wrapper .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .btn-outline-purple.disabled,.editor-styles-wrapper .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:focus,.editor-styles-wrapper .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .btn-outline-salmon.disabled,.editor-styles-wrapper .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:focus,.editor-styles-wrapper .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .btn-outline-cyan.disabled,.editor-styles-wrapper .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .btn-outline-gray{color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:focus,.editor-styles-wrapper .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .btn-outline-gray.disabled,.editor-styles-wrapper .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:focus,.editor-styles-wrapper .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-gray-dark.disabled,.editor-styles-wrapper .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:focus,.editor-styles-wrapper .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .btn-outline-indigo.disabled,.editor-styles-wrapper .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .btn-outline-orange{color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:focus,.editor-styles-wrapper .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .btn-outline-orange.disabled,.editor-styles-wrapper .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.editor-styles-wrapper .btn-link:hover{color:#144b7c;text-decoration:underline}.editor-styles-wrapper .btn-link:focus,.editor-styles-wrapper .btn-link.focus{text-decoration:underline}.editor-styles-wrapper .btn-link:disabled,.editor-styles-wrapper .btn-link.disabled{color:#6c757d;pointer-events:none}.editor-styles-wrapper .btn-lg,.editor-styles-wrapper .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .btn-sm,.editor-styles-wrapper .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .btn-block{display:block;width:100%}.editor-styles-wrapper .btn-block+.btn-block{margin-top:.5rem}.editor-styles-wrapper input[type="submit"].btn-block,.editor-styles-wrapper input[type="reset"].btn-block,.editor-styles-wrapper input[type="button"].btn-block{width:100%}.editor-styles-wrapper .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .fade{transition:none}}.editor-styles-wrapper .fade:not(.show){opacity:0}.editor-styles-wrapper .collapse:not(.show){display:none}.editor-styles-wrapper .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .collapsing{transition:none}}.editor-styles-wrapper .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .collapsing.width{transition:none}}.editor-styles-wrapper .dropup,.editor-styles-wrapper .dropright,.editor-styles-wrapper .dropdown,.editor-styles-wrapper .dropleft{position:relative}.editor-styles-wrapper .dropdown-toggle{white-space:nowrap}.editor-styles-wrapper .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.editor-styles-wrapper .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.editor-styles-wrapper .dropdown-menu-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.editor-styles-wrapper .dropdown-menu-sm-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu-md-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.editor-styles-wrapper .dropdown-menu-lg-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.editor-styles-wrapper .dropdown-menu-xl-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.editor-styles-wrapper .dropdown-menu-xxl-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-xxl-right{right:0;left:auto}}.editor-styles-wrapper .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.editor-styles-wrapper .dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.editor-styles-wrapper .dropup .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.editor-styles-wrapper .dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.editor-styles-wrapper .dropright .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropright .dropdown-toggle::after{vertical-align:0}.editor-styles-wrapper .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.editor-styles-wrapper .dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.editor-styles-wrapper .dropleft .dropdown-toggle::after{display:none}.editor-styles-wrapper .dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.editor-styles-wrapper .dropleft .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropleft .dropdown-toggle::before{vertical-align:0}.editor-styles-wrapper .dropdown-menu[x-placement^="top"],.editor-styles-wrapper .dropdown-menu[x-placement^="right"],.editor-styles-wrapper .dropdown-menu[x-placement^="bottom"],.editor-styles-wrapper .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.editor-styles-wrapper .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.editor-styles-wrapper .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.editor-styles-wrapper .dropdown-item:hover,.editor-styles-wrapper .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.editor-styles-wrapper .dropdown-item.active,.editor-styles-wrapper .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.editor-styles-wrapper .dropdown-item.disabled,.editor-styles-wrapper .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.editor-styles-wrapper .dropdown-menu.show{display:block}.editor-styles-wrapper .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.editor-styles-wrapper .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.editor-styles-wrapper .btn-group,.editor-styles-wrapper .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.editor-styles-wrapper .btn-group>.btn,.editor-styles-wrapper .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.editor-styles-wrapper .btn-group>.btn:hover,.editor-styles-wrapper .btn-group-vertical>.btn:hover{z-index:1}.editor-styles-wrapper .btn-group>.btn:focus,.editor-styles-wrapper .btn-group>.btn:active,.editor-styles-wrapper .btn-group>.btn.active,.editor-styles-wrapper .btn-group-vertical>.btn:focus,.editor-styles-wrapper .btn-group-vertical>.btn:active,.editor-styles-wrapper .btn-group-vertical>.btn.active{z-index:1}.editor-styles-wrapper .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.editor-styles-wrapper .btn-toolbar .input-group{width:auto}.editor-styles-wrapper .btn-group>.btn:not(:first-child),.editor-styles-wrapper .btn-group>.btn-group:not(:first-child){margin-left:-1px}.editor-styles-wrapper .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .btn-group>.btn:not(:first-child),.editor-styles-wrapper .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .dropdown-toggle-split::after,.dropup .editor-styles-wrapper .dropdown-toggle-split::after,.dropright .editor-styles-wrapper .dropdown-toggle-split::after{margin-left:0}.dropleft .editor-styles-wrapper .dropdown-toggle-split::before{margin-right:0}.editor-styles-wrapper .btn-sm+.dropdown-toggle-split,.editor-styles-wrapper .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.editor-styles-wrapper .btn-lg+.dropdown-toggle-split,.editor-styles-wrapper .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.editor-styles-wrapper .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.editor-styles-wrapper .btn-group-vertical>.btn,.editor-styles-wrapper .btn-group-vertical>.btn-group{width:100%}.editor-styles-wrapper .btn-group-vertical>.btn:not(:first-child),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.editor-styles-wrapper .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .btn-group-vertical>.btn:not(:first-child),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .btn-group-toggle>.btn,.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.editor-styles-wrapper .btn-group-toggle>.btn input[type="radio"],.editor-styles-wrapper .btn-group-toggle>.btn input[type="checkbox"],.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn input[type="radio"],.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.editor-styles-wrapper .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.editor-styles-wrapper .input-group>.form-control,.editor-styles-wrapper .input-group>.form-control-plaintext,.editor-styles-wrapper .input-group>.custom-select,.editor-styles-wrapper .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.editor-styles-wrapper .input-group>.form-control+.form-control,.editor-styles-wrapper .input-group>.form-control+.custom-select,.editor-styles-wrapper .input-group>.form-control+.custom-file,.editor-styles-wrapper .input-group>.form-control-plaintext+.form-control,.editor-styles-wrapper .input-group>.form-control-plaintext+.custom-select,.editor-styles-wrapper .input-group>.form-control-plaintext+.custom-file,.editor-styles-wrapper .input-group>.custom-select+.form-control,.editor-styles-wrapper .input-group>.custom-select+.custom-select,.editor-styles-wrapper .input-group>.custom-select+.custom-file,.editor-styles-wrapper .input-group>.custom-file+.form-control,.editor-styles-wrapper .input-group>.custom-file+.custom-select,.editor-styles-wrapper .input-group>.custom-file+.custom-file{margin-left:-1px}.editor-styles-wrapper .input-group>.form-control:focus,.editor-styles-wrapper .input-group>.custom-select:focus,.editor-styles-wrapper .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.editor-styles-wrapper .input-group>.custom-file .custom-file-input:focus{z-index:4}.editor-styles-wrapper .input-group>.form-control:not(:first-child),.editor-styles-wrapper .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .input-group>.custom-file{display:flex;align-items:center}.editor-styles-wrapper .input-group>.custom-file:not(:last-child) .custom-file-label,.editor-styles-wrapper .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .input-group:not(.has-validation)>.form-control:not(:last-child),.editor-styles-wrapper .input-group:not(.has-validation)>.custom-select:not(:last-child),.editor-styles-wrapper .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.editor-styles-wrapper .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group.has-validation>.form-control:nth-last-child(n+3),.editor-styles-wrapper .input-group.has-validation>.custom-select:nth-last-child(n+3),.editor-styles-wrapper .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.editor-styles-wrapper .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group-prepend,.editor-styles-wrapper .input-group-append{display:flex}.editor-styles-wrapper .input-group-prepend .btn,.editor-styles-wrapper .input-group-append .btn{position:relative;z-index:2}.editor-styles-wrapper .input-group-prepend .btn:focus,.editor-styles-wrapper .input-group-append .btn:focus{z-index:3}.editor-styles-wrapper .input-group-prepend .btn+.btn,.editor-styles-wrapper .input-group-prepend .btn+.input-group-text,.editor-styles-wrapper .input-group-prepend .input-group-text+.input-group-text,.editor-styles-wrapper .input-group-prepend .input-group-text+.btn,.editor-styles-wrapper .input-group-append .btn+.btn,.editor-styles-wrapper .input-group-append .btn+.input-group-text,.editor-styles-wrapper .input-group-append .input-group-text+.input-group-text,.editor-styles-wrapper .input-group-append .input-group-text+.btn{margin-left:-1px}.editor-styles-wrapper .input-group-prepend{margin-right:-1px}.editor-styles-wrapper .input-group-append{margin-left:-1px}.editor-styles-wrapper .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.editor-styles-wrapper .input-group-text input[type="radio"],.editor-styles-wrapper .input-group-text input[type="checkbox"]{margin-top:0}.editor-styles-wrapper .input-group-lg>.form-control:not(textarea),.editor-styles-wrapper .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.editor-styles-wrapper .input-group-lg>.form-control,.editor-styles-wrapper .input-group-lg>.custom-select,.editor-styles-wrapper .input-group-lg>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group-lg>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group-lg>.input-group-prepend>.btn,.editor-styles-wrapper .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .input-group-sm>.form-control:not(textarea),.editor-styles-wrapper .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.editor-styles-wrapper .input-group-sm>.form-control,.editor-styles-wrapper .input-group-sm>.custom-select,.editor-styles-wrapper .input-group-sm>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group-sm>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group-sm>.input-group-prepend>.btn,.editor-styles-wrapper .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .input-group-lg>.custom-select,.editor-styles-wrapper .input-group-sm>.custom-select{padding-right:2.2rem}.editor-styles-wrapper .input-group>.input-group-prepend>.btn,.editor-styles-wrapper .input-group>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.editor-styles-wrapper .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.editor-styles-wrapper .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.editor-styles-wrapper .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.editor-styles-wrapper .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group>.input-group-append>.btn,.editor-styles-wrapper .input-group>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group>.input-group-prepend:not(:first-child)>.btn,.editor-styles-wrapper .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.editor-styles-wrapper .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.editor-styles-wrapper .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-left:1.5rem;print-color-adjust:exact}.editor-styles-wrapper .custom-control-inline{display:inline-flex;margin-right:1rem}.editor-styles-wrapper .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.editor-styles-wrapper .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.editor-styles-wrapper .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.editor-styles-wrapper .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.editor-styles-wrapper .custom-control-input[disabled] ~ .custom-control-label,.editor-styles-wrapper .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.editor-styles-wrapper .custom-control-input[disabled] ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.editor-styles-wrapper .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.editor-styles-wrapper .custom-control-label::before{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.editor-styles-wrapper .custom-control-label::after{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.editor-styles-wrapper .custom-checkbox .custom-control-label::before{border-radius:.25rem}.editor-styles-wrapper .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.editor-styles-wrapper .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-radio .custom-control-label::before{border-radius:50%}.editor-styles-wrapper .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-switch{padding-left:2.25rem}.editor-styles-wrapper .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.editor-styles-wrapper .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-switch .custom-control-label::after{transition:none}}.editor-styles-wrapper .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.editor-styles-wrapper .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 2.2rem .45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.editor-styles-wrapper .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.editor-styles-wrapper .custom-select[multiple],.editor-styles-wrapper .custom-select[size]:not([size="1"]){height:auto;padding-right:1.2rem;background-image:none}.editor-styles-wrapper .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.editor-styles-wrapper .custom-select::-ms-expand{display:none}.editor-styles-wrapper .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.editor-styles-wrapper .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:1rem;font-size:.875rem}.editor-styles-wrapper .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-bottom:.65rem;padding-left:2rem;font-size:1.15rem}.editor-styles-wrapper .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.editor-styles-wrapper .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.editor-styles-wrapper .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-file-input[disabled] ~ .custom-file-label,.editor-styles-wrapper .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.editor-styles-wrapper .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.editor-styles-wrapper .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.editor-styles-wrapper .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.editor-styles-wrapper .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.editor-styles-wrapper .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.editor-styles-wrapper .custom-range:focus{outline:0}.editor-styles-wrapper .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range::-moz-focus-outer{border:0}.editor-styles-wrapper .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-webkit-slider-thumb{transition:none}}.editor-styles-wrapper .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.editor-styles-wrapper .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-moz-range-thumb{transition:none}}.editor-styles-wrapper .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.editor-styles-wrapper .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-ms-thumb{transition:none}}.editor-styles-wrapper .custom-range::-ms-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.editor-styles-wrapper .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.editor-styles-wrapper .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.editor-styles-wrapper .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.editor-styles-wrapper .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-range:disabled::-moz-range-track{cursor:default}.editor-styles-wrapper .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-control-label::before,.editor-styles-wrapper .custom-file-label,.editor-styles-wrapper .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-control-label::before,.editor-styles-wrapper .custom-file-label,.editor-styles-wrapper .custom-select{transition:none}}.editor-styles-wrapper .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.editor-styles-wrapper .nav-link{display:block;padding:.8rem 1rem}.editor-styles-wrapper .nav-link:hover,.editor-styles-wrapper .nav-link:focus{text-decoration:none}.editor-styles-wrapper .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.editor-styles-wrapper .nav-tabs{border-bottom:1px solid #dee2e6}.editor-styles-wrapper .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.editor-styles-wrapper .nav-tabs .nav-link:hover,.editor-styles-wrapper .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.editor-styles-wrapper .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.editor-styles-wrapper .nav-tabs .nav-link.active,.editor-styles-wrapper .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.editor-styles-wrapper .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.editor-styles-wrapper .nav-pills .nav-link.active,.editor-styles-wrapper .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.editor-styles-wrapper .nav-fill>.nav-link,.editor-styles-wrapper .nav-fill .nav-item{flex:1 1 auto;text-align:center}.editor-styles-wrapper .nav-justified>.nav-link,.editor-styles-wrapper .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.editor-styles-wrapper .tab-content>.tab-pane{display:none}.editor-styles-wrapper .tab-content>.active{display:block}.editor-styles-wrapper .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.editor-styles-wrapper .navbar .container,.editor-styles-wrapper .navbar .container-fluid,.editor-styles-wrapper .navbar .container-sm,.editor-styles-wrapper .navbar .container-md,.editor-styles-wrapper .navbar .container-lg,.editor-styles-wrapper .navbar .container-xl,.editor-styles-wrapper .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.editor-styles-wrapper .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-right:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.editor-styles-wrapper .navbar-brand:hover,.editor-styles-wrapper .navbar-brand:focus{text-decoration:none}.editor-styles-wrapper .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.editor-styles-wrapper .navbar-nav .nav-link{padding-right:0;padding-left:0}.editor-styles-wrapper .navbar-nav .dropdown-menu{position:static;float:none}.editor-styles-wrapper .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.editor-styles-wrapper .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.editor-styles-wrapper .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.editor-styles-wrapper .navbar-toggler:hover,.editor-styles-wrapper .navbar-toggler:focus{text-decoration:none}.editor-styles-wrapper .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.editor-styles-wrapper .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.editor-styles-wrapper .navbar-expand-sm>.container,.editor-styles-wrapper .navbar-expand-sm>.container-fluid,.editor-styles-wrapper .navbar-expand-sm>.container-sm,.editor-styles-wrapper .navbar-expand-sm>.container-md,.editor-styles-wrapper .navbar-expand-sm>.container-lg,.editor-styles-wrapper .navbar-expand-sm>.container-xl,.editor-styles-wrapper .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.editor-styles-wrapper .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-sm .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-sm>.container,.editor-styles-wrapper .navbar-expand-sm>.container-fluid,.editor-styles-wrapper .navbar-expand-sm>.container-sm,.editor-styles-wrapper .navbar-expand-sm>.container-md,.editor-styles-wrapper .navbar-expand-sm>.container-lg,.editor-styles-wrapper .navbar-expand-sm>.container-xl,.editor-styles-wrapper .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.editor-styles-wrapper .navbar-expand-md>.container,.editor-styles-wrapper .navbar-expand-md>.container-fluid,.editor-styles-wrapper .navbar-expand-md>.container-sm,.editor-styles-wrapper .navbar-expand-md>.container-md,.editor-styles-wrapper .navbar-expand-md>.container-lg,.editor-styles-wrapper .navbar-expand-md>.container-xl,.editor-styles-wrapper .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.editor-styles-wrapper .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-md .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-md>.container,.editor-styles-wrapper .navbar-expand-md>.container-fluid,.editor-styles-wrapper .navbar-expand-md>.container-sm,.editor-styles-wrapper .navbar-expand-md>.container-md,.editor-styles-wrapper .navbar-expand-md>.container-lg,.editor-styles-wrapper .navbar-expand-md>.container-xl,.editor-styles-wrapper .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-md .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.editor-styles-wrapper .navbar-expand-lg>.container,.editor-styles-wrapper .navbar-expand-lg>.container-fluid,.editor-styles-wrapper .navbar-expand-lg>.container-sm,.editor-styles-wrapper .navbar-expand-lg>.container-md,.editor-styles-wrapper .navbar-expand-lg>.container-lg,.editor-styles-wrapper .navbar-expand-lg>.container-xl,.editor-styles-wrapper .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.editor-styles-wrapper .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-lg .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-lg>.container,.editor-styles-wrapper .navbar-expand-lg>.container-fluid,.editor-styles-wrapper .navbar-expand-lg>.container-sm,.editor-styles-wrapper .navbar-expand-lg>.container-md,.editor-styles-wrapper .navbar-expand-lg>.container-lg,.editor-styles-wrapper .navbar-expand-lg>.container-xl,.editor-styles-wrapper .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.editor-styles-wrapper .navbar-expand-xl>.container,.editor-styles-wrapper .navbar-expand-xl>.container-fluid,.editor-styles-wrapper .navbar-expand-xl>.container-sm,.editor-styles-wrapper .navbar-expand-xl>.container-md,.editor-styles-wrapper .navbar-expand-xl>.container-lg,.editor-styles-wrapper .navbar-expand-xl>.container-xl,.editor-styles-wrapper .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.editor-styles-wrapper .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-xl .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-xl>.container,.editor-styles-wrapper .navbar-expand-xl>.container-fluid,.editor-styles-wrapper .navbar-expand-xl>.container-sm,.editor-styles-wrapper .navbar-expand-xl>.container-md,.editor-styles-wrapper .navbar-expand-xl>.container-lg,.editor-styles-wrapper .navbar-expand-xl>.container-xl,.editor-styles-wrapper .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.editor-styles-wrapper .navbar-expand-xxl>.container,.editor-styles-wrapper .navbar-expand-xxl>.container-fluid,.editor-styles-wrapper .navbar-expand-xxl>.container-sm,.editor-styles-wrapper .navbar-expand-xxl>.container-md,.editor-styles-wrapper .navbar-expand-xxl>.container-lg,.editor-styles-wrapper .navbar-expand-xxl>.container-xl,.editor-styles-wrapper .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.editor-styles-wrapper .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-xxl>.container,.editor-styles-wrapper .navbar-expand-xxl>.container-fluid,.editor-styles-wrapper .navbar-expand-xxl>.container-sm,.editor-styles-wrapper .navbar-expand-xxl>.container-md,.editor-styles-wrapper .navbar-expand-xxl>.container-lg,.editor-styles-wrapper .navbar-expand-xxl>.container-xl,.editor-styles-wrapper .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-xxl .navbar-toggler{display:none}}.editor-styles-wrapper .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand>.container,.editor-styles-wrapper .navbar-expand>.container-fluid,.editor-styles-wrapper .navbar-expand>.container-sm,.editor-styles-wrapper .navbar-expand>.container-md,.editor-styles-wrapper .navbar-expand>.container-lg,.editor-styles-wrapper .navbar-expand>.container-xl,.editor-styles-wrapper .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.editor-styles-wrapper .navbar-expand .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand>.container,.editor-styles-wrapper .navbar-expand>.container-fluid,.editor-styles-wrapper .navbar-expand>.container-sm,.editor-styles-wrapper .navbar-expand>.container-md,.editor-styles-wrapper .navbar-expand>.container-lg,.editor-styles-wrapper .navbar-expand>.container-xl,.editor-styles-wrapper .navbar-expand>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand .navbar-toggler{display:none}.editor-styles-wrapper .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-brand:hover,.editor-styles-wrapper .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.editor-styles-wrapper .navbar-light .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.editor-styles-wrapper .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.editor-styles-wrapper .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-text a:hover,.editor-styles-wrapper .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-dark .navbar-brand{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-brand:hover,.editor-styles-wrapper .navbar-dark .navbar-brand:focus{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.editor-styles-wrapper .navbar-dark .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-dark .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.active{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.editor-styles-wrapper .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.editor-styles-wrapper .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.editor-styles-wrapper .navbar-dark .navbar-text a{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-text a:hover,.editor-styles-wrapper .navbar-dark .navbar-text a:focus{color:#fff}.editor-styles-wrapper .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.editor-styles-wrapper .card>hr{margin-right:0;margin-left:0}.editor-styles-wrapper .card>.list-group{border-top:inherit;border-bottom:inherit}.editor-styles-wrapper .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card>.card-header+.list-group,.editor-styles-wrapper .card>.list-group+.card-footer{border-top:0}.editor-styles-wrapper .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.editor-styles-wrapper .card-title{margin-bottom:.75rem}.editor-styles-wrapper .card-subtitle{margin-top:-.375rem;margin-bottom:0}.editor-styles-wrapper .card-text:last-child{margin-bottom:0}.editor-styles-wrapper .card-link:hover{text-decoration:none}.editor-styles-wrapper .card-link+.card-link{margin-left:1.25rem}.editor-styles-wrapper .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.editor-styles-wrapper .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.editor-styles-wrapper .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.editor-styles-wrapper .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.editor-styles-wrapper .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-top,.editor-styles-wrapper .card-img-bottom{flex-shrink:0;width:100%}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.editor-styles-wrapper .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.editor-styles-wrapper .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.editor-styles-wrapper .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.editor-styles-wrapper .card-group{display:flex;flex-flow:row wrap}.editor-styles-wrapper .card-group>.card{flex:1 0 0%;margin-bottom:0}.editor-styles-wrapper .card-group>.card+.card{margin-left:0;border-left:0}.editor-styles-wrapper .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:last-child) .card-img-top,.editor-styles-wrapper .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:last-child) .card-img-bottom,.editor-styles-wrapper .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child) .card-img-top,.editor-styles-wrapper .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child) .card-img-bottom,.editor-styles-wrapper .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.editor-styles-wrapper .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.editor-styles-wrapper .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.editor-styles-wrapper .card-columns .card{display:inline-block;width:100%}}.editor-styles-wrapper .accordion{overflow-anchor:none}.editor-styles-wrapper .accordion>.card{overflow:hidden}.editor-styles-wrapper .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.editor-styles-wrapper .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.editor-styles-wrapper .breadcrumb-item.active{color:#6c757d}.editor-styles-wrapper .pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.editor-styles-wrapper .page-link{position:relative;display:block;padding:.75rem 1rem;margin-left:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.editor-styles-wrapper .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.editor-styles-wrapper .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.editor-styles-wrapper .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.editor-styles-wrapper .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.editor-styles-wrapper .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.editor-styles-wrapper .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.editor-styles-wrapper .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.editor-styles-wrapper .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.editor-styles-wrapper .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.editor-styles-wrapper .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.editor-styles-wrapper .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .badge{transition:none}}.editor-styles-wrapper a.badge:hover,.editor-styles-wrapper a.badge:focus{text-decoration:none}.editor-styles-wrapper .badge:empty{display:none}.editor-styles-wrapper .btn .badge{position:relative;top:-1px}.editor-styles-wrapper .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.editor-styles-wrapper .badge-primary{color:#fff;background-color:#1e73be}.editor-styles-wrapper a.badge-primary:hover,.editor-styles-wrapper a.badge-primary:focus{color:#fff;background-color:#175892}.editor-styles-wrapper a.badge-primary:focus,.editor-styles-wrapper a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .badge-secondary{color:#fff;background-color:#6c757d}.editor-styles-wrapper a.badge-secondary:hover,.editor-styles-wrapper a.badge-secondary:focus{color:#fff;background-color:#545b62}.editor-styles-wrapper a.badge-secondary:focus,.editor-styles-wrapper a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .badge-success{color:#fff;background-color:#44c553}.editor-styles-wrapper a.badge-success:hover,.editor-styles-wrapper a.badge-success:focus{color:#fff;background-color:#33a340}.editor-styles-wrapper a.badge-success:focus,.editor-styles-wrapper a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .badge-info{color:#fff;background-color:#17a2b8}.editor-styles-wrapper a.badge-info:hover,.editor-styles-wrapper a.badge-info:focus{color:#fff;background-color:#117a8b}.editor-styles-wrapper a.badge-info:focus,.editor-styles-wrapper a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .badge-warning{color:#212529;background-color:#ffc107}.editor-styles-wrapper a.badge-warning:hover,.editor-styles-wrapper a.badge-warning:focus{color:#212529;background-color:#d39e00}.editor-styles-wrapper a.badge-warning:focus,.editor-styles-wrapper a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .badge-danger{color:#fff;background-color:#dc3545}.editor-styles-wrapper a.badge-danger:hover,.editor-styles-wrapper a.badge-danger:focus{color:#fff;background-color:#bd2130}.editor-styles-wrapper a.badge-danger:focus,.editor-styles-wrapper a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .badge-light{color:#212529;background-color:#f8f9fa}.editor-styles-wrapper a.badge-light:hover,.editor-styles-wrapper a.badge-light:focus{color:#212529;background-color:#dae0e5}.editor-styles-wrapper a.badge-light:focus,.editor-styles-wrapper a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .badge-dark{color:#fff;background-color:#343a40}.editor-styles-wrapper a.badge-dark:hover,.editor-styles-wrapper a.badge-dark:focus{color:#fff;background-color:#1d2124}.editor-styles-wrapper a.badge-dark:focus,.editor-styles-wrapper a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .badge-white{color:#212529;background-color:#fff}.editor-styles-wrapper a.badge-white:hover,.editor-styles-wrapper a.badge-white:focus{color:#212529;background-color:#e6e6e6}.editor-styles-wrapper a.badge-white:focus,.editor-styles-wrapper a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .badge-purple{color:#fff;background-color:#ad6edd}.editor-styles-wrapper a.badge-purple:hover,.editor-styles-wrapper a.badge-purple:focus{color:#fff;background-color:#9645d3}.editor-styles-wrapper a.badge-purple:focus,.editor-styles-wrapper a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .badge-salmon{color:#212529;background-color:#ff977a}.editor-styles-wrapper a.badge-salmon:hover,.editor-styles-wrapper a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.editor-styles-wrapper a.badge-salmon:focus,.editor-styles-wrapper a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .badge-cyan{color:#212529;background-color:#35bdff}.editor-styles-wrapper a.badge-cyan:hover,.editor-styles-wrapper a.badge-cyan:focus{color:#212529;background-color:#02acff}.editor-styles-wrapper a.badge-cyan:focus,.editor-styles-wrapper a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .badge-gray{color:#212529;background-color:#ced4da}.editor-styles-wrapper a.badge-gray:hover,.editor-styles-wrapper a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.editor-styles-wrapper a.badge-gray:focus,.editor-styles-wrapper a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .badge-gray-dark{color:#fff;background-color:#6c757d}.editor-styles-wrapper a.badge-gray-dark:hover,.editor-styles-wrapper a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.editor-styles-wrapper a.badge-gray-dark:focus,.editor-styles-wrapper a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .badge-indigo{color:#fff;background-color:#502c6c}.editor-styles-wrapper a.badge-indigo:hover,.editor-styles-wrapper a.badge-indigo:focus{color:#fff;background-color:#351d48}.editor-styles-wrapper a.badge-indigo:focus,.editor-styles-wrapper a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .badge-orange{color:#212529;background-color:#fbb500}.editor-styles-wrapper a.badge-orange:hover,.editor-styles-wrapper a.badge-orange:focus{color:#212529;background-color:#c89000}.editor-styles-wrapper a.badge-orange:focus,.editor-styles-wrapper a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.editor-styles-wrapper .jumbotron{padding:4rem 2rem}}.editor-styles-wrapper .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.editor-styles-wrapper .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.editor-styles-wrapper .alert-heading{color:inherit}.editor-styles-wrapper .alert-link{font-weight:700}.editor-styles-wrapper .alert-dismissible{padding-right:4rem}.editor-styles-wrapper .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.editor-styles-wrapper .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .alert-primary hr{border-top-color:#1b66a8}.editor-styles-wrapper .alert-primary .alert-link{color:#175892}.editor-styles-wrapper .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-secondary hr{border-top-color:#60686f}.editor-styles-wrapper .alert-secondary .alert-link{color:#545b62}.editor-styles-wrapper .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .alert-success hr{border-top-color:#39b747}.editor-styles-wrapper .alert-success .alert-link{color:#33a340}.editor-styles-wrapper .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .alert-info hr{border-top-color:#148ea1}.editor-styles-wrapper .alert-info .alert-link{color:#117a8b}.editor-styles-wrapper .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .alert-warning hr{border-top-color:#edb100}.editor-styles-wrapper .alert-warning .alert-link{color:#d39e00}.editor-styles-wrapper .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .alert-danger hr{border-top-color:#d32535}.editor-styles-wrapper .alert-danger .alert-link{color:#bd2130}.editor-styles-wrapper .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .alert-light hr{border-top-color:#e9ecef}.editor-styles-wrapper .alert-light .alert-link{color:#dae0e5}.editor-styles-wrapper .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .alert-dark hr{border-top-color:#292d32}.editor-styles-wrapper .alert-dark .alert-link{color:#1d2124}.editor-styles-wrapper .alert-white{color:#fff;background-color:#fff;border-color:#fff}.editor-styles-wrapper .alert-white hr{border-top-color:#f2f2f2}.editor-styles-wrapper .alert-white .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .alert-purple hr{border-top-color:#a159d8}.editor-styles-wrapper .alert-purple .alert-link{color:#9645d3}.editor-styles-wrapper .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .alert-salmon hr{border-top-color:#ff8361}.editor-styles-wrapper .alert-salmon .alert-link{color:#ff6f47}.editor-styles-wrapper .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .alert-cyan hr{border-top-color:#1cb5ff}.editor-styles-wrapper .alert-cyan .alert-link{color:#02acff}.editor-styles-wrapper .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .alert-gray hr{border-top-color:#bfc7cf}.editor-styles-wrapper .alert-gray .alert-link{color:#b1bbc4}.editor-styles-wrapper .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-gray-dark hr{border-top-color:#60686f}.editor-styles-wrapper .alert-gray-dark .alert-link{color:#545b62}.editor-styles-wrapper .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .alert-indigo hr{border-top-color:#43255a}.editor-styles-wrapper .alert-indigo .alert-link{color:#351d48}.editor-styles-wrapper .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .alert-orange hr{border-top-color:#e2a300}.editor-styles-wrapper .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.editor-styles-wrapper .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.editor-styles-wrapper .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .progress-bar{transition:none}}.editor-styles-wrapper .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.editor-styles-wrapper .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .progress-bar-animated{animation:none}}.editor-styles-wrapper .media{display:flex;align-items:flex-start}.editor-styles-wrapper .media-body{flex:1}.editor-styles-wrapper .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.editor-styles-wrapper .list-group-item-action{width:100%;color:#495057;text-align:inherit}.editor-styles-wrapper .list-group-item-action:hover,.editor-styles-wrapper .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.editor-styles-wrapper .list-group-item-action:active{color:#212529;background-color:#e9ecef}.editor-styles-wrapper .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.editor-styles-wrapper .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.editor-styles-wrapper .list-group-item.disabled,.editor-styles-wrapper .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.editor-styles-wrapper .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .list-group-item+.list-group-item{border-top-width:0}.editor-styles-wrapper .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.editor-styles-wrapper .list-group-horizontal{flex-direction:row}.editor-styles-wrapper .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.editor-styles-wrapper .list-group-horizontal-sm{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.editor-styles-wrapper .list-group-horizontal-md{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.editor-styles-wrapper .list-group-horizontal-lg{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.editor-styles-wrapper .list-group-horizontal-xl{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.editor-styles-wrapper .list-group-horizontal-xxl{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.editor-styles-wrapper .list-group-flush{border-radius:0}.editor-styles-wrapper .list-group-flush>.list-group-item{border-width:0 0 1px}.editor-styles-wrapper .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.editor-styles-wrapper .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.editor-styles-wrapper .list-group-item-primary.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.editor-styles-wrapper .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.editor-styles-wrapper .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.editor-styles-wrapper .list-group-item-secondary.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.editor-styles-wrapper .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.editor-styles-wrapper .list-group-item-success{color:#23662b;background-color:#cbefcf}.editor-styles-wrapper .list-group-item-success.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.editor-styles-wrapper .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.editor-styles-wrapper .list-group-item-info{color:#0c5460;background-color:#bee5eb}.editor-styles-wrapper .list-group-item-info.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.editor-styles-wrapper .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.editor-styles-wrapper .list-group-item-warning{color:#856404;background-color:#ffeeba}.editor-styles-wrapper .list-group-item-warning.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.editor-styles-wrapper .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.editor-styles-wrapper .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.editor-styles-wrapper .list-group-item-danger.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.editor-styles-wrapper .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.editor-styles-wrapper .list-group-item-light{color:#818182;background-color:#fdfdfe}.editor-styles-wrapper .list-group-item-light.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.editor-styles-wrapper .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.editor-styles-wrapper .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.editor-styles-wrapper .list-group-item-dark.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.editor-styles-wrapper .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.editor-styles-wrapper .list-group-item-white{color:#858585;background-color:#fff}.editor-styles-wrapper .list-group-item-white.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.editor-styles-wrapper .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.editor-styles-wrapper .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.editor-styles-wrapper .list-group-item-purple.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.editor-styles-wrapper .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.editor-styles-wrapper .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.editor-styles-wrapper .list-group-item-salmon.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.editor-styles-wrapper .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.editor-styles-wrapper .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.editor-styles-wrapper .list-group-item-cyan.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.editor-styles-wrapper .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.editor-styles-wrapper .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.editor-styles-wrapper .list-group-item-gray.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.editor-styles-wrapper .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.editor-styles-wrapper .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.editor-styles-wrapper .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.editor-styles-wrapper .list-group-item-indigo.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.editor-styles-wrapper .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.editor-styles-wrapper .list-group-item-orange{color:#835e00;background-color:#feeab8}.editor-styles-wrapper .list-group-item-orange.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.editor-styles-wrapper .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.editor-styles-wrapper .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.editor-styles-wrapper .close:hover{color:#000;text-decoration:none}.editor-styles-wrapper .close:not(:disabled):not(.disabled):hover,.editor-styles-wrapper .close:not(:disabled):not(.disabled):focus{opacity:.75}.editor-styles-wrapper button.close{padding:0;background-color:transparent;border:0}.editor-styles-wrapper a.close.disabled{pointer-events:none}.editor-styles-wrapper .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.editor-styles-wrapper .toast:not(:last-child){margin-bottom:.75rem}.editor-styles-wrapper .toast.showing{opacity:1}.editor-styles-wrapper .toast.show{display:block;opacity:1}.editor-styles-wrapper .toast.hide{display:none}.editor-styles-wrapper .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .toast-body{padding:.75rem}.editor-styles-wrapper .modal-open{overflow:hidden}.editor-styles-wrapper .modal-open .modal{overflow-x:hidden;overflow-y:auto}.editor-styles-wrapper .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.editor-styles-wrapper .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .editor-styles-wrapper .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .editor-styles-wrapper .modal-dialog{transition:none}}.modal.show .editor-styles-wrapper .modal-dialog{transform:none}.modal.modal-static .editor-styles-wrapper .modal-dialog{transform:scale(1.02)}.editor-styles-wrapper .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.editor-styles-wrapper .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.editor-styles-wrapper .modal-dialog-scrollable .modal-header,.editor-styles-wrapper .modal-dialog-scrollable .modal-footer{flex-shrink:0}.editor-styles-wrapper .modal-dialog-scrollable .modal-body{overflow-y:auto}.editor-styles-wrapper .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.editor-styles-wrapper .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.editor-styles-wrapper .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.editor-styles-wrapper .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.editor-styles-wrapper .modal-backdrop.fade{opacity:0}.editor-styles-wrapper .modal-backdrop.show{opacity:.5}.editor-styles-wrapper .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.editor-styles-wrapper .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.editor-styles-wrapper .modal-title{margin-bottom:0;line-height:1.6}.editor-styles-wrapper .modal-body{position:relative;flex:1 1 auto;padding:1rem}.editor-styles-wrapper .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.editor-styles-wrapper .modal-footer>*{margin:.25rem}.editor-styles-wrapper .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.editor-styles-wrapper .modal-dialog{max-width:500px;margin:1.75rem auto}.editor-styles-wrapper .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.editor-styles-wrapper .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.editor-styles-wrapper .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.editor-styles-wrapper .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.editor-styles-wrapper .modal-sm{max-width:300px}}@media (min-width: 992px){.editor-styles-wrapper .modal-lg,.editor-styles-wrapper .modal-xl{max-width:800px}}@media (min-width: 1200px){.editor-styles-wrapper .modal-xl{max-width:1140px}}.editor-styles-wrapper .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.editor-styles-wrapper .tooltip.show{opacity:.9}.editor-styles-wrapper .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.editor-styles-wrapper .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.editor-styles-wrapper .bs-tooltip-top,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.editor-styles-wrapper .bs-tooltip-top .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.editor-styles-wrapper .bs-tooltip-top .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.editor-styles-wrapper .bs-tooltip-right,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.editor-styles-wrapper .bs-tooltip-right .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.editor-styles-wrapper .bs-tooltip-right .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.editor-styles-wrapper .bs-tooltip-bottom,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.editor-styles-wrapper .bs-tooltip-bottom .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.editor-styles-wrapper .bs-tooltip-bottom .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.editor-styles-wrapper .bs-tooltip-left,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.editor-styles-wrapper .bs-tooltip-left .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.editor-styles-wrapper .bs-tooltip-left .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.editor-styles-wrapper .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.editor-styles-wrapper .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.editor-styles-wrapper .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.editor-styles-wrapper .popover .arrow::before,.editor-styles-wrapper .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.editor-styles-wrapper .bs-popover-top,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.editor-styles-wrapper .bs-popover-top>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.editor-styles-wrapper .bs-popover-top>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-top>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.editor-styles-wrapper .bs-popover-right,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.editor-styles-wrapper .bs-popover-right>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.editor-styles-wrapper .bs-popover-right>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-right>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.editor-styles-wrapper .bs-popover-bottom,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.editor-styles-wrapper .bs-popover-bottom>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.editor-styles-wrapper .bs-popover-bottom>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-bottom>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.editor-styles-wrapper .bs-popover-bottom .popover-header::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.editor-styles-wrapper .bs-popover-left,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.editor-styles-wrapper .bs-popover-left>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.editor-styles-wrapper .bs-popover-left>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-left>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.editor-styles-wrapper .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.editor-styles-wrapper .popover-header:empty{display:none}.editor-styles-wrapper .popover-body{padding:.5rem .75rem;color:#212529}.editor-styles-wrapper .carousel{position:relative}.editor-styles-wrapper .carousel.pointer-event{touch-action:pan-y}.editor-styles-wrapper .carousel-inner{position:relative;width:100%;overflow:hidden}.editor-styles-wrapper .carousel-inner::after{display:block;clear:both;content:""}.editor-styles-wrapper .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-item{transition:none}}.editor-styles-wrapper .carousel-item.active,.editor-styles-wrapper .carousel-item-next,.editor-styles-wrapper .carousel-item-prev{display:block}.editor-styles-wrapper .carousel-item-next:not(.carousel-item-left),.editor-styles-wrapper .active.carousel-item-right{transform:translateX(100%)}.editor-styles-wrapper .carousel-item-prev:not(.carousel-item-right),.editor-styles-wrapper .active.carousel-item-left{transform:translateX(-100%)}.editor-styles-wrapper .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.editor-styles-wrapper .carousel-fade .carousel-item.active,.editor-styles-wrapper .carousel-fade .carousel-item-next.carousel-item-left,.editor-styles-wrapper .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.editor-styles-wrapper .carousel-fade .active.carousel-item-left,.editor-styles-wrapper .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-fade .active.carousel-item-left,.editor-styles-wrapper .carousel-fade .active.carousel-item-right{transition:none}}.editor-styles-wrapper .carousel-control-prev,.editor-styles-wrapper .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-control-prev,.editor-styles-wrapper .carousel-control-next{transition:none}}.editor-styles-wrapper .carousel-control-prev:hover,.editor-styles-wrapper .carousel-control-prev:focus,.editor-styles-wrapper .carousel-control-next:hover,.editor-styles-wrapper .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.editor-styles-wrapper .carousel-control-prev{left:0}.editor-styles-wrapper .carousel-control-next{right:0}.editor-styles-wrapper .carousel-control-prev-icon,.editor-styles-wrapper .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.editor-styles-wrapper .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.editor-styles-wrapper .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.editor-styles-wrapper .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.editor-styles-wrapper .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-indicators li{transition:none}}.editor-styles-wrapper .carousel-indicators .active{opacity:1}.editor-styles-wrapper .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.editor-styles-wrapper .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.editor-styles-wrapper .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.editor-styles-wrapper .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.editor-styles-wrapper .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .spinner-border,.editor-styles-wrapper .spinner-grow{animation-duration:1.5s}}.editor-styles-wrapper .align-baseline{vertical-align:baseline !important}.editor-styles-wrapper .align-top{vertical-align:top !important}.editor-styles-wrapper .align-middle{vertical-align:middle !important}.editor-styles-wrapper .align-bottom{vertical-align:bottom !important}.editor-styles-wrapper .align-text-bottom{vertical-align:text-bottom !important}.editor-styles-wrapper .align-text-top{vertical-align:text-top !important}.editor-styles-wrapper .bg-primary{background-color:#1e73be !important}.editor-styles-wrapper a.bg-primary:hover,.editor-styles-wrapper a.bg-primary:focus,.editor-styles-wrapper button.bg-primary:hover,.editor-styles-wrapper button.bg-primary:focus{background-color:#175892 !important}.editor-styles-wrapper .bg-secondary{background-color:#6c757d !important}.editor-styles-wrapper a.bg-secondary:hover,.editor-styles-wrapper a.bg-secondary:focus,.editor-styles-wrapper button.bg-secondary:hover,.editor-styles-wrapper button.bg-secondary:focus{background-color:#545b62 !important}.editor-styles-wrapper .bg-success{background-color:#44c553 !important}.editor-styles-wrapper a.bg-success:hover,.editor-styles-wrapper a.bg-success:focus,.editor-styles-wrapper button.bg-success:hover,.editor-styles-wrapper button.bg-success:focus{background-color:#33a340 !important}.editor-styles-wrapper .bg-info{background-color:#17a2b8 !important}.editor-styles-wrapper a.bg-info:hover,.editor-styles-wrapper a.bg-info:focus,.editor-styles-wrapper button.bg-info:hover,.editor-styles-wrapper button.bg-info:focus{background-color:#117a8b !important}.editor-styles-wrapper .bg-warning{background-color:#ffc107 !important}.editor-styles-wrapper a.bg-warning:hover,.editor-styles-wrapper a.bg-warning:focus,.editor-styles-wrapper button.bg-warning:hover,.editor-styles-wrapper button.bg-warning:focus{background-color:#d39e00 !important}.editor-styles-wrapper .bg-danger{background-color:#dc3545 !important}.editor-styles-wrapper a.bg-danger:hover,.editor-styles-wrapper a.bg-danger:focus,.editor-styles-wrapper button.bg-danger:hover,.editor-styles-wrapper button.bg-danger:focus{background-color:#bd2130 !important}.editor-styles-wrapper .bg-light{background-color:#f8f9fa !important}.editor-styles-wrapper a.bg-light:hover,.editor-styles-wrapper a.bg-light:focus,.editor-styles-wrapper button.bg-light:hover,.editor-styles-wrapper button.bg-light:focus{background-color:#dae0e5 !important}.editor-styles-wrapper .bg-dark{background-color:#343a40 !important}.editor-styles-wrapper a.bg-dark:hover,.editor-styles-wrapper a.bg-dark:focus,.editor-styles-wrapper button.bg-dark:hover,.editor-styles-wrapper button.bg-dark:focus{background-color:#1d2124 !important}.editor-styles-wrapper .bg-white{background-color:#fff !important}.editor-styles-wrapper a.bg-white:hover,.editor-styles-wrapper a.bg-white:focus,.editor-styles-wrapper button.bg-white:hover,.editor-styles-wrapper button.bg-white:focus{background-color:#e6e6e6 !important}.editor-styles-wrapper .bg-purple{background-color:#ad6edd !important}.editor-styles-wrapper a.bg-purple:hover,.editor-styles-wrapper a.bg-purple:focus,.editor-styles-wrapper button.bg-purple:hover,.editor-styles-wrapper button.bg-purple:focus{background-color:#9645d3 !important}.editor-styles-wrapper .bg-salmon{background-color:#ff977a !important}.editor-styles-wrapper a.bg-salmon:hover,.editor-styles-wrapper a.bg-salmon:focus,.editor-styles-wrapper button.bg-salmon:hover,.editor-styles-wrapper button.bg-salmon:focus{background-color:#ff6f47 !important}.editor-styles-wrapper .bg-cyan{background-color:#35bdff !important}.editor-styles-wrapper a.bg-cyan:hover,.editor-styles-wrapper a.bg-cyan:focus,.editor-styles-wrapper button.bg-cyan:hover,.editor-styles-wrapper button.bg-cyan:focus{background-color:#02acff !important}.editor-styles-wrapper .bg-gray{background-color:#ced4da !important}.editor-styles-wrapper a.bg-gray:hover,.editor-styles-wrapper a.bg-gray:focus,.editor-styles-wrapper button.bg-gray:hover,.editor-styles-wrapper button.bg-gray:focus{background-color:#b1bbc4 !important}.editor-styles-wrapper .bg-gray-dark{background-color:#6c757d !important}.editor-styles-wrapper a.bg-gray-dark:hover,.editor-styles-wrapper a.bg-gray-dark:focus,.editor-styles-wrapper button.bg-gray-dark:hover,.editor-styles-wrapper button.bg-gray-dark:focus{background-color:#545b62 !important}.editor-styles-wrapper .bg-indigo{background-color:#502c6c !important}.editor-styles-wrapper a.bg-indigo:hover,.editor-styles-wrapper a.bg-indigo:focus,.editor-styles-wrapper button.bg-indigo:hover,.editor-styles-wrapper button.bg-indigo:focus{background-color:#351d48 !important}.editor-styles-wrapper .bg-orange{background-color:#fbb500 !important}.editor-styles-wrapper a.bg-orange:hover,.editor-styles-wrapper a.bg-orange:focus,.editor-styles-wrapper button.bg-orange:hover,.editor-styles-wrapper button.bg-orange:focus{background-color:#c89000 !important}.editor-styles-wrapper .bg-white{background-color:#fff !important}.editor-styles-wrapper .bg-transparent{background-color:transparent !important}.editor-styles-wrapper .border{border:1px solid #dee2e6 !important}.editor-styles-wrapper .border-top{border-top:1px solid #dee2e6 !important}.editor-styles-wrapper .border-right{border-right:1px solid #dee2e6 !important}.editor-styles-wrapper .border-bottom{border-bottom:1px solid #dee2e6 !important}.editor-styles-wrapper .border-left{border-left:1px solid #dee2e6 !important}.editor-styles-wrapper .border-0{border:0 !important}.editor-styles-wrapper .border-top-0{border-top:0 !important}.editor-styles-wrapper .border-right-0{border-right:0 !important}.editor-styles-wrapper .border-bottom-0{border-bottom:0 !important}.editor-styles-wrapper .border-left-0{border-left:0 !important}.editor-styles-wrapper .border-primary{border-color:#1e73be !important}.editor-styles-wrapper .border-secondary{border-color:#6c757d !important}.editor-styles-wrapper .border-success{border-color:#44c553 !important}.editor-styles-wrapper .border-info{border-color:#17a2b8 !important}.editor-styles-wrapper .border-warning{border-color:#ffc107 !important}.editor-styles-wrapper .border-danger{border-color:#dc3545 !important}.editor-styles-wrapper .border-light{border-color:#f8f9fa !important}.editor-styles-wrapper .border-dark{border-color:#343a40 !important}.editor-styles-wrapper .border-white{border-color:#fff !important}.editor-styles-wrapper .border-purple{border-color:#ad6edd !important}.editor-styles-wrapper .border-salmon{border-color:#ff977a !important}.editor-styles-wrapper .border-cyan{border-color:#35bdff !important}.editor-styles-wrapper .border-gray{border-color:#ced4da !important}.editor-styles-wrapper .border-gray-dark{border-color:#6c757d !important}.editor-styles-wrapper .border-indigo{border-color:#502c6c !important}.editor-styles-wrapper .border-orange{border-color:#fbb500 !important}.editor-styles-wrapper .border-white{border-color:#fff !important}.editor-styles-wrapper .rounded-sm{border-radius:.2rem !important}.editor-styles-wrapper .rounded{border-radius:.25rem !important}.editor-styles-wrapper .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.editor-styles-wrapper .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.editor-styles-wrapper .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.editor-styles-wrapper .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.editor-styles-wrapper .rounded-lg{border-radius:.3rem !important}.editor-styles-wrapper .rounded-circle{border-radius:50% !important}.editor-styles-wrapper .rounded-pill{border-radius:50rem !important}.editor-styles-wrapper .rounded-0{border-radius:0 !important}.editor-styles-wrapper .clearfix::after{display:block;clear:both;content:""}.editor-styles-wrapper .d-none{display:none !important}.editor-styles-wrapper .d-inline{display:inline !important}.editor-styles-wrapper .d-inline-block{display:inline-block !important}.editor-styles-wrapper .d-block{display:block !important}.editor-styles-wrapper .d-table{display:table !important}.editor-styles-wrapper .d-table-row{display:table-row !important}.editor-styles-wrapper .d-table-cell{display:table-cell !important}.editor-styles-wrapper .d-flex{display:flex !important}.editor-styles-wrapper .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.editor-styles-wrapper .d-sm-none{display:none !important}.editor-styles-wrapper .d-sm-inline{display:inline !important}.editor-styles-wrapper .d-sm-inline-block{display:inline-block !important}.editor-styles-wrapper .d-sm-block{display:block !important}.editor-styles-wrapper .d-sm-table{display:table !important}.editor-styles-wrapper .d-sm-table-row{display:table-row !important}.editor-styles-wrapper .d-sm-table-cell{display:table-cell !important}.editor-styles-wrapper .d-sm-flex{display:flex !important}.editor-styles-wrapper .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.editor-styles-wrapper .d-md-none{display:none !important}.editor-styles-wrapper .d-md-inline{display:inline !important}.editor-styles-wrapper .d-md-inline-block{display:inline-block !important}.editor-styles-wrapper .d-md-block{display:block !important}.editor-styles-wrapper .d-md-table{display:table !important}.editor-styles-wrapper .d-md-table-row{display:table-row !important}.editor-styles-wrapper .d-md-table-cell{display:table-cell !important}.editor-styles-wrapper .d-md-flex{display:flex !important}.editor-styles-wrapper .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.editor-styles-wrapper .d-lg-none{display:none !important}.editor-styles-wrapper .d-lg-inline{display:inline !important}.editor-styles-wrapper .d-lg-inline-block{display:inline-block !important}.editor-styles-wrapper .d-lg-block{display:block !important}.editor-styles-wrapper .d-lg-table{display:table !important}.editor-styles-wrapper .d-lg-table-row{display:table-row !important}.editor-styles-wrapper .d-lg-table-cell{display:table-cell !important}.editor-styles-wrapper .d-lg-flex{display:flex !important}.editor-styles-wrapper .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.editor-styles-wrapper .d-xl-none{display:none !important}.editor-styles-wrapper .d-xl-inline{display:inline !important}.editor-styles-wrapper .d-xl-inline-block{display:inline-block !important}.editor-styles-wrapper .d-xl-block{display:block !important}.editor-styles-wrapper .d-xl-table{display:table !important}.editor-styles-wrapper .d-xl-table-row{display:table-row !important}.editor-styles-wrapper .d-xl-table-cell{display:table-cell !important}.editor-styles-wrapper .d-xl-flex{display:flex !important}.editor-styles-wrapper .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.editor-styles-wrapper .d-xxl-none{display:none !important}.editor-styles-wrapper .d-xxl-inline{display:inline !important}.editor-styles-wrapper .d-xxl-inline-block{display:inline-block !important}.editor-styles-wrapper .d-xxl-block{display:block !important}.editor-styles-wrapper .d-xxl-table{display:table !important}.editor-styles-wrapper .d-xxl-table-row{display:table-row !important}.editor-styles-wrapper .d-xxl-table-cell{display:table-cell !important}.editor-styles-wrapper .d-xxl-flex{display:flex !important}.editor-styles-wrapper .d-xxl-inline-flex{display:inline-flex !important}}@media print{.editor-styles-wrapper .d-print-none{display:none !important}.editor-styles-wrapper .d-print-inline{display:inline !important}.editor-styles-wrapper .d-print-inline-block{display:inline-block !important}.editor-styles-wrapper .d-print-block{display:block !important}.editor-styles-wrapper .d-print-table{display:table !important}.editor-styles-wrapper .d-print-table-row{display:table-row !important}.editor-styles-wrapper .d-print-table-cell{display:table-cell !important}.editor-styles-wrapper .d-print-flex{display:flex !important}.editor-styles-wrapper .d-print-inline-flex{display:inline-flex !important}}.editor-styles-wrapper .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.editor-styles-wrapper .embed-responsive::before{display:block;content:""}.editor-styles-wrapper .embed-responsive .embed-responsive-item,.editor-styles-wrapper .embed-responsive iframe,.editor-styles-wrapper .embed-responsive embed,.editor-styles-wrapper .embed-responsive object,.editor-styles-wrapper .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.editor-styles-wrapper .embed-responsive-21by9::before{padding-top:42.85714286%}.editor-styles-wrapper .embed-responsive-16by9::before{padding-top:56.25%}.editor-styles-wrapper .embed-responsive-4by3::before{padding-top:75%}.editor-styles-wrapper .embed-responsive-1by1::before{padding-top:100%}.editor-styles-wrapper .flex-row{flex-direction:row !important}.editor-styles-wrapper .flex-column{flex-direction:column !important}.editor-styles-wrapper .flex-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-center{justify-content:center !important}.editor-styles-wrapper .justify-content-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-center{align-items:center !important}.editor-styles-wrapper .align-items-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-center{align-content:center !important}.editor-styles-wrapper .align-content-between{align-content:space-between !important}.editor-styles-wrapper .align-content-around{align-content:space-around !important}.editor-styles-wrapper .align-content-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-auto{align-self:auto !important}.editor-styles-wrapper .align-self-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-center{align-self:center !important}.editor-styles-wrapper .align-self-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.editor-styles-wrapper .flex-sm-row{flex-direction:row !important}.editor-styles-wrapper .flex-sm-column{flex-direction:column !important}.editor-styles-wrapper .flex-sm-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-sm-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-sm-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-sm-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-sm-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-sm-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-sm-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-sm-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-sm-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-sm-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-sm-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-sm-center{justify-content:center !important}.editor-styles-wrapper .justify-content-sm-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-sm-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-sm-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-sm-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-sm-center{align-items:center !important}.editor-styles-wrapper .align-items-sm-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-sm-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-sm-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-sm-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-sm-center{align-content:center !important}.editor-styles-wrapper .align-content-sm-between{align-content:space-between !important}.editor-styles-wrapper .align-content-sm-around{align-content:space-around !important}.editor-styles-wrapper .align-content-sm-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-sm-auto{align-self:auto !important}.editor-styles-wrapper .align-self-sm-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-sm-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-sm-center{align-self:center !important}.editor-styles-wrapper .align-self-sm-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.editor-styles-wrapper .flex-md-row{flex-direction:row !important}.editor-styles-wrapper .flex-md-column{flex-direction:column !important}.editor-styles-wrapper .flex-md-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-md-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-md-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-md-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-md-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-md-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-md-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-md-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-md-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-md-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-md-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-md-center{justify-content:center !important}.editor-styles-wrapper .justify-content-md-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-md-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-md-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-md-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-md-center{align-items:center !important}.editor-styles-wrapper .align-items-md-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-md-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-md-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-md-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-md-center{align-content:center !important}.editor-styles-wrapper .align-content-md-between{align-content:space-between !important}.editor-styles-wrapper .align-content-md-around{align-content:space-around !important}.editor-styles-wrapper .align-content-md-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-md-auto{align-self:auto !important}.editor-styles-wrapper .align-self-md-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-md-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-md-center{align-self:center !important}.editor-styles-wrapper .align-self-md-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.editor-styles-wrapper .flex-lg-row{flex-direction:row !important}.editor-styles-wrapper .flex-lg-column{flex-direction:column !important}.editor-styles-wrapper .flex-lg-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-lg-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-lg-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-lg-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-lg-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-lg-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-lg-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-lg-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-lg-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-lg-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-lg-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-lg-center{justify-content:center !important}.editor-styles-wrapper .justify-content-lg-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-lg-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-lg-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-lg-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-lg-center{align-items:center !important}.editor-styles-wrapper .align-items-lg-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-lg-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-lg-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-lg-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-lg-center{align-content:center !important}.editor-styles-wrapper .align-content-lg-between{align-content:space-between !important}.editor-styles-wrapper .align-content-lg-around{align-content:space-around !important}.editor-styles-wrapper .align-content-lg-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-lg-auto{align-self:auto !important}.editor-styles-wrapper .align-self-lg-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-lg-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-lg-center{align-self:center !important}.editor-styles-wrapper .align-self-lg-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.editor-styles-wrapper .flex-xl-row{flex-direction:row !important}.editor-styles-wrapper .flex-xl-column{flex-direction:column !important}.editor-styles-wrapper .flex-xl-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-xl-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-xl-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-xl-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-xl-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-xl-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-xl-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-xl-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-xl-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-xl-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-xl-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-xl-center{justify-content:center !important}.editor-styles-wrapper .justify-content-xl-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-xl-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-xl-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-xl-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-xl-center{align-items:center !important}.editor-styles-wrapper .align-items-xl-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-xl-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-xl-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-xl-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-xl-center{align-content:center !important}.editor-styles-wrapper .align-content-xl-between{align-content:space-between !important}.editor-styles-wrapper .align-content-xl-around{align-content:space-around !important}.editor-styles-wrapper .align-content-xl-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-xl-auto{align-self:auto !important}.editor-styles-wrapper .align-self-xl-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-xl-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-xl-center{align-self:center !important}.editor-styles-wrapper .align-self-xl-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.editor-styles-wrapper .flex-xxl-row{flex-direction:row !important}.editor-styles-wrapper .flex-xxl-column{flex-direction:column !important}.editor-styles-wrapper .flex-xxl-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-xxl-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-xxl-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-xxl-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-xxl-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-xxl-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-xxl-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-xxl-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-xxl-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-xxl-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-xxl-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-xxl-center{justify-content:center !important}.editor-styles-wrapper .justify-content-xxl-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-xxl-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-xxl-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-xxl-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-xxl-center{align-items:center !important}.editor-styles-wrapper .align-items-xxl-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-xxl-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-xxl-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-xxl-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-xxl-center{align-content:center !important}.editor-styles-wrapper .align-content-xxl-between{align-content:space-between !important}.editor-styles-wrapper .align-content-xxl-around{align-content:space-around !important}.editor-styles-wrapper .align-content-xxl-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-xxl-auto{align-self:auto !important}.editor-styles-wrapper .align-self-xxl-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-xxl-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-xxl-center{align-self:center !important}.editor-styles-wrapper .align-self-xxl-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-xxl-stretch{align-self:stretch !important}}.editor-styles-wrapper .float-left{float:left !important}.editor-styles-wrapper .float-right{float:right !important}.editor-styles-wrapper .float-none{float:none !important}@media (min-width: 576px){.editor-styles-wrapper .float-sm-left{float:left !important}.editor-styles-wrapper .float-sm-right{float:right !important}.editor-styles-wrapper .float-sm-none{float:none !important}}@media (min-width: 768px){.editor-styles-wrapper .float-md-left{float:left !important}.editor-styles-wrapper .float-md-right{float:right !important}.editor-styles-wrapper .float-md-none{float:none !important}}@media (min-width: 992px){.editor-styles-wrapper .float-lg-left{float:left !important}.editor-styles-wrapper .float-lg-right{float:right !important}.editor-styles-wrapper .float-lg-none{float:none !important}}@media (min-width: 1200px){.editor-styles-wrapper .float-xl-left{float:left !important}.editor-styles-wrapper .float-xl-right{float:right !important}.editor-styles-wrapper .float-xl-none{float:none !important}}@media (min-width: 1400px){.editor-styles-wrapper .float-xxl-left{float:left !important}.editor-styles-wrapper .float-xxl-right{float:right !important}.editor-styles-wrapper .float-xxl-none{float:none !important}}.editor-styles-wrapper .user-select-all{user-select:all !important}.editor-styles-wrapper .user-select-auto{user-select:auto !important}.editor-styles-wrapper .user-select-none{user-select:none !important}.editor-styles-wrapper .overflow-auto{overflow:auto !important}.editor-styles-wrapper .overflow-hidden{overflow:hidden !important}.editor-styles-wrapper .position-static{position:static !important}.editor-styles-wrapper .position-relative{position:relative !important}.editor-styles-wrapper .position-absolute{position:absolute !important}.editor-styles-wrapper .position-fixed{position:fixed !important}.editor-styles-wrapper .position-sticky{position:sticky !important}.editor-styles-wrapper .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.editor-styles-wrapper .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.editor-styles-wrapper .sticky-top{position:sticky;top:0;z-index:1020}}.editor-styles-wrapper .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.editor-styles-wrapper .sr-only-focusable:active,.editor-styles-wrapper .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.editor-styles-wrapper .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.editor-styles-wrapper .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.editor-styles-wrapper .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.editor-styles-wrapper .shadow-none{box-shadow:none !important}.editor-styles-wrapper .w-25{width:25% !important}.editor-styles-wrapper .w-50{width:50% !important}.editor-styles-wrapper .w-75{width:75% !important}.editor-styles-wrapper .w-100{width:100% !important}.editor-styles-wrapper .w-auto{width:auto !important}.editor-styles-wrapper .h-25{height:25% !important}.editor-styles-wrapper .h-50{height:50% !important}.editor-styles-wrapper .h-75{height:75% !important}.editor-styles-wrapper .h-100{height:100% !important}.editor-styles-wrapper .h-auto{height:auto !important}.editor-styles-wrapper .mw-100{max-width:100% !important}.editor-styles-wrapper .mh-100{max-height:100% !important}.editor-styles-wrapper .min-vw-100{min-width:100vw !important}.editor-styles-wrapper .min-vh-100{min-height:100vh !important}.editor-styles-wrapper .vw-100{width:100vw !important}.editor-styles-wrapper .vh-100{height:100vh !important}.editor-styles-wrapper .m-0{margin:0 !important}.editor-styles-wrapper .mt-0,.editor-styles-wrapper .my-0{margin-top:0 !important}.editor-styles-wrapper .mr-0,.editor-styles-wrapper .mx-0{margin-right:0 !important}.editor-styles-wrapper .mb-0,.editor-styles-wrapper .my-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-0,.editor-styles-wrapper .mx-0{margin-left:0 !important}.editor-styles-wrapper .m-1{margin:.25rem !important}.editor-styles-wrapper .mt-1,.editor-styles-wrapper .my-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-1,.editor-styles-wrapper .mx-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-1,.editor-styles-wrapper .my-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-1,.editor-styles-wrapper .mx-1{margin-left:.25rem !important}.editor-styles-wrapper .m-2{margin:.5rem !important}.editor-styles-wrapper .mt-2,.editor-styles-wrapper .my-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-2,.editor-styles-wrapper .mx-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-2,.editor-styles-wrapper .my-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-2,.editor-styles-wrapper .mx-2{margin-left:.5rem !important}.editor-styles-wrapper .m-3{margin:1rem !important}.editor-styles-wrapper .mt-3,.editor-styles-wrapper .my-3{margin-top:1rem !important}.editor-styles-wrapper .mr-3,.editor-styles-wrapper .mx-3{margin-right:1rem !important}.editor-styles-wrapper .mb-3,.editor-styles-wrapper .my-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-3,.editor-styles-wrapper .mx-3{margin-left:1rem !important}.editor-styles-wrapper .m-4{margin:1.5rem !important}.editor-styles-wrapper .mt-4,.editor-styles-wrapper .my-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-4,.editor-styles-wrapper .mx-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-4,.editor-styles-wrapper .my-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-4,.editor-styles-wrapper .mx-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-5{margin:3rem !important}.editor-styles-wrapper .mt-5,.editor-styles-wrapper .my-5{margin-top:3rem !important}.editor-styles-wrapper .mr-5,.editor-styles-wrapper .mx-5{margin-right:3rem !important}.editor-styles-wrapper .mb-5,.editor-styles-wrapper .my-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-5,.editor-styles-wrapper .mx-5{margin-left:3rem !important}.editor-styles-wrapper .m-6{margin:4rem !important}.editor-styles-wrapper .mt-6,.editor-styles-wrapper .my-6{margin-top:4rem !important}.editor-styles-wrapper .mr-6,.editor-styles-wrapper .mx-6{margin-right:4rem !important}.editor-styles-wrapper .mb-6,.editor-styles-wrapper .my-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-6,.editor-styles-wrapper .mx-6{margin-left:4rem !important}.editor-styles-wrapper .m-7{margin:6rem !important}.editor-styles-wrapper .mt-7,.editor-styles-wrapper .my-7{margin-top:6rem !important}.editor-styles-wrapper .mr-7,.editor-styles-wrapper .mx-7{margin-right:6rem !important}.editor-styles-wrapper .mb-7,.editor-styles-wrapper .my-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-7,.editor-styles-wrapper .mx-7{margin-left:6rem !important}.editor-styles-wrapper .m-8{margin:8rem !important}.editor-styles-wrapper .mt-8,.editor-styles-wrapper .my-8{margin-top:8rem !important}.editor-styles-wrapper .mr-8,.editor-styles-wrapper .mx-8{margin-right:8rem !important}.editor-styles-wrapper .mb-8,.editor-styles-wrapper .my-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-8,.editor-styles-wrapper .mx-8{margin-left:8rem !important}.editor-styles-wrapper .m-9{margin:10rem !important}.editor-styles-wrapper .mt-9,.editor-styles-wrapper .my-9{margin-top:10rem !important}.editor-styles-wrapper .mr-9,.editor-styles-wrapper .mx-9{margin-right:10rem !important}.editor-styles-wrapper .mb-9,.editor-styles-wrapper .my-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-9,.editor-styles-wrapper .mx-9{margin-left:10rem !important}.editor-styles-wrapper .m-10{margin:12rem !important}.editor-styles-wrapper .mt-10,.editor-styles-wrapper .my-10{margin-top:12rem !important}.editor-styles-wrapper .mr-10,.editor-styles-wrapper .mx-10{margin-right:12rem !important}.editor-styles-wrapper .mb-10,.editor-styles-wrapper .my-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-10,.editor-styles-wrapper .mx-10{margin-left:12rem !important}.editor-styles-wrapper .m-11{margin:14rem !important}.editor-styles-wrapper .mt-11,.editor-styles-wrapper .my-11{margin-top:14rem !important}.editor-styles-wrapper .mr-11,.editor-styles-wrapper .mx-11{margin-right:14rem !important}.editor-styles-wrapper .mb-11,.editor-styles-wrapper .my-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-11,.editor-styles-wrapper .mx-11{margin-left:14rem !important}.editor-styles-wrapper .m-12{margin:16rem !important}.editor-styles-wrapper .mt-12,.editor-styles-wrapper .my-12{margin-top:16rem !important}.editor-styles-wrapper .mr-12,.editor-styles-wrapper .mx-12{margin-right:16rem !important}.editor-styles-wrapper .mb-12,.editor-styles-wrapper .my-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-12,.editor-styles-wrapper .mx-12{margin-left:16rem !important}.editor-styles-wrapper .p-0{padding:0 !important}.editor-styles-wrapper .pt-0,.editor-styles-wrapper .py-0{padding-top:0 !important}.editor-styles-wrapper .pr-0,.editor-styles-wrapper .px-0{padding-right:0 !important}.editor-styles-wrapper .pb-0,.editor-styles-wrapper .py-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-0,.editor-styles-wrapper .px-0{padding-left:0 !important}.editor-styles-wrapper .p-1{padding:.25rem !important}.editor-styles-wrapper .pt-1,.editor-styles-wrapper .py-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-1,.editor-styles-wrapper .px-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-1,.editor-styles-wrapper .py-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-1,.editor-styles-wrapper .px-1{padding-left:.25rem !important}.editor-styles-wrapper .p-2{padding:.5rem !important}.editor-styles-wrapper .pt-2,.editor-styles-wrapper .py-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-2,.editor-styles-wrapper .px-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-2,.editor-styles-wrapper .py-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-2,.editor-styles-wrapper .px-2{padding-left:.5rem !important}.editor-styles-wrapper .p-3{padding:1rem !important}.editor-styles-wrapper .pt-3,.editor-styles-wrapper .py-3{padding-top:1rem !important}.editor-styles-wrapper .pr-3,.editor-styles-wrapper .px-3{padding-right:1rem !important}.editor-styles-wrapper .pb-3,.editor-styles-wrapper .py-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-3,.editor-styles-wrapper .px-3{padding-left:1rem !important}.editor-styles-wrapper .p-4{padding:1.5rem !important}.editor-styles-wrapper .pt-4,.editor-styles-wrapper .py-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-4,.editor-styles-wrapper .px-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-4,.editor-styles-wrapper .py-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-4,.editor-styles-wrapper .px-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-5{padding:3rem !important}.editor-styles-wrapper .pt-5,.editor-styles-wrapper .py-5{padding-top:3rem !important}.editor-styles-wrapper .pr-5,.editor-styles-wrapper .px-5{padding-right:3rem !important}.editor-styles-wrapper .pb-5,.editor-styles-wrapper .py-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-5,.editor-styles-wrapper .px-5{padding-left:3rem !important}.editor-styles-wrapper .p-6{padding:4rem !important}.editor-styles-wrapper .pt-6,.editor-styles-wrapper .py-6{padding-top:4rem !important}.editor-styles-wrapper .pr-6,.editor-styles-wrapper .px-6{padding-right:4rem !important}.editor-styles-wrapper .pb-6,.editor-styles-wrapper .py-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-6,.editor-styles-wrapper .px-6{padding-left:4rem !important}.editor-styles-wrapper .p-7{padding:6rem !important}.editor-styles-wrapper .pt-7,.editor-styles-wrapper .py-7{padding-top:6rem !important}.editor-styles-wrapper .pr-7,.editor-styles-wrapper .px-7{padding-right:6rem !important}.editor-styles-wrapper .pb-7,.editor-styles-wrapper .py-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-7,.editor-styles-wrapper .px-7{padding-left:6rem !important}.editor-styles-wrapper .p-8{padding:8rem !important}.editor-styles-wrapper .pt-8,.editor-styles-wrapper .py-8{padding-top:8rem !important}.editor-styles-wrapper .pr-8,.editor-styles-wrapper .px-8{padding-right:8rem !important}.editor-styles-wrapper .pb-8,.editor-styles-wrapper .py-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-8,.editor-styles-wrapper .px-8{padding-left:8rem !important}.editor-styles-wrapper .p-9{padding:10rem !important}.editor-styles-wrapper .pt-9,.editor-styles-wrapper .py-9{padding-top:10rem !important}.editor-styles-wrapper .pr-9,.editor-styles-wrapper .px-9{padding-right:10rem !important}.editor-styles-wrapper .pb-9,.editor-styles-wrapper .py-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-9,.editor-styles-wrapper .px-9{padding-left:10rem !important}.editor-styles-wrapper .p-10{padding:12rem !important}.editor-styles-wrapper .pt-10,.editor-styles-wrapper .py-10{padding-top:12rem !important}.editor-styles-wrapper .pr-10,.editor-styles-wrapper .px-10{padding-right:12rem !important}.editor-styles-wrapper .pb-10,.editor-styles-wrapper .py-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-10,.editor-styles-wrapper .px-10{padding-left:12rem !important}.editor-styles-wrapper .p-11{padding:14rem !important}.editor-styles-wrapper .pt-11,.editor-styles-wrapper .py-11{padding-top:14rem !important}.editor-styles-wrapper .pr-11,.editor-styles-wrapper .px-11{padding-right:14rem !important}.editor-styles-wrapper .pb-11,.editor-styles-wrapper .py-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-11,.editor-styles-wrapper .px-11{padding-left:14rem !important}.editor-styles-wrapper .p-12{padding:16rem !important}.editor-styles-wrapper .pt-12,.editor-styles-wrapper .py-12{padding-top:16rem !important}.editor-styles-wrapper .pr-12,.editor-styles-wrapper .px-12{padding-right:16rem !important}.editor-styles-wrapper .pb-12,.editor-styles-wrapper .py-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-12,.editor-styles-wrapper .px-12{padding-left:16rem !important}.editor-styles-wrapper .m-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-n1,.editor-styles-wrapper .my-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-n1,.editor-styles-wrapper .mx-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-n1,.editor-styles-wrapper .my-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-n1,.editor-styles-wrapper .mx-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-n2,.editor-styles-wrapper .my-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-n2,.editor-styles-wrapper .mx-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-n2,.editor-styles-wrapper .my-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-n2,.editor-styles-wrapper .mx-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-n3{margin:-1rem !important}.editor-styles-wrapper .mt-n3,.editor-styles-wrapper .my-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-n3,.editor-styles-wrapper .mx-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-n3,.editor-styles-wrapper .my-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-n3,.editor-styles-wrapper .mx-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-n4,.editor-styles-wrapper .my-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-n4,.editor-styles-wrapper .mx-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-n4,.editor-styles-wrapper .my-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-n4,.editor-styles-wrapper .mx-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-n5{margin:-3rem !important}.editor-styles-wrapper .mt-n5,.editor-styles-wrapper .my-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-n5,.editor-styles-wrapper .mx-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-n5,.editor-styles-wrapper .my-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-n5,.editor-styles-wrapper .mx-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-n6{margin:-4rem !important}.editor-styles-wrapper .mt-n6,.editor-styles-wrapper .my-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-n6,.editor-styles-wrapper .mx-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-n6,.editor-styles-wrapper .my-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-n6,.editor-styles-wrapper .mx-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-n7{margin:-6rem !important}.editor-styles-wrapper .mt-n7,.editor-styles-wrapper .my-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-n7,.editor-styles-wrapper .mx-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-n7,.editor-styles-wrapper .my-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-n7,.editor-styles-wrapper .mx-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-n8{margin:-8rem !important}.editor-styles-wrapper .mt-n8,.editor-styles-wrapper .my-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-n8,.editor-styles-wrapper .mx-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-n8,.editor-styles-wrapper .my-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-n8,.editor-styles-wrapper .mx-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-n9{margin:-10rem !important}.editor-styles-wrapper .mt-n9,.editor-styles-wrapper .my-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-n9,.editor-styles-wrapper .mx-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-n9,.editor-styles-wrapper .my-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-n9,.editor-styles-wrapper .mx-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-n10{margin:-12rem !important}.editor-styles-wrapper .mt-n10,.editor-styles-wrapper .my-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-n10,.editor-styles-wrapper .mx-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-n10,.editor-styles-wrapper .my-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-n10,.editor-styles-wrapper .mx-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-n11{margin:-14rem !important}.editor-styles-wrapper .mt-n11,.editor-styles-wrapper .my-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-n11,.editor-styles-wrapper .mx-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-n11,.editor-styles-wrapper .my-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-n11,.editor-styles-wrapper .mx-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-n12{margin:-16rem !important}.editor-styles-wrapper .mt-n12,.editor-styles-wrapper .my-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-n12,.editor-styles-wrapper .mx-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-n12,.editor-styles-wrapper .my-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-n12,.editor-styles-wrapper .mx-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-auto{margin:auto !important}.editor-styles-wrapper .mt-auto,.editor-styles-wrapper .my-auto{margin-top:auto !important}.editor-styles-wrapper .mr-auto,.editor-styles-wrapper .mx-auto{margin-right:auto !important}.editor-styles-wrapper .mb-auto,.editor-styles-wrapper .my-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-auto,.editor-styles-wrapper .mx-auto{margin-left:auto !important}@media (min-width: 576px){.editor-styles-wrapper .m-sm-0{margin:0 !important}.editor-styles-wrapper .mt-sm-0,.editor-styles-wrapper .my-sm-0{margin-top:0 !important}.editor-styles-wrapper .mr-sm-0,.editor-styles-wrapper .mx-sm-0{margin-right:0 !important}.editor-styles-wrapper .mb-sm-0,.editor-styles-wrapper .my-sm-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-sm-0,.editor-styles-wrapper .mx-sm-0{margin-left:0 !important}.editor-styles-wrapper .m-sm-1{margin:.25rem !important}.editor-styles-wrapper .mt-sm-1,.editor-styles-wrapper .my-sm-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-sm-1,.editor-styles-wrapper .mx-sm-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-sm-1,.editor-styles-wrapper .my-sm-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-sm-1,.editor-styles-wrapper .mx-sm-1{margin-left:.25rem !important}.editor-styles-wrapper .m-sm-2{margin:.5rem !important}.editor-styles-wrapper .mt-sm-2,.editor-styles-wrapper .my-sm-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-sm-2,.editor-styles-wrapper .mx-sm-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-sm-2,.editor-styles-wrapper .my-sm-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-sm-2,.editor-styles-wrapper .mx-sm-2{margin-left:.5rem !important}.editor-styles-wrapper .m-sm-3{margin:1rem !important}.editor-styles-wrapper .mt-sm-3,.editor-styles-wrapper .my-sm-3{margin-top:1rem !important}.editor-styles-wrapper .mr-sm-3,.editor-styles-wrapper .mx-sm-3{margin-right:1rem !important}.editor-styles-wrapper .mb-sm-3,.editor-styles-wrapper .my-sm-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-sm-3,.editor-styles-wrapper .mx-sm-3{margin-left:1rem !important}.editor-styles-wrapper .m-sm-4{margin:1.5rem !important}.editor-styles-wrapper .mt-sm-4,.editor-styles-wrapper .my-sm-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-sm-4,.editor-styles-wrapper .mx-sm-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-sm-4,.editor-styles-wrapper .my-sm-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-sm-4,.editor-styles-wrapper .mx-sm-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-sm-5{margin:3rem !important}.editor-styles-wrapper .mt-sm-5,.editor-styles-wrapper .my-sm-5{margin-top:3rem !important}.editor-styles-wrapper .mr-sm-5,.editor-styles-wrapper .mx-sm-5{margin-right:3rem !important}.editor-styles-wrapper .mb-sm-5,.editor-styles-wrapper .my-sm-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-sm-5,.editor-styles-wrapper .mx-sm-5{margin-left:3rem !important}.editor-styles-wrapper .m-sm-6{margin:4rem !important}.editor-styles-wrapper .mt-sm-6,.editor-styles-wrapper .my-sm-6{margin-top:4rem !important}.editor-styles-wrapper .mr-sm-6,.editor-styles-wrapper .mx-sm-6{margin-right:4rem !important}.editor-styles-wrapper .mb-sm-6,.editor-styles-wrapper .my-sm-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-sm-6,.editor-styles-wrapper .mx-sm-6{margin-left:4rem !important}.editor-styles-wrapper .m-sm-7{margin:6rem !important}.editor-styles-wrapper .mt-sm-7,.editor-styles-wrapper .my-sm-7{margin-top:6rem !important}.editor-styles-wrapper .mr-sm-7,.editor-styles-wrapper .mx-sm-7{margin-right:6rem !important}.editor-styles-wrapper .mb-sm-7,.editor-styles-wrapper .my-sm-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-sm-7,.editor-styles-wrapper .mx-sm-7{margin-left:6rem !important}.editor-styles-wrapper .m-sm-8{margin:8rem !important}.editor-styles-wrapper .mt-sm-8,.editor-styles-wrapper .my-sm-8{margin-top:8rem !important}.editor-styles-wrapper .mr-sm-8,.editor-styles-wrapper .mx-sm-8{margin-right:8rem !important}.editor-styles-wrapper .mb-sm-8,.editor-styles-wrapper .my-sm-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-sm-8,.editor-styles-wrapper .mx-sm-8{margin-left:8rem !important}.editor-styles-wrapper .m-sm-9{margin:10rem !important}.editor-styles-wrapper .mt-sm-9,.editor-styles-wrapper .my-sm-9{margin-top:10rem !important}.editor-styles-wrapper .mr-sm-9,.editor-styles-wrapper .mx-sm-9{margin-right:10rem !important}.editor-styles-wrapper .mb-sm-9,.editor-styles-wrapper .my-sm-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-sm-9,.editor-styles-wrapper .mx-sm-9{margin-left:10rem !important}.editor-styles-wrapper .m-sm-10{margin:12rem !important}.editor-styles-wrapper .mt-sm-10,.editor-styles-wrapper .my-sm-10{margin-top:12rem !important}.editor-styles-wrapper .mr-sm-10,.editor-styles-wrapper .mx-sm-10{margin-right:12rem !important}.editor-styles-wrapper .mb-sm-10,.editor-styles-wrapper .my-sm-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-sm-10,.editor-styles-wrapper .mx-sm-10{margin-left:12rem !important}.editor-styles-wrapper .m-sm-11{margin:14rem !important}.editor-styles-wrapper .mt-sm-11,.editor-styles-wrapper .my-sm-11{margin-top:14rem !important}.editor-styles-wrapper .mr-sm-11,.editor-styles-wrapper .mx-sm-11{margin-right:14rem !important}.editor-styles-wrapper .mb-sm-11,.editor-styles-wrapper .my-sm-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-sm-11,.editor-styles-wrapper .mx-sm-11{margin-left:14rem !important}.editor-styles-wrapper .m-sm-12{margin:16rem !important}.editor-styles-wrapper .mt-sm-12,.editor-styles-wrapper .my-sm-12{margin-top:16rem !important}.editor-styles-wrapper .mr-sm-12,.editor-styles-wrapper .mx-sm-12{margin-right:16rem !important}.editor-styles-wrapper .mb-sm-12,.editor-styles-wrapper .my-sm-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-sm-12,.editor-styles-wrapper .mx-sm-12{margin-left:16rem !important}.editor-styles-wrapper .p-sm-0{padding:0 !important}.editor-styles-wrapper .pt-sm-0,.editor-styles-wrapper .py-sm-0{padding-top:0 !important}.editor-styles-wrapper .pr-sm-0,.editor-styles-wrapper .px-sm-0{padding-right:0 !important}.editor-styles-wrapper .pb-sm-0,.editor-styles-wrapper .py-sm-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-sm-0,.editor-styles-wrapper .px-sm-0{padding-left:0 !important}.editor-styles-wrapper .p-sm-1{padding:.25rem !important}.editor-styles-wrapper .pt-sm-1,.editor-styles-wrapper .py-sm-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-sm-1,.editor-styles-wrapper .px-sm-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-sm-1,.editor-styles-wrapper .py-sm-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-sm-1,.editor-styles-wrapper .px-sm-1{padding-left:.25rem !important}.editor-styles-wrapper .p-sm-2{padding:.5rem !important}.editor-styles-wrapper .pt-sm-2,.editor-styles-wrapper .py-sm-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-sm-2,.editor-styles-wrapper .px-sm-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-sm-2,.editor-styles-wrapper .py-sm-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-sm-2,.editor-styles-wrapper .px-sm-2{padding-left:.5rem !important}.editor-styles-wrapper .p-sm-3{padding:1rem !important}.editor-styles-wrapper .pt-sm-3,.editor-styles-wrapper .py-sm-3{padding-top:1rem !important}.editor-styles-wrapper .pr-sm-3,.editor-styles-wrapper .px-sm-3{padding-right:1rem !important}.editor-styles-wrapper .pb-sm-3,.editor-styles-wrapper .py-sm-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-sm-3,.editor-styles-wrapper .px-sm-3{padding-left:1rem !important}.editor-styles-wrapper .p-sm-4{padding:1.5rem !important}.editor-styles-wrapper .pt-sm-4,.editor-styles-wrapper .py-sm-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-sm-4,.editor-styles-wrapper .px-sm-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-sm-4,.editor-styles-wrapper .py-sm-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-sm-4,.editor-styles-wrapper .px-sm-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-sm-5{padding:3rem !important}.editor-styles-wrapper .pt-sm-5,.editor-styles-wrapper .py-sm-5{padding-top:3rem !important}.editor-styles-wrapper .pr-sm-5,.editor-styles-wrapper .px-sm-5{padding-right:3rem !important}.editor-styles-wrapper .pb-sm-5,.editor-styles-wrapper .py-sm-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-sm-5,.editor-styles-wrapper .px-sm-5{padding-left:3rem !important}.editor-styles-wrapper .p-sm-6{padding:4rem !important}.editor-styles-wrapper .pt-sm-6,.editor-styles-wrapper .py-sm-6{padding-top:4rem !important}.editor-styles-wrapper .pr-sm-6,.editor-styles-wrapper .px-sm-6{padding-right:4rem !important}.editor-styles-wrapper .pb-sm-6,.editor-styles-wrapper .py-sm-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-sm-6,.editor-styles-wrapper .px-sm-6{padding-left:4rem !important}.editor-styles-wrapper .p-sm-7{padding:6rem !important}.editor-styles-wrapper .pt-sm-7,.editor-styles-wrapper .py-sm-7{padding-top:6rem !important}.editor-styles-wrapper .pr-sm-7,.editor-styles-wrapper .px-sm-7{padding-right:6rem !important}.editor-styles-wrapper .pb-sm-7,.editor-styles-wrapper .py-sm-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-sm-7,.editor-styles-wrapper .px-sm-7{padding-left:6rem !important}.editor-styles-wrapper .p-sm-8{padding:8rem !important}.editor-styles-wrapper .pt-sm-8,.editor-styles-wrapper .py-sm-8{padding-top:8rem !important}.editor-styles-wrapper .pr-sm-8,.editor-styles-wrapper .px-sm-8{padding-right:8rem !important}.editor-styles-wrapper .pb-sm-8,.editor-styles-wrapper .py-sm-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-sm-8,.editor-styles-wrapper .px-sm-8{padding-left:8rem !important}.editor-styles-wrapper .p-sm-9{padding:10rem !important}.editor-styles-wrapper .pt-sm-9,.editor-styles-wrapper .py-sm-9{padding-top:10rem !important}.editor-styles-wrapper .pr-sm-9,.editor-styles-wrapper .px-sm-9{padding-right:10rem !important}.editor-styles-wrapper .pb-sm-9,.editor-styles-wrapper .py-sm-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-sm-9,.editor-styles-wrapper .px-sm-9{padding-left:10rem !important}.editor-styles-wrapper .p-sm-10{padding:12rem !important}.editor-styles-wrapper .pt-sm-10,.editor-styles-wrapper .py-sm-10{padding-top:12rem !important}.editor-styles-wrapper .pr-sm-10,.editor-styles-wrapper .px-sm-10{padding-right:12rem !important}.editor-styles-wrapper .pb-sm-10,.editor-styles-wrapper .py-sm-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-sm-10,.editor-styles-wrapper .px-sm-10{padding-left:12rem !important}.editor-styles-wrapper .p-sm-11{padding:14rem !important}.editor-styles-wrapper .pt-sm-11,.editor-styles-wrapper .py-sm-11{padding-top:14rem !important}.editor-styles-wrapper .pr-sm-11,.editor-styles-wrapper .px-sm-11{padding-right:14rem !important}.editor-styles-wrapper .pb-sm-11,.editor-styles-wrapper .py-sm-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-sm-11,.editor-styles-wrapper .px-sm-11{padding-left:14rem !important}.editor-styles-wrapper .p-sm-12{padding:16rem !important}.editor-styles-wrapper .pt-sm-12,.editor-styles-wrapper .py-sm-12{padding-top:16rem !important}.editor-styles-wrapper .pr-sm-12,.editor-styles-wrapper .px-sm-12{padding-right:16rem !important}.editor-styles-wrapper .pb-sm-12,.editor-styles-wrapper .py-sm-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-sm-12,.editor-styles-wrapper .px-sm-12{padding-left:16rem !important}.editor-styles-wrapper .m-sm-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-sm-n1,.editor-styles-wrapper .my-sm-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-sm-n1,.editor-styles-wrapper .mx-sm-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-sm-n1,.editor-styles-wrapper .my-sm-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-sm-n1,.editor-styles-wrapper .mx-sm-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-sm-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-sm-n2,.editor-styles-wrapper .my-sm-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-sm-n2,.editor-styles-wrapper .mx-sm-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-sm-n2,.editor-styles-wrapper .my-sm-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-sm-n2,.editor-styles-wrapper .mx-sm-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-sm-n3{margin:-1rem !important}.editor-styles-wrapper .mt-sm-n3,.editor-styles-wrapper .my-sm-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-sm-n3,.editor-styles-wrapper .mx-sm-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-sm-n3,.editor-styles-wrapper .my-sm-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-sm-n3,.editor-styles-wrapper .mx-sm-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-sm-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-sm-n4,.editor-styles-wrapper .my-sm-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-sm-n4,.editor-styles-wrapper .mx-sm-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-sm-n4,.editor-styles-wrapper .my-sm-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-sm-n4,.editor-styles-wrapper .mx-sm-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-sm-n5{margin:-3rem !important}.editor-styles-wrapper .mt-sm-n5,.editor-styles-wrapper .my-sm-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-sm-n5,.editor-styles-wrapper .mx-sm-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-sm-n5,.editor-styles-wrapper .my-sm-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-sm-n5,.editor-styles-wrapper .mx-sm-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-sm-n6{margin:-4rem !important}.editor-styles-wrapper .mt-sm-n6,.editor-styles-wrapper .my-sm-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-sm-n6,.editor-styles-wrapper .mx-sm-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-sm-n6,.editor-styles-wrapper .my-sm-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-sm-n6,.editor-styles-wrapper .mx-sm-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-sm-n7{margin:-6rem !important}.editor-styles-wrapper .mt-sm-n7,.editor-styles-wrapper .my-sm-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-sm-n7,.editor-styles-wrapper .mx-sm-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-sm-n7,.editor-styles-wrapper .my-sm-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-sm-n7,.editor-styles-wrapper .mx-sm-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-sm-n8{margin:-8rem !important}.editor-styles-wrapper .mt-sm-n8,.editor-styles-wrapper .my-sm-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-sm-n8,.editor-styles-wrapper .mx-sm-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-sm-n8,.editor-styles-wrapper .my-sm-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-sm-n8,.editor-styles-wrapper .mx-sm-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-sm-n9{margin:-10rem !important}.editor-styles-wrapper .mt-sm-n9,.editor-styles-wrapper .my-sm-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-sm-n9,.editor-styles-wrapper .mx-sm-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-sm-n9,.editor-styles-wrapper .my-sm-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-sm-n9,.editor-styles-wrapper .mx-sm-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-sm-n10{margin:-12rem !important}.editor-styles-wrapper .mt-sm-n10,.editor-styles-wrapper .my-sm-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-sm-n10,.editor-styles-wrapper .mx-sm-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-sm-n10,.editor-styles-wrapper .my-sm-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-sm-n10,.editor-styles-wrapper .mx-sm-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-sm-n11{margin:-14rem !important}.editor-styles-wrapper .mt-sm-n11,.editor-styles-wrapper .my-sm-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-sm-n11,.editor-styles-wrapper .mx-sm-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-sm-n11,.editor-styles-wrapper .my-sm-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-sm-n11,.editor-styles-wrapper .mx-sm-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-sm-n12{margin:-16rem !important}.editor-styles-wrapper .mt-sm-n12,.editor-styles-wrapper .my-sm-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-sm-n12,.editor-styles-wrapper .mx-sm-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-sm-n12,.editor-styles-wrapper .my-sm-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-sm-n12,.editor-styles-wrapper .mx-sm-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-sm-auto{margin:auto !important}.editor-styles-wrapper .mt-sm-auto,.editor-styles-wrapper .my-sm-auto{margin-top:auto !important}.editor-styles-wrapper .mr-sm-auto,.editor-styles-wrapper .mx-sm-auto{margin-right:auto !important}.editor-styles-wrapper .mb-sm-auto,.editor-styles-wrapper .my-sm-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-sm-auto,.editor-styles-wrapper .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.editor-styles-wrapper .m-md-0{margin:0 !important}.editor-styles-wrapper .mt-md-0,.editor-styles-wrapper .my-md-0{margin-top:0 !important}.editor-styles-wrapper .mr-md-0,.editor-styles-wrapper .mx-md-0{margin-right:0 !important}.editor-styles-wrapper .mb-md-0,.editor-styles-wrapper .my-md-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-md-0,.editor-styles-wrapper .mx-md-0{margin-left:0 !important}.editor-styles-wrapper .m-md-1{margin:.25rem !important}.editor-styles-wrapper .mt-md-1,.editor-styles-wrapper .my-md-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-md-1,.editor-styles-wrapper .mx-md-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-md-1,.editor-styles-wrapper .my-md-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-md-1,.editor-styles-wrapper .mx-md-1{margin-left:.25rem !important}.editor-styles-wrapper .m-md-2{margin:.5rem !important}.editor-styles-wrapper .mt-md-2,.editor-styles-wrapper .my-md-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-md-2,.editor-styles-wrapper .mx-md-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-md-2,.editor-styles-wrapper .my-md-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-md-2,.editor-styles-wrapper .mx-md-2{margin-left:.5rem !important}.editor-styles-wrapper .m-md-3{margin:1rem !important}.editor-styles-wrapper .mt-md-3,.editor-styles-wrapper .my-md-3{margin-top:1rem !important}.editor-styles-wrapper .mr-md-3,.editor-styles-wrapper .mx-md-3{margin-right:1rem !important}.editor-styles-wrapper .mb-md-3,.editor-styles-wrapper .my-md-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-md-3,.editor-styles-wrapper .mx-md-3{margin-left:1rem !important}.editor-styles-wrapper .m-md-4{margin:1.5rem !important}.editor-styles-wrapper .mt-md-4,.editor-styles-wrapper .my-md-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-md-4,.editor-styles-wrapper .mx-md-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-md-4,.editor-styles-wrapper .my-md-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-md-4,.editor-styles-wrapper .mx-md-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-md-5{margin:3rem !important}.editor-styles-wrapper .mt-md-5,.editor-styles-wrapper .my-md-5{margin-top:3rem !important}.editor-styles-wrapper .mr-md-5,.editor-styles-wrapper .mx-md-5{margin-right:3rem !important}.editor-styles-wrapper .mb-md-5,.editor-styles-wrapper .my-md-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-md-5,.editor-styles-wrapper .mx-md-5{margin-left:3rem !important}.editor-styles-wrapper .m-md-6{margin:4rem !important}.editor-styles-wrapper .mt-md-6,.editor-styles-wrapper .my-md-6{margin-top:4rem !important}.editor-styles-wrapper .mr-md-6,.editor-styles-wrapper .mx-md-6{margin-right:4rem !important}.editor-styles-wrapper .mb-md-6,.editor-styles-wrapper .my-md-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-md-6,.editor-styles-wrapper .mx-md-6{margin-left:4rem !important}.editor-styles-wrapper .m-md-7{margin:6rem !important}.editor-styles-wrapper .mt-md-7,.editor-styles-wrapper .my-md-7{margin-top:6rem !important}.editor-styles-wrapper .mr-md-7,.editor-styles-wrapper .mx-md-7{margin-right:6rem !important}.editor-styles-wrapper .mb-md-7,.editor-styles-wrapper .my-md-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-md-7,.editor-styles-wrapper .mx-md-7{margin-left:6rem !important}.editor-styles-wrapper .m-md-8{margin:8rem !important}.editor-styles-wrapper .mt-md-8,.editor-styles-wrapper .my-md-8{margin-top:8rem !important}.editor-styles-wrapper .mr-md-8,.editor-styles-wrapper .mx-md-8{margin-right:8rem !important}.editor-styles-wrapper .mb-md-8,.editor-styles-wrapper .my-md-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-md-8,.editor-styles-wrapper .mx-md-8{margin-left:8rem !important}.editor-styles-wrapper .m-md-9{margin:10rem !important}.editor-styles-wrapper .mt-md-9,.editor-styles-wrapper .my-md-9{margin-top:10rem !important}.editor-styles-wrapper .mr-md-9,.editor-styles-wrapper .mx-md-9{margin-right:10rem !important}.editor-styles-wrapper .mb-md-9,.editor-styles-wrapper .my-md-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-md-9,.editor-styles-wrapper .mx-md-9{margin-left:10rem !important}.editor-styles-wrapper .m-md-10{margin:12rem !important}.editor-styles-wrapper .mt-md-10,.editor-styles-wrapper .my-md-10{margin-top:12rem !important}.editor-styles-wrapper .mr-md-10,.editor-styles-wrapper .mx-md-10{margin-right:12rem !important}.editor-styles-wrapper .mb-md-10,.editor-styles-wrapper .my-md-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-md-10,.editor-styles-wrapper .mx-md-10{margin-left:12rem !important}.editor-styles-wrapper .m-md-11{margin:14rem !important}.editor-styles-wrapper .mt-md-11,.editor-styles-wrapper .my-md-11{margin-top:14rem !important}.editor-styles-wrapper .mr-md-11,.editor-styles-wrapper .mx-md-11{margin-right:14rem !important}.editor-styles-wrapper .mb-md-11,.editor-styles-wrapper .my-md-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-md-11,.editor-styles-wrapper .mx-md-11{margin-left:14rem !important}.editor-styles-wrapper .m-md-12{margin:16rem !important}.editor-styles-wrapper .mt-md-12,.editor-styles-wrapper .my-md-12{margin-top:16rem !important}.editor-styles-wrapper .mr-md-12,.editor-styles-wrapper .mx-md-12{margin-right:16rem !important}.editor-styles-wrapper .mb-md-12,.editor-styles-wrapper .my-md-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-md-12,.editor-styles-wrapper .mx-md-12{margin-left:16rem !important}.editor-styles-wrapper .p-md-0{padding:0 !important}.editor-styles-wrapper .pt-md-0,.editor-styles-wrapper .py-md-0{padding-top:0 !important}.editor-styles-wrapper .pr-md-0,.editor-styles-wrapper .px-md-0{padding-right:0 !important}.editor-styles-wrapper .pb-md-0,.editor-styles-wrapper .py-md-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-md-0,.editor-styles-wrapper .px-md-0{padding-left:0 !important}.editor-styles-wrapper .p-md-1{padding:.25rem !important}.editor-styles-wrapper .pt-md-1,.editor-styles-wrapper .py-md-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-md-1,.editor-styles-wrapper .px-md-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-md-1,.editor-styles-wrapper .py-md-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-md-1,.editor-styles-wrapper .px-md-1{padding-left:.25rem !important}.editor-styles-wrapper .p-md-2{padding:.5rem !important}.editor-styles-wrapper .pt-md-2,.editor-styles-wrapper .py-md-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-md-2,.editor-styles-wrapper .px-md-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-md-2,.editor-styles-wrapper .py-md-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-md-2,.editor-styles-wrapper .px-md-2{padding-left:.5rem !important}.editor-styles-wrapper .p-md-3{padding:1rem !important}.editor-styles-wrapper .pt-md-3,.editor-styles-wrapper .py-md-3{padding-top:1rem !important}.editor-styles-wrapper .pr-md-3,.editor-styles-wrapper .px-md-3{padding-right:1rem !important}.editor-styles-wrapper .pb-md-3,.editor-styles-wrapper .py-md-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-md-3,.editor-styles-wrapper .px-md-3{padding-left:1rem !important}.editor-styles-wrapper .p-md-4{padding:1.5rem !important}.editor-styles-wrapper .pt-md-4,.editor-styles-wrapper .py-md-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-md-4,.editor-styles-wrapper .px-md-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-md-4,.editor-styles-wrapper .py-md-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-md-4,.editor-styles-wrapper .px-md-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-md-5{padding:3rem !important}.editor-styles-wrapper .pt-md-5,.editor-styles-wrapper .py-md-5{padding-top:3rem !important}.editor-styles-wrapper .pr-md-5,.editor-styles-wrapper .px-md-5{padding-right:3rem !important}.editor-styles-wrapper .pb-md-5,.editor-styles-wrapper .py-md-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-md-5,.editor-styles-wrapper .px-md-5{padding-left:3rem !important}.editor-styles-wrapper .p-md-6{padding:4rem !important}.editor-styles-wrapper .pt-md-6,.editor-styles-wrapper .py-md-6{padding-top:4rem !important}.editor-styles-wrapper .pr-md-6,.editor-styles-wrapper .px-md-6{padding-right:4rem !important}.editor-styles-wrapper .pb-md-6,.editor-styles-wrapper .py-md-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-md-6,.editor-styles-wrapper .px-md-6{padding-left:4rem !important}.editor-styles-wrapper .p-md-7{padding:6rem !important}.editor-styles-wrapper .pt-md-7,.editor-styles-wrapper .py-md-7{padding-top:6rem !important}.editor-styles-wrapper .pr-md-7,.editor-styles-wrapper .px-md-7{padding-right:6rem !important}.editor-styles-wrapper .pb-md-7,.editor-styles-wrapper .py-md-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-md-7,.editor-styles-wrapper .px-md-7{padding-left:6rem !important}.editor-styles-wrapper .p-md-8{padding:8rem !important}.editor-styles-wrapper .pt-md-8,.editor-styles-wrapper .py-md-8{padding-top:8rem !important}.editor-styles-wrapper .pr-md-8,.editor-styles-wrapper .px-md-8{padding-right:8rem !important}.editor-styles-wrapper .pb-md-8,.editor-styles-wrapper .py-md-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-md-8,.editor-styles-wrapper .px-md-8{padding-left:8rem !important}.editor-styles-wrapper .p-md-9{padding:10rem !important}.editor-styles-wrapper .pt-md-9,.editor-styles-wrapper .py-md-9{padding-top:10rem !important}.editor-styles-wrapper .pr-md-9,.editor-styles-wrapper .px-md-9{padding-right:10rem !important}.editor-styles-wrapper .pb-md-9,.editor-styles-wrapper .py-md-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-md-9,.editor-styles-wrapper .px-md-9{padding-left:10rem !important}.editor-styles-wrapper .p-md-10{padding:12rem !important}.editor-styles-wrapper .pt-md-10,.editor-styles-wrapper .py-md-10{padding-top:12rem !important}.editor-styles-wrapper .pr-md-10,.editor-styles-wrapper .px-md-10{padding-right:12rem !important}.editor-styles-wrapper .pb-md-10,.editor-styles-wrapper .py-md-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-md-10,.editor-styles-wrapper .px-md-10{padding-left:12rem !important}.editor-styles-wrapper .p-md-11{padding:14rem !important}.editor-styles-wrapper .pt-md-11,.editor-styles-wrapper .py-md-11{padding-top:14rem !important}.editor-styles-wrapper .pr-md-11,.editor-styles-wrapper .px-md-11{padding-right:14rem !important}.editor-styles-wrapper .pb-md-11,.editor-styles-wrapper .py-md-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-md-11,.editor-styles-wrapper .px-md-11{padding-left:14rem !important}.editor-styles-wrapper .p-md-12{padding:16rem !important}.editor-styles-wrapper .pt-md-12,.editor-styles-wrapper .py-md-12{padding-top:16rem !important}.editor-styles-wrapper .pr-md-12,.editor-styles-wrapper .px-md-12{padding-right:16rem !important}.editor-styles-wrapper .pb-md-12,.editor-styles-wrapper .py-md-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-md-12,.editor-styles-wrapper .px-md-12{padding-left:16rem !important}.editor-styles-wrapper .m-md-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-md-n1,.editor-styles-wrapper .my-md-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-md-n1,.editor-styles-wrapper .mx-md-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-md-n1,.editor-styles-wrapper .my-md-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-md-n1,.editor-styles-wrapper .mx-md-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-md-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-md-n2,.editor-styles-wrapper .my-md-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-md-n2,.editor-styles-wrapper .mx-md-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-md-n2,.editor-styles-wrapper .my-md-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-md-n2,.editor-styles-wrapper .mx-md-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-md-n3{margin:-1rem !important}.editor-styles-wrapper .mt-md-n3,.editor-styles-wrapper .my-md-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-md-n3,.editor-styles-wrapper .mx-md-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-md-n3,.editor-styles-wrapper .my-md-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-md-n3,.editor-styles-wrapper .mx-md-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-md-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-md-n4,.editor-styles-wrapper .my-md-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-md-n4,.editor-styles-wrapper .mx-md-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-md-n4,.editor-styles-wrapper .my-md-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-md-n4,.editor-styles-wrapper .mx-md-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-md-n5{margin:-3rem !important}.editor-styles-wrapper .mt-md-n5,.editor-styles-wrapper .my-md-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-md-n5,.editor-styles-wrapper .mx-md-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-md-n5,.editor-styles-wrapper .my-md-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-md-n5,.editor-styles-wrapper .mx-md-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-md-n6{margin:-4rem !important}.editor-styles-wrapper .mt-md-n6,.editor-styles-wrapper .my-md-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-md-n6,.editor-styles-wrapper .mx-md-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-md-n6,.editor-styles-wrapper .my-md-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-md-n6,.editor-styles-wrapper .mx-md-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-md-n7{margin:-6rem !important}.editor-styles-wrapper .mt-md-n7,.editor-styles-wrapper .my-md-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-md-n7,.editor-styles-wrapper .mx-md-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-md-n7,.editor-styles-wrapper .my-md-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-md-n7,.editor-styles-wrapper .mx-md-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-md-n8{margin:-8rem !important}.editor-styles-wrapper .mt-md-n8,.editor-styles-wrapper .my-md-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-md-n8,.editor-styles-wrapper .mx-md-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-md-n8,.editor-styles-wrapper .my-md-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-md-n8,.editor-styles-wrapper .mx-md-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-md-n9{margin:-10rem !important}.editor-styles-wrapper .mt-md-n9,.editor-styles-wrapper .my-md-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-md-n9,.editor-styles-wrapper .mx-md-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-md-n9,.editor-styles-wrapper .my-md-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-md-n9,.editor-styles-wrapper .mx-md-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-md-n10{margin:-12rem !important}.editor-styles-wrapper .mt-md-n10,.editor-styles-wrapper .my-md-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-md-n10,.editor-styles-wrapper .mx-md-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-md-n10,.editor-styles-wrapper .my-md-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-md-n10,.editor-styles-wrapper .mx-md-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-md-n11{margin:-14rem !important}.editor-styles-wrapper .mt-md-n11,.editor-styles-wrapper .my-md-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-md-n11,.editor-styles-wrapper .mx-md-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-md-n11,.editor-styles-wrapper .my-md-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-md-n11,.editor-styles-wrapper .mx-md-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-md-n12{margin:-16rem !important}.editor-styles-wrapper .mt-md-n12,.editor-styles-wrapper .my-md-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-md-n12,.editor-styles-wrapper .mx-md-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-md-n12,.editor-styles-wrapper .my-md-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-md-n12,.editor-styles-wrapper .mx-md-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-md-auto{margin:auto !important}.editor-styles-wrapper .mt-md-auto,.editor-styles-wrapper .my-md-auto{margin-top:auto !important}.editor-styles-wrapper .mr-md-auto,.editor-styles-wrapper .mx-md-auto{margin-right:auto !important}.editor-styles-wrapper .mb-md-auto,.editor-styles-wrapper .my-md-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-md-auto,.editor-styles-wrapper .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.editor-styles-wrapper .m-lg-0{margin:0 !important}.editor-styles-wrapper .mt-lg-0,.editor-styles-wrapper .my-lg-0{margin-top:0 !important}.editor-styles-wrapper .mr-lg-0,.editor-styles-wrapper .mx-lg-0{margin-right:0 !important}.editor-styles-wrapper .mb-lg-0,.editor-styles-wrapper .my-lg-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-lg-0,.editor-styles-wrapper .mx-lg-0{margin-left:0 !important}.editor-styles-wrapper .m-lg-1{margin:.25rem !important}.editor-styles-wrapper .mt-lg-1,.editor-styles-wrapper .my-lg-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-lg-1,.editor-styles-wrapper .mx-lg-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-lg-1,.editor-styles-wrapper .my-lg-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-lg-1,.editor-styles-wrapper .mx-lg-1{margin-left:.25rem !important}.editor-styles-wrapper .m-lg-2{margin:.5rem !important}.editor-styles-wrapper .mt-lg-2,.editor-styles-wrapper .my-lg-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-lg-2,.editor-styles-wrapper .mx-lg-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-lg-2,.editor-styles-wrapper .my-lg-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-lg-2,.editor-styles-wrapper .mx-lg-2{margin-left:.5rem !important}.editor-styles-wrapper .m-lg-3{margin:1rem !important}.editor-styles-wrapper .mt-lg-3,.editor-styles-wrapper .my-lg-3{margin-top:1rem !important}.editor-styles-wrapper .mr-lg-3,.editor-styles-wrapper .mx-lg-3{margin-right:1rem !important}.editor-styles-wrapper .mb-lg-3,.editor-styles-wrapper .my-lg-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-lg-3,.editor-styles-wrapper .mx-lg-3{margin-left:1rem !important}.editor-styles-wrapper .m-lg-4{margin:1.5rem !important}.editor-styles-wrapper .mt-lg-4,.editor-styles-wrapper .my-lg-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-lg-4,.editor-styles-wrapper .mx-lg-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-lg-4,.editor-styles-wrapper .my-lg-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-lg-4,.editor-styles-wrapper .mx-lg-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-lg-5{margin:3rem !important}.editor-styles-wrapper .mt-lg-5,.editor-styles-wrapper .my-lg-5{margin-top:3rem !important}.editor-styles-wrapper .mr-lg-5,.editor-styles-wrapper .mx-lg-5{margin-right:3rem !important}.editor-styles-wrapper .mb-lg-5,.editor-styles-wrapper .my-lg-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-lg-5,.editor-styles-wrapper .mx-lg-5{margin-left:3rem !important}.editor-styles-wrapper .m-lg-6{margin:4rem !important}.editor-styles-wrapper .mt-lg-6,.editor-styles-wrapper .my-lg-6{margin-top:4rem !important}.editor-styles-wrapper .mr-lg-6,.editor-styles-wrapper .mx-lg-6{margin-right:4rem !important}.editor-styles-wrapper .mb-lg-6,.editor-styles-wrapper .my-lg-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-lg-6,.editor-styles-wrapper .mx-lg-6{margin-left:4rem !important}.editor-styles-wrapper .m-lg-7{margin:6rem !important}.editor-styles-wrapper .mt-lg-7,.editor-styles-wrapper .my-lg-7{margin-top:6rem !important}.editor-styles-wrapper .mr-lg-7,.editor-styles-wrapper .mx-lg-7{margin-right:6rem !important}.editor-styles-wrapper .mb-lg-7,.editor-styles-wrapper .my-lg-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-lg-7,.editor-styles-wrapper .mx-lg-7{margin-left:6rem !important}.editor-styles-wrapper .m-lg-8{margin:8rem !important}.editor-styles-wrapper .mt-lg-8,.editor-styles-wrapper .my-lg-8{margin-top:8rem !important}.editor-styles-wrapper .mr-lg-8,.editor-styles-wrapper .mx-lg-8{margin-right:8rem !important}.editor-styles-wrapper .mb-lg-8,.editor-styles-wrapper .my-lg-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-lg-8,.editor-styles-wrapper .mx-lg-8{margin-left:8rem !important}.editor-styles-wrapper .m-lg-9{margin:10rem !important}.editor-styles-wrapper .mt-lg-9,.editor-styles-wrapper .my-lg-9{margin-top:10rem !important}.editor-styles-wrapper .mr-lg-9,.editor-styles-wrapper .mx-lg-9{margin-right:10rem !important}.editor-styles-wrapper .mb-lg-9,.editor-styles-wrapper .my-lg-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-lg-9,.editor-styles-wrapper .mx-lg-9{margin-left:10rem !important}.editor-styles-wrapper .m-lg-10{margin:12rem !important}.editor-styles-wrapper .mt-lg-10,.editor-styles-wrapper .my-lg-10{margin-top:12rem !important}.editor-styles-wrapper .mr-lg-10,.editor-styles-wrapper .mx-lg-10{margin-right:12rem !important}.editor-styles-wrapper .mb-lg-10,.editor-styles-wrapper .my-lg-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-lg-10,.editor-styles-wrapper .mx-lg-10{margin-left:12rem !important}.editor-styles-wrapper .m-lg-11{margin:14rem !important}.editor-styles-wrapper .mt-lg-11,.editor-styles-wrapper .my-lg-11{margin-top:14rem !important}.editor-styles-wrapper .mr-lg-11,.editor-styles-wrapper .mx-lg-11{margin-right:14rem !important}.editor-styles-wrapper .mb-lg-11,.editor-styles-wrapper .my-lg-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-lg-11,.editor-styles-wrapper .mx-lg-11{margin-left:14rem !important}.editor-styles-wrapper .m-lg-12{margin:16rem !important}.editor-styles-wrapper .mt-lg-12,.editor-styles-wrapper .my-lg-12{margin-top:16rem !important}.editor-styles-wrapper .mr-lg-12,.editor-styles-wrapper .mx-lg-12{margin-right:16rem !important}.editor-styles-wrapper .mb-lg-12,.editor-styles-wrapper .my-lg-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-lg-12,.editor-styles-wrapper .mx-lg-12{margin-left:16rem !important}.editor-styles-wrapper .p-lg-0{padding:0 !important}.editor-styles-wrapper .pt-lg-0,.editor-styles-wrapper .py-lg-0{padding-top:0 !important}.editor-styles-wrapper .pr-lg-0,.editor-styles-wrapper .px-lg-0{padding-right:0 !important}.editor-styles-wrapper .pb-lg-0,.editor-styles-wrapper .py-lg-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-lg-0,.editor-styles-wrapper .px-lg-0{padding-left:0 !important}.editor-styles-wrapper .p-lg-1{padding:.25rem !important}.editor-styles-wrapper .pt-lg-1,.editor-styles-wrapper .py-lg-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-lg-1,.editor-styles-wrapper .px-lg-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-lg-1,.editor-styles-wrapper .py-lg-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-lg-1,.editor-styles-wrapper .px-lg-1{padding-left:.25rem !important}.editor-styles-wrapper .p-lg-2{padding:.5rem !important}.editor-styles-wrapper .pt-lg-2,.editor-styles-wrapper .py-lg-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-lg-2,.editor-styles-wrapper .px-lg-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-lg-2,.editor-styles-wrapper .py-lg-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-lg-2,.editor-styles-wrapper .px-lg-2{padding-left:.5rem !important}.editor-styles-wrapper .p-lg-3{padding:1rem !important}.editor-styles-wrapper .pt-lg-3,.editor-styles-wrapper .py-lg-3{padding-top:1rem !important}.editor-styles-wrapper .pr-lg-3,.editor-styles-wrapper .px-lg-3{padding-right:1rem !important}.editor-styles-wrapper .pb-lg-3,.editor-styles-wrapper .py-lg-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-lg-3,.editor-styles-wrapper .px-lg-3{padding-left:1rem !important}.editor-styles-wrapper .p-lg-4{padding:1.5rem !important}.editor-styles-wrapper .pt-lg-4,.editor-styles-wrapper .py-lg-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-lg-4,.editor-styles-wrapper .px-lg-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-lg-4,.editor-styles-wrapper .py-lg-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-lg-4,.editor-styles-wrapper .px-lg-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-lg-5{padding:3rem !important}.editor-styles-wrapper .pt-lg-5,.editor-styles-wrapper .py-lg-5{padding-top:3rem !important}.editor-styles-wrapper .pr-lg-5,.editor-styles-wrapper .px-lg-5{padding-right:3rem !important}.editor-styles-wrapper .pb-lg-5,.editor-styles-wrapper .py-lg-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-lg-5,.editor-styles-wrapper .px-lg-5{padding-left:3rem !important}.editor-styles-wrapper .p-lg-6{padding:4rem !important}.editor-styles-wrapper .pt-lg-6,.editor-styles-wrapper .py-lg-6{padding-top:4rem !important}.editor-styles-wrapper .pr-lg-6,.editor-styles-wrapper .px-lg-6{padding-right:4rem !important}.editor-styles-wrapper .pb-lg-6,.editor-styles-wrapper .py-lg-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-lg-6,.editor-styles-wrapper .px-lg-6{padding-left:4rem !important}.editor-styles-wrapper .p-lg-7{padding:6rem !important}.editor-styles-wrapper .pt-lg-7,.editor-styles-wrapper .py-lg-7{padding-top:6rem !important}.editor-styles-wrapper .pr-lg-7,.editor-styles-wrapper .px-lg-7{padding-right:6rem !important}.editor-styles-wrapper .pb-lg-7,.editor-styles-wrapper .py-lg-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-lg-7,.editor-styles-wrapper .px-lg-7{padding-left:6rem !important}.editor-styles-wrapper .p-lg-8{padding:8rem !important}.editor-styles-wrapper .pt-lg-8,.editor-styles-wrapper .py-lg-8{padding-top:8rem !important}.editor-styles-wrapper .pr-lg-8,.editor-styles-wrapper .px-lg-8{padding-right:8rem !important}.editor-styles-wrapper .pb-lg-8,.editor-styles-wrapper .py-lg-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-lg-8,.editor-styles-wrapper .px-lg-8{padding-left:8rem !important}.editor-styles-wrapper .p-lg-9{padding:10rem !important}.editor-styles-wrapper .pt-lg-9,.editor-styles-wrapper .py-lg-9{padding-top:10rem !important}.editor-styles-wrapper .pr-lg-9,.editor-styles-wrapper .px-lg-9{padding-right:10rem !important}.editor-styles-wrapper .pb-lg-9,.editor-styles-wrapper .py-lg-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-lg-9,.editor-styles-wrapper .px-lg-9{padding-left:10rem !important}.editor-styles-wrapper .p-lg-10{padding:12rem !important}.editor-styles-wrapper .pt-lg-10,.editor-styles-wrapper .py-lg-10{padding-top:12rem !important}.editor-styles-wrapper .pr-lg-10,.editor-styles-wrapper .px-lg-10{padding-right:12rem !important}.editor-styles-wrapper .pb-lg-10,.editor-styles-wrapper .py-lg-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-lg-10,.editor-styles-wrapper .px-lg-10{padding-left:12rem !important}.editor-styles-wrapper .p-lg-11{padding:14rem !important}.editor-styles-wrapper .pt-lg-11,.editor-styles-wrapper .py-lg-11{padding-top:14rem !important}.editor-styles-wrapper .pr-lg-11,.editor-styles-wrapper .px-lg-11{padding-right:14rem !important}.editor-styles-wrapper .pb-lg-11,.editor-styles-wrapper .py-lg-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-lg-11,.editor-styles-wrapper .px-lg-11{padding-left:14rem !important}.editor-styles-wrapper .p-lg-12{padding:16rem !important}.editor-styles-wrapper .pt-lg-12,.editor-styles-wrapper .py-lg-12{padding-top:16rem !important}.editor-styles-wrapper .pr-lg-12,.editor-styles-wrapper .px-lg-12{padding-right:16rem !important}.editor-styles-wrapper .pb-lg-12,.editor-styles-wrapper .py-lg-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-lg-12,.editor-styles-wrapper .px-lg-12{padding-left:16rem !important}.editor-styles-wrapper .m-lg-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-lg-n1,.editor-styles-wrapper .my-lg-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-lg-n1,.editor-styles-wrapper .mx-lg-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-lg-n1,.editor-styles-wrapper .my-lg-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-lg-n1,.editor-styles-wrapper .mx-lg-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-lg-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-lg-n2,.editor-styles-wrapper .my-lg-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-lg-n2,.editor-styles-wrapper .mx-lg-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-lg-n2,.editor-styles-wrapper .my-lg-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-lg-n2,.editor-styles-wrapper .mx-lg-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-lg-n3{margin:-1rem !important}.editor-styles-wrapper .mt-lg-n3,.editor-styles-wrapper .my-lg-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-lg-n3,.editor-styles-wrapper .mx-lg-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-lg-n3,.editor-styles-wrapper .my-lg-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-lg-n3,.editor-styles-wrapper .mx-lg-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-lg-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-lg-n4,.editor-styles-wrapper .my-lg-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-lg-n4,.editor-styles-wrapper .mx-lg-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-lg-n4,.editor-styles-wrapper .my-lg-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-lg-n4,.editor-styles-wrapper .mx-lg-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-lg-n5{margin:-3rem !important}.editor-styles-wrapper .mt-lg-n5,.editor-styles-wrapper .my-lg-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-lg-n5,.editor-styles-wrapper .mx-lg-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-lg-n5,.editor-styles-wrapper .my-lg-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-lg-n5,.editor-styles-wrapper .mx-lg-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-lg-n6{margin:-4rem !important}.editor-styles-wrapper .mt-lg-n6,.editor-styles-wrapper .my-lg-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-lg-n6,.editor-styles-wrapper .mx-lg-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-lg-n6,.editor-styles-wrapper .my-lg-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-lg-n6,.editor-styles-wrapper .mx-lg-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-lg-n7{margin:-6rem !important}.editor-styles-wrapper .mt-lg-n7,.editor-styles-wrapper .my-lg-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-lg-n7,.editor-styles-wrapper .mx-lg-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-lg-n7,.editor-styles-wrapper .my-lg-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-lg-n7,.editor-styles-wrapper .mx-lg-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-lg-n8{margin:-8rem !important}.editor-styles-wrapper .mt-lg-n8,.editor-styles-wrapper .my-lg-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-lg-n8,.editor-styles-wrapper .mx-lg-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-lg-n8,.editor-styles-wrapper .my-lg-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-lg-n8,.editor-styles-wrapper .mx-lg-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-lg-n9{margin:-10rem !important}.editor-styles-wrapper .mt-lg-n9,.editor-styles-wrapper .my-lg-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-lg-n9,.editor-styles-wrapper .mx-lg-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-lg-n9,.editor-styles-wrapper .my-lg-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-lg-n9,.editor-styles-wrapper .mx-lg-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-lg-n10{margin:-12rem !important}.editor-styles-wrapper .mt-lg-n10,.editor-styles-wrapper .my-lg-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-lg-n10,.editor-styles-wrapper .mx-lg-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-lg-n10,.editor-styles-wrapper .my-lg-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-lg-n10,.editor-styles-wrapper .mx-lg-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-lg-n11{margin:-14rem !important}.editor-styles-wrapper .mt-lg-n11,.editor-styles-wrapper .my-lg-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-lg-n11,.editor-styles-wrapper .mx-lg-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-lg-n11,.editor-styles-wrapper .my-lg-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-lg-n11,.editor-styles-wrapper .mx-lg-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-lg-n12{margin:-16rem !important}.editor-styles-wrapper .mt-lg-n12,.editor-styles-wrapper .my-lg-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-lg-n12,.editor-styles-wrapper .mx-lg-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-lg-n12,.editor-styles-wrapper .my-lg-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-lg-n12,.editor-styles-wrapper .mx-lg-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-lg-auto{margin:auto !important}.editor-styles-wrapper .mt-lg-auto,.editor-styles-wrapper .my-lg-auto{margin-top:auto !important}.editor-styles-wrapper .mr-lg-auto,.editor-styles-wrapper .mx-lg-auto{margin-right:auto !important}.editor-styles-wrapper .mb-lg-auto,.editor-styles-wrapper .my-lg-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-lg-auto,.editor-styles-wrapper .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.editor-styles-wrapper .m-xl-0{margin:0 !important}.editor-styles-wrapper .mt-xl-0,.editor-styles-wrapper .my-xl-0{margin-top:0 !important}.editor-styles-wrapper .mr-xl-0,.editor-styles-wrapper .mx-xl-0{margin-right:0 !important}.editor-styles-wrapper .mb-xl-0,.editor-styles-wrapper .my-xl-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-xl-0,.editor-styles-wrapper .mx-xl-0{margin-left:0 !important}.editor-styles-wrapper .m-xl-1{margin:.25rem !important}.editor-styles-wrapper .mt-xl-1,.editor-styles-wrapper .my-xl-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-xl-1,.editor-styles-wrapper .mx-xl-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-xl-1,.editor-styles-wrapper .my-xl-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-xl-1,.editor-styles-wrapper .mx-xl-1{margin-left:.25rem !important}.editor-styles-wrapper .m-xl-2{margin:.5rem !important}.editor-styles-wrapper .mt-xl-2,.editor-styles-wrapper .my-xl-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-xl-2,.editor-styles-wrapper .mx-xl-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-xl-2,.editor-styles-wrapper .my-xl-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-xl-2,.editor-styles-wrapper .mx-xl-2{margin-left:.5rem !important}.editor-styles-wrapper .m-xl-3{margin:1rem !important}.editor-styles-wrapper .mt-xl-3,.editor-styles-wrapper .my-xl-3{margin-top:1rem !important}.editor-styles-wrapper .mr-xl-3,.editor-styles-wrapper .mx-xl-3{margin-right:1rem !important}.editor-styles-wrapper .mb-xl-3,.editor-styles-wrapper .my-xl-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-xl-3,.editor-styles-wrapper .mx-xl-3{margin-left:1rem !important}.editor-styles-wrapper .m-xl-4{margin:1.5rem !important}.editor-styles-wrapper .mt-xl-4,.editor-styles-wrapper .my-xl-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-xl-4,.editor-styles-wrapper .mx-xl-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-xl-4,.editor-styles-wrapper .my-xl-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-xl-4,.editor-styles-wrapper .mx-xl-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-xl-5{margin:3rem !important}.editor-styles-wrapper .mt-xl-5,.editor-styles-wrapper .my-xl-5{margin-top:3rem !important}.editor-styles-wrapper .mr-xl-5,.editor-styles-wrapper .mx-xl-5{margin-right:3rem !important}.editor-styles-wrapper .mb-xl-5,.editor-styles-wrapper .my-xl-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-xl-5,.editor-styles-wrapper .mx-xl-5{margin-left:3rem !important}.editor-styles-wrapper .m-xl-6{margin:4rem !important}.editor-styles-wrapper .mt-xl-6,.editor-styles-wrapper .my-xl-6{margin-top:4rem !important}.editor-styles-wrapper .mr-xl-6,.editor-styles-wrapper .mx-xl-6{margin-right:4rem !important}.editor-styles-wrapper .mb-xl-6,.editor-styles-wrapper .my-xl-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-xl-6,.editor-styles-wrapper .mx-xl-6{margin-left:4rem !important}.editor-styles-wrapper .m-xl-7{margin:6rem !important}.editor-styles-wrapper .mt-xl-7,.editor-styles-wrapper .my-xl-7{margin-top:6rem !important}.editor-styles-wrapper .mr-xl-7,.editor-styles-wrapper .mx-xl-7{margin-right:6rem !important}.editor-styles-wrapper .mb-xl-7,.editor-styles-wrapper .my-xl-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-xl-7,.editor-styles-wrapper .mx-xl-7{margin-left:6rem !important}.editor-styles-wrapper .m-xl-8{margin:8rem !important}.editor-styles-wrapper .mt-xl-8,.editor-styles-wrapper .my-xl-8{margin-top:8rem !important}.editor-styles-wrapper .mr-xl-8,.editor-styles-wrapper .mx-xl-8{margin-right:8rem !important}.editor-styles-wrapper .mb-xl-8,.editor-styles-wrapper .my-xl-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-xl-8,.editor-styles-wrapper .mx-xl-8{margin-left:8rem !important}.editor-styles-wrapper .m-xl-9{margin:10rem !important}.editor-styles-wrapper .mt-xl-9,.editor-styles-wrapper .my-xl-9{margin-top:10rem !important}.editor-styles-wrapper .mr-xl-9,.editor-styles-wrapper .mx-xl-9{margin-right:10rem !important}.editor-styles-wrapper .mb-xl-9,.editor-styles-wrapper .my-xl-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-xl-9,.editor-styles-wrapper .mx-xl-9{margin-left:10rem !important}.editor-styles-wrapper .m-xl-10{margin:12rem !important}.editor-styles-wrapper .mt-xl-10,.editor-styles-wrapper .my-xl-10{margin-top:12rem !important}.editor-styles-wrapper .mr-xl-10,.editor-styles-wrapper .mx-xl-10{margin-right:12rem !important}.editor-styles-wrapper .mb-xl-10,.editor-styles-wrapper .my-xl-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-xl-10,.editor-styles-wrapper .mx-xl-10{margin-left:12rem !important}.editor-styles-wrapper .m-xl-11{margin:14rem !important}.editor-styles-wrapper .mt-xl-11,.editor-styles-wrapper .my-xl-11{margin-top:14rem !important}.editor-styles-wrapper .mr-xl-11,.editor-styles-wrapper .mx-xl-11{margin-right:14rem !important}.editor-styles-wrapper .mb-xl-11,.editor-styles-wrapper .my-xl-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-xl-11,.editor-styles-wrapper .mx-xl-11{margin-left:14rem !important}.editor-styles-wrapper .m-xl-12{margin:16rem !important}.editor-styles-wrapper .mt-xl-12,.editor-styles-wrapper .my-xl-12{margin-top:16rem !important}.editor-styles-wrapper .mr-xl-12,.editor-styles-wrapper .mx-xl-12{margin-right:16rem !important}.editor-styles-wrapper .mb-xl-12,.editor-styles-wrapper .my-xl-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-xl-12,.editor-styles-wrapper .mx-xl-12{margin-left:16rem !important}.editor-styles-wrapper .p-xl-0{padding:0 !important}.editor-styles-wrapper .pt-xl-0,.editor-styles-wrapper .py-xl-0{padding-top:0 !important}.editor-styles-wrapper .pr-xl-0,.editor-styles-wrapper .px-xl-0{padding-right:0 !important}.editor-styles-wrapper .pb-xl-0,.editor-styles-wrapper .py-xl-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-xl-0,.editor-styles-wrapper .px-xl-0{padding-left:0 !important}.editor-styles-wrapper .p-xl-1{padding:.25rem !important}.editor-styles-wrapper .pt-xl-1,.editor-styles-wrapper .py-xl-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-xl-1,.editor-styles-wrapper .px-xl-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-xl-1,.editor-styles-wrapper .py-xl-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-xl-1,.editor-styles-wrapper .px-xl-1{padding-left:.25rem !important}.editor-styles-wrapper .p-xl-2{padding:.5rem !important}.editor-styles-wrapper .pt-xl-2,.editor-styles-wrapper .py-xl-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-xl-2,.editor-styles-wrapper .px-xl-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-xl-2,.editor-styles-wrapper .py-xl-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-xl-2,.editor-styles-wrapper .px-xl-2{padding-left:.5rem !important}.editor-styles-wrapper .p-xl-3{padding:1rem !important}.editor-styles-wrapper .pt-xl-3,.editor-styles-wrapper .py-xl-3{padding-top:1rem !important}.editor-styles-wrapper .pr-xl-3,.editor-styles-wrapper .px-xl-3{padding-right:1rem !important}.editor-styles-wrapper .pb-xl-3,.editor-styles-wrapper .py-xl-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-xl-3,.editor-styles-wrapper .px-xl-3{padding-left:1rem !important}.editor-styles-wrapper .p-xl-4{padding:1.5rem !important}.editor-styles-wrapper .pt-xl-4,.editor-styles-wrapper .py-xl-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-xl-4,.editor-styles-wrapper .px-xl-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-xl-4,.editor-styles-wrapper .py-xl-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-xl-4,.editor-styles-wrapper .px-xl-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-xl-5{padding:3rem !important}.editor-styles-wrapper .pt-xl-5,.editor-styles-wrapper .py-xl-5{padding-top:3rem !important}.editor-styles-wrapper .pr-xl-5,.editor-styles-wrapper .px-xl-5{padding-right:3rem !important}.editor-styles-wrapper .pb-xl-5,.editor-styles-wrapper .py-xl-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-xl-5,.editor-styles-wrapper .px-xl-5{padding-left:3rem !important}.editor-styles-wrapper .p-xl-6{padding:4rem !important}.editor-styles-wrapper .pt-xl-6,.editor-styles-wrapper .py-xl-6{padding-top:4rem !important}.editor-styles-wrapper .pr-xl-6,.editor-styles-wrapper .px-xl-6{padding-right:4rem !important}.editor-styles-wrapper .pb-xl-6,.editor-styles-wrapper .py-xl-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-xl-6,.editor-styles-wrapper .px-xl-6{padding-left:4rem !important}.editor-styles-wrapper .p-xl-7{padding:6rem !important}.editor-styles-wrapper .pt-xl-7,.editor-styles-wrapper .py-xl-7{padding-top:6rem !important}.editor-styles-wrapper .pr-xl-7,.editor-styles-wrapper .px-xl-7{padding-right:6rem !important}.editor-styles-wrapper .pb-xl-7,.editor-styles-wrapper .py-xl-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-xl-7,.editor-styles-wrapper .px-xl-7{padding-left:6rem !important}.editor-styles-wrapper .p-xl-8{padding:8rem !important}.editor-styles-wrapper .pt-xl-8,.editor-styles-wrapper .py-xl-8{padding-top:8rem !important}.editor-styles-wrapper .pr-xl-8,.editor-styles-wrapper .px-xl-8{padding-right:8rem !important}.editor-styles-wrapper .pb-xl-8,.editor-styles-wrapper .py-xl-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-xl-8,.editor-styles-wrapper .px-xl-8{padding-left:8rem !important}.editor-styles-wrapper .p-xl-9{padding:10rem !important}.editor-styles-wrapper .pt-xl-9,.editor-styles-wrapper .py-xl-9{padding-top:10rem !important}.editor-styles-wrapper .pr-xl-9,.editor-styles-wrapper .px-xl-9{padding-right:10rem !important}.editor-styles-wrapper .pb-xl-9,.editor-styles-wrapper .py-xl-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-xl-9,.editor-styles-wrapper .px-xl-9{padding-left:10rem !important}.editor-styles-wrapper .p-xl-10{padding:12rem !important}.editor-styles-wrapper .pt-xl-10,.editor-styles-wrapper .py-xl-10{padding-top:12rem !important}.editor-styles-wrapper .pr-xl-10,.editor-styles-wrapper .px-xl-10{padding-right:12rem !important}.editor-styles-wrapper .pb-xl-10,.editor-styles-wrapper .py-xl-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-xl-10,.editor-styles-wrapper .px-xl-10{padding-left:12rem !important}.editor-styles-wrapper .p-xl-11{padding:14rem !important}.editor-styles-wrapper .pt-xl-11,.editor-styles-wrapper .py-xl-11{padding-top:14rem !important}.editor-styles-wrapper .pr-xl-11,.editor-styles-wrapper .px-xl-11{padding-right:14rem !important}.editor-styles-wrapper .pb-xl-11,.editor-styles-wrapper .py-xl-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-xl-11,.editor-styles-wrapper .px-xl-11{padding-left:14rem !important}.editor-styles-wrapper .p-xl-12{padding:16rem !important}.editor-styles-wrapper .pt-xl-12,.editor-styles-wrapper .py-xl-12{padding-top:16rem !important}.editor-styles-wrapper .pr-xl-12,.editor-styles-wrapper .px-xl-12{padding-right:16rem !important}.editor-styles-wrapper .pb-xl-12,.editor-styles-wrapper .py-xl-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-xl-12,.editor-styles-wrapper .px-xl-12{padding-left:16rem !important}.editor-styles-wrapper .m-xl-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-xl-n1,.editor-styles-wrapper .my-xl-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-xl-n1,.editor-styles-wrapper .mx-xl-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-xl-n1,.editor-styles-wrapper .my-xl-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-xl-n1,.editor-styles-wrapper .mx-xl-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-xl-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-xl-n2,.editor-styles-wrapper .my-xl-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-xl-n2,.editor-styles-wrapper .mx-xl-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-xl-n2,.editor-styles-wrapper .my-xl-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-xl-n2,.editor-styles-wrapper .mx-xl-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-xl-n3{margin:-1rem !important}.editor-styles-wrapper .mt-xl-n3,.editor-styles-wrapper .my-xl-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-xl-n3,.editor-styles-wrapper .mx-xl-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-xl-n3,.editor-styles-wrapper .my-xl-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-xl-n3,.editor-styles-wrapper .mx-xl-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-xl-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-xl-n4,.editor-styles-wrapper .my-xl-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-xl-n4,.editor-styles-wrapper .mx-xl-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-xl-n4,.editor-styles-wrapper .my-xl-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-xl-n4,.editor-styles-wrapper .mx-xl-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-xl-n5{margin:-3rem !important}.editor-styles-wrapper .mt-xl-n5,.editor-styles-wrapper .my-xl-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-xl-n5,.editor-styles-wrapper .mx-xl-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-xl-n5,.editor-styles-wrapper .my-xl-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-xl-n5,.editor-styles-wrapper .mx-xl-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-xl-n6{margin:-4rem !important}.editor-styles-wrapper .mt-xl-n6,.editor-styles-wrapper .my-xl-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-xl-n6,.editor-styles-wrapper .mx-xl-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-xl-n6,.editor-styles-wrapper .my-xl-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-xl-n6,.editor-styles-wrapper .mx-xl-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-xl-n7{margin:-6rem !important}.editor-styles-wrapper .mt-xl-n7,.editor-styles-wrapper .my-xl-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-xl-n7,.editor-styles-wrapper .mx-xl-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-xl-n7,.editor-styles-wrapper .my-xl-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-xl-n7,.editor-styles-wrapper .mx-xl-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-xl-n8{margin:-8rem !important}.editor-styles-wrapper .mt-xl-n8,.editor-styles-wrapper .my-xl-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-xl-n8,.editor-styles-wrapper .mx-xl-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-xl-n8,.editor-styles-wrapper .my-xl-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-xl-n8,.editor-styles-wrapper .mx-xl-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-xl-n9{margin:-10rem !important}.editor-styles-wrapper .mt-xl-n9,.editor-styles-wrapper .my-xl-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-xl-n9,.editor-styles-wrapper .mx-xl-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-xl-n9,.editor-styles-wrapper .my-xl-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-xl-n9,.editor-styles-wrapper .mx-xl-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-xl-n10{margin:-12rem !important}.editor-styles-wrapper .mt-xl-n10,.editor-styles-wrapper .my-xl-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-xl-n10,.editor-styles-wrapper .mx-xl-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-xl-n10,.editor-styles-wrapper .my-xl-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-xl-n10,.editor-styles-wrapper .mx-xl-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-xl-n11{margin:-14rem !important}.editor-styles-wrapper .mt-xl-n11,.editor-styles-wrapper .my-xl-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-xl-n11,.editor-styles-wrapper .mx-xl-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-xl-n11,.editor-styles-wrapper .my-xl-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-xl-n11,.editor-styles-wrapper .mx-xl-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-xl-n12{margin:-16rem !important}.editor-styles-wrapper .mt-xl-n12,.editor-styles-wrapper .my-xl-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-xl-n12,.editor-styles-wrapper .mx-xl-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-xl-n12,.editor-styles-wrapper .my-xl-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-xl-n12,.editor-styles-wrapper .mx-xl-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-xl-auto{margin:auto !important}.editor-styles-wrapper .mt-xl-auto,.editor-styles-wrapper .my-xl-auto{margin-top:auto !important}.editor-styles-wrapper .mr-xl-auto,.editor-styles-wrapper .mx-xl-auto{margin-right:auto !important}.editor-styles-wrapper .mb-xl-auto,.editor-styles-wrapper .my-xl-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-xl-auto,.editor-styles-wrapper .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.editor-styles-wrapper .m-xxl-0{margin:0 !important}.editor-styles-wrapper .mt-xxl-0,.editor-styles-wrapper .my-xxl-0{margin-top:0 !important}.editor-styles-wrapper .mr-xxl-0,.editor-styles-wrapper .mx-xxl-0{margin-right:0 !important}.editor-styles-wrapper .mb-xxl-0,.editor-styles-wrapper .my-xxl-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-xxl-0,.editor-styles-wrapper .mx-xxl-0{margin-left:0 !important}.editor-styles-wrapper .m-xxl-1{margin:.25rem !important}.editor-styles-wrapper .mt-xxl-1,.editor-styles-wrapper .my-xxl-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-xxl-1,.editor-styles-wrapper .mx-xxl-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-xxl-1,.editor-styles-wrapper .my-xxl-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-xxl-1,.editor-styles-wrapper .mx-xxl-1{margin-left:.25rem !important}.editor-styles-wrapper .m-xxl-2{margin:.5rem !important}.editor-styles-wrapper .mt-xxl-2,.editor-styles-wrapper .my-xxl-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-xxl-2,.editor-styles-wrapper .mx-xxl-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-xxl-2,.editor-styles-wrapper .my-xxl-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-xxl-2,.editor-styles-wrapper .mx-xxl-2{margin-left:.5rem !important}.editor-styles-wrapper .m-xxl-3{margin:1rem !important}.editor-styles-wrapper .mt-xxl-3,.editor-styles-wrapper .my-xxl-3{margin-top:1rem !important}.editor-styles-wrapper .mr-xxl-3,.editor-styles-wrapper .mx-xxl-3{margin-right:1rem !important}.editor-styles-wrapper .mb-xxl-3,.editor-styles-wrapper .my-xxl-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-xxl-3,.editor-styles-wrapper .mx-xxl-3{margin-left:1rem !important}.editor-styles-wrapper .m-xxl-4{margin:1.5rem !important}.editor-styles-wrapper .mt-xxl-4,.editor-styles-wrapper .my-xxl-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-xxl-4,.editor-styles-wrapper .mx-xxl-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-xxl-4,.editor-styles-wrapper .my-xxl-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-xxl-4,.editor-styles-wrapper .mx-xxl-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-xxl-5{margin:3rem !important}.editor-styles-wrapper .mt-xxl-5,.editor-styles-wrapper .my-xxl-5{margin-top:3rem !important}.editor-styles-wrapper .mr-xxl-5,.editor-styles-wrapper .mx-xxl-5{margin-right:3rem !important}.editor-styles-wrapper .mb-xxl-5,.editor-styles-wrapper .my-xxl-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-xxl-5,.editor-styles-wrapper .mx-xxl-5{margin-left:3rem !important}.editor-styles-wrapper .m-xxl-6{margin:4rem !important}.editor-styles-wrapper .mt-xxl-6,.editor-styles-wrapper .my-xxl-6{margin-top:4rem !important}.editor-styles-wrapper .mr-xxl-6,.editor-styles-wrapper .mx-xxl-6{margin-right:4rem !important}.editor-styles-wrapper .mb-xxl-6,.editor-styles-wrapper .my-xxl-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-xxl-6,.editor-styles-wrapper .mx-xxl-6{margin-left:4rem !important}.editor-styles-wrapper .m-xxl-7{margin:6rem !important}.editor-styles-wrapper .mt-xxl-7,.editor-styles-wrapper .my-xxl-7{margin-top:6rem !important}.editor-styles-wrapper .mr-xxl-7,.editor-styles-wrapper .mx-xxl-7{margin-right:6rem !important}.editor-styles-wrapper .mb-xxl-7,.editor-styles-wrapper .my-xxl-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-xxl-7,.editor-styles-wrapper .mx-xxl-7{margin-left:6rem !important}.editor-styles-wrapper .m-xxl-8{margin:8rem !important}.editor-styles-wrapper .mt-xxl-8,.editor-styles-wrapper .my-xxl-8{margin-top:8rem !important}.editor-styles-wrapper .mr-xxl-8,.editor-styles-wrapper .mx-xxl-8{margin-right:8rem !important}.editor-styles-wrapper .mb-xxl-8,.editor-styles-wrapper .my-xxl-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-xxl-8,.editor-styles-wrapper .mx-xxl-8{margin-left:8rem !important}.editor-styles-wrapper .m-xxl-9{margin:10rem !important}.editor-styles-wrapper .mt-xxl-9,.editor-styles-wrapper .my-xxl-9{margin-top:10rem !important}.editor-styles-wrapper .mr-xxl-9,.editor-styles-wrapper .mx-xxl-9{margin-right:10rem !important}.editor-styles-wrapper .mb-xxl-9,.editor-styles-wrapper .my-xxl-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-xxl-9,.editor-styles-wrapper .mx-xxl-9{margin-left:10rem !important}.editor-styles-wrapper .m-xxl-10{margin:12rem !important}.editor-styles-wrapper .mt-xxl-10,.editor-styles-wrapper .my-xxl-10{margin-top:12rem !important}.editor-styles-wrapper .mr-xxl-10,.editor-styles-wrapper .mx-xxl-10{margin-right:12rem !important}.editor-styles-wrapper .mb-xxl-10,.editor-styles-wrapper .my-xxl-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-xxl-10,.editor-styles-wrapper .mx-xxl-10{margin-left:12rem !important}.editor-styles-wrapper .m-xxl-11{margin:14rem !important}.editor-styles-wrapper .mt-xxl-11,.editor-styles-wrapper .my-xxl-11{margin-top:14rem !important}.editor-styles-wrapper .mr-xxl-11,.editor-styles-wrapper .mx-xxl-11{margin-right:14rem !important}.editor-styles-wrapper .mb-xxl-11,.editor-styles-wrapper .my-xxl-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-xxl-11,.editor-styles-wrapper .mx-xxl-11{margin-left:14rem !important}.editor-styles-wrapper .m-xxl-12{margin:16rem !important}.editor-styles-wrapper .mt-xxl-12,.editor-styles-wrapper .my-xxl-12{margin-top:16rem !important}.editor-styles-wrapper .mr-xxl-12,.editor-styles-wrapper .mx-xxl-12{margin-right:16rem !important}.editor-styles-wrapper .mb-xxl-12,.editor-styles-wrapper .my-xxl-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-xxl-12,.editor-styles-wrapper .mx-xxl-12{margin-left:16rem !important}.editor-styles-wrapper .p-xxl-0{padding:0 !important}.editor-styles-wrapper .pt-xxl-0,.editor-styles-wrapper .py-xxl-0{padding-top:0 !important}.editor-styles-wrapper .pr-xxl-0,.editor-styles-wrapper .px-xxl-0{padding-right:0 !important}.editor-styles-wrapper .pb-xxl-0,.editor-styles-wrapper .py-xxl-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-xxl-0,.editor-styles-wrapper .px-xxl-0{padding-left:0 !important}.editor-styles-wrapper .p-xxl-1{padding:.25rem !important}.editor-styles-wrapper .pt-xxl-1,.editor-styles-wrapper .py-xxl-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-xxl-1,.editor-styles-wrapper .px-xxl-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-xxl-1,.editor-styles-wrapper .py-xxl-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-xxl-1,.editor-styles-wrapper .px-xxl-1{padding-left:.25rem !important}.editor-styles-wrapper .p-xxl-2{padding:.5rem !important}.editor-styles-wrapper .pt-xxl-2,.editor-styles-wrapper .py-xxl-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-xxl-2,.editor-styles-wrapper .px-xxl-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-xxl-2,.editor-styles-wrapper .py-xxl-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-xxl-2,.editor-styles-wrapper .px-xxl-2{padding-left:.5rem !important}.editor-styles-wrapper .p-xxl-3{padding:1rem !important}.editor-styles-wrapper .pt-xxl-3,.editor-styles-wrapper .py-xxl-3{padding-top:1rem !important}.editor-styles-wrapper .pr-xxl-3,.editor-styles-wrapper .px-xxl-3{padding-right:1rem !important}.editor-styles-wrapper .pb-xxl-3,.editor-styles-wrapper .py-xxl-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-xxl-3,.editor-styles-wrapper .px-xxl-3{padding-left:1rem !important}.editor-styles-wrapper .p-xxl-4{padding:1.5rem !important}.editor-styles-wrapper .pt-xxl-4,.editor-styles-wrapper .py-xxl-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-xxl-4,.editor-styles-wrapper .px-xxl-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-xxl-4,.editor-styles-wrapper .py-xxl-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-xxl-4,.editor-styles-wrapper .px-xxl-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-xxl-5{padding:3rem !important}.editor-styles-wrapper .pt-xxl-5,.editor-styles-wrapper .py-xxl-5{padding-top:3rem !important}.editor-styles-wrapper .pr-xxl-5,.editor-styles-wrapper .px-xxl-5{padding-right:3rem !important}.editor-styles-wrapper .pb-xxl-5,.editor-styles-wrapper .py-xxl-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-xxl-5,.editor-styles-wrapper .px-xxl-5{padding-left:3rem !important}.editor-styles-wrapper .p-xxl-6{padding:4rem !important}.editor-styles-wrapper .pt-xxl-6,.editor-styles-wrapper .py-xxl-6{padding-top:4rem !important}.editor-styles-wrapper .pr-xxl-6,.editor-styles-wrapper .px-xxl-6{padding-right:4rem !important}.editor-styles-wrapper .pb-xxl-6,.editor-styles-wrapper .py-xxl-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-xxl-6,.editor-styles-wrapper .px-xxl-6{padding-left:4rem !important}.editor-styles-wrapper .p-xxl-7{padding:6rem !important}.editor-styles-wrapper .pt-xxl-7,.editor-styles-wrapper .py-xxl-7{padding-top:6rem !important}.editor-styles-wrapper .pr-xxl-7,.editor-styles-wrapper .px-xxl-7{padding-right:6rem !important}.editor-styles-wrapper .pb-xxl-7,.editor-styles-wrapper .py-xxl-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-xxl-7,.editor-styles-wrapper .px-xxl-7{padding-left:6rem !important}.editor-styles-wrapper .p-xxl-8{padding:8rem !important}.editor-styles-wrapper .pt-xxl-8,.editor-styles-wrapper .py-xxl-8{padding-top:8rem !important}.editor-styles-wrapper .pr-xxl-8,.editor-styles-wrapper .px-xxl-8{padding-right:8rem !important}.editor-styles-wrapper .pb-xxl-8,.editor-styles-wrapper .py-xxl-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-xxl-8,.editor-styles-wrapper .px-xxl-8{padding-left:8rem !important}.editor-styles-wrapper .p-xxl-9{padding:10rem !important}.editor-styles-wrapper .pt-xxl-9,.editor-styles-wrapper .py-xxl-9{padding-top:10rem !important}.editor-styles-wrapper .pr-xxl-9,.editor-styles-wrapper .px-xxl-9{padding-right:10rem !important}.editor-styles-wrapper .pb-xxl-9,.editor-styles-wrapper .py-xxl-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-xxl-9,.editor-styles-wrapper .px-xxl-9{padding-left:10rem !important}.editor-styles-wrapper .p-xxl-10{padding:12rem !important}.editor-styles-wrapper .pt-xxl-10,.editor-styles-wrapper .py-xxl-10{padding-top:12rem !important}.editor-styles-wrapper .pr-xxl-10,.editor-styles-wrapper .px-xxl-10{padding-right:12rem !important}.editor-styles-wrapper .pb-xxl-10,.editor-styles-wrapper .py-xxl-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-xxl-10,.editor-styles-wrapper .px-xxl-10{padding-left:12rem !important}.editor-styles-wrapper .p-xxl-11{padding:14rem !important}.editor-styles-wrapper .pt-xxl-11,.editor-styles-wrapper .py-xxl-11{padding-top:14rem !important}.editor-styles-wrapper .pr-xxl-11,.editor-styles-wrapper .px-xxl-11{padding-right:14rem !important}.editor-styles-wrapper .pb-xxl-11,.editor-styles-wrapper .py-xxl-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-xxl-11,.editor-styles-wrapper .px-xxl-11{padding-left:14rem !important}.editor-styles-wrapper .p-xxl-12{padding:16rem !important}.editor-styles-wrapper .pt-xxl-12,.editor-styles-wrapper .py-xxl-12{padding-top:16rem !important}.editor-styles-wrapper .pr-xxl-12,.editor-styles-wrapper .px-xxl-12{padding-right:16rem !important}.editor-styles-wrapper .pb-xxl-12,.editor-styles-wrapper .py-xxl-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-xxl-12,.editor-styles-wrapper .px-xxl-12{padding-left:16rem !important}.editor-styles-wrapper .m-xxl-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-xxl-n1,.editor-styles-wrapper .my-xxl-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-xxl-n1,.editor-styles-wrapper .mx-xxl-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-xxl-n1,.editor-styles-wrapper .my-xxl-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-xxl-n1,.editor-styles-wrapper .mx-xxl-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-xxl-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-xxl-n2,.editor-styles-wrapper .my-xxl-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-xxl-n2,.editor-styles-wrapper .mx-xxl-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-xxl-n2,.editor-styles-wrapper .my-xxl-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-xxl-n2,.editor-styles-wrapper .mx-xxl-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-xxl-n3{margin:-1rem !important}.editor-styles-wrapper .mt-xxl-n3,.editor-styles-wrapper .my-xxl-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-xxl-n3,.editor-styles-wrapper .mx-xxl-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-xxl-n3,.editor-styles-wrapper .my-xxl-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-xxl-n3,.editor-styles-wrapper .mx-xxl-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-xxl-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-xxl-n4,.editor-styles-wrapper .my-xxl-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-xxl-n4,.editor-styles-wrapper .mx-xxl-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-xxl-n4,.editor-styles-wrapper .my-xxl-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-xxl-n4,.editor-styles-wrapper .mx-xxl-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-xxl-n5{margin:-3rem !important}.editor-styles-wrapper .mt-xxl-n5,.editor-styles-wrapper .my-xxl-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-xxl-n5,.editor-styles-wrapper .mx-xxl-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-xxl-n5,.editor-styles-wrapper .my-xxl-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-xxl-n5,.editor-styles-wrapper .mx-xxl-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-xxl-n6{margin:-4rem !important}.editor-styles-wrapper .mt-xxl-n6,.editor-styles-wrapper .my-xxl-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-xxl-n6,.editor-styles-wrapper .mx-xxl-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-xxl-n6,.editor-styles-wrapper .my-xxl-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-xxl-n6,.editor-styles-wrapper .mx-xxl-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-xxl-n7{margin:-6rem !important}.editor-styles-wrapper .mt-xxl-n7,.editor-styles-wrapper .my-xxl-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-xxl-n7,.editor-styles-wrapper .mx-xxl-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-xxl-n7,.editor-styles-wrapper .my-xxl-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-xxl-n7,.editor-styles-wrapper .mx-xxl-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-xxl-n8{margin:-8rem !important}.editor-styles-wrapper .mt-xxl-n8,.editor-styles-wrapper .my-xxl-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-xxl-n8,.editor-styles-wrapper .mx-xxl-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-xxl-n8,.editor-styles-wrapper .my-xxl-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-xxl-n8,.editor-styles-wrapper .mx-xxl-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-xxl-n9{margin:-10rem !important}.editor-styles-wrapper .mt-xxl-n9,.editor-styles-wrapper .my-xxl-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-xxl-n9,.editor-styles-wrapper .mx-xxl-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-xxl-n9,.editor-styles-wrapper .my-xxl-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-xxl-n9,.editor-styles-wrapper .mx-xxl-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-xxl-n10{margin:-12rem !important}.editor-styles-wrapper .mt-xxl-n10,.editor-styles-wrapper .my-xxl-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-xxl-n10,.editor-styles-wrapper .mx-xxl-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-xxl-n10,.editor-styles-wrapper .my-xxl-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-xxl-n10,.editor-styles-wrapper .mx-xxl-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-xxl-n11{margin:-14rem !important}.editor-styles-wrapper .mt-xxl-n11,.editor-styles-wrapper .my-xxl-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-xxl-n11,.editor-styles-wrapper .mx-xxl-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-xxl-n11,.editor-styles-wrapper .my-xxl-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-xxl-n11,.editor-styles-wrapper .mx-xxl-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-xxl-n12{margin:-16rem !important}.editor-styles-wrapper .mt-xxl-n12,.editor-styles-wrapper .my-xxl-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-xxl-n12,.editor-styles-wrapper .mx-xxl-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-xxl-n12,.editor-styles-wrapper .my-xxl-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-xxl-n12,.editor-styles-wrapper .mx-xxl-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-xxl-auto{margin:auto !important}.editor-styles-wrapper .mt-xxl-auto,.editor-styles-wrapper .my-xxl-auto{margin-top:auto !important}.editor-styles-wrapper .mr-xxl-auto,.editor-styles-wrapper .mx-xxl-auto{margin-right:auto !important}.editor-styles-wrapper .mb-xxl-auto,.editor-styles-wrapper .my-xxl-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-xxl-auto,.editor-styles-wrapper .mx-xxl-auto{margin-left:auto !important}}.editor-styles-wrapper .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.editor-styles-wrapper .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.editor-styles-wrapper .text-justify{text-align:justify !important}.editor-styles-wrapper .text-wrap{white-space:normal !important}.editor-styles-wrapper .text-nowrap{white-space:nowrap !important}.editor-styles-wrapper .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.editor-styles-wrapper .text-left{text-align:left !important}.editor-styles-wrapper .text-right{text-align:right !important}.editor-styles-wrapper .text-center{text-align:center !important}@media (min-width: 576px){.editor-styles-wrapper .text-sm-left{text-align:left !important}.editor-styles-wrapper .text-sm-right{text-align:right !important}.editor-styles-wrapper .text-sm-center{text-align:center !important}}@media (min-width: 768px){.editor-styles-wrapper .text-md-left{text-align:left !important}.editor-styles-wrapper .text-md-right{text-align:right !important}.editor-styles-wrapper .text-md-center{text-align:center !important}}@media (min-width: 992px){.editor-styles-wrapper .text-lg-left{text-align:left !important}.editor-styles-wrapper .text-lg-right{text-align:right !important}.editor-styles-wrapper .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.editor-styles-wrapper .text-xl-left{text-align:left !important}.editor-styles-wrapper .text-xl-right{text-align:right !important}.editor-styles-wrapper .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.editor-styles-wrapper .text-xxl-left{text-align:left !important}.editor-styles-wrapper .text-xxl-right{text-align:right !important}.editor-styles-wrapper .text-xxl-center{text-align:center !important}}.editor-styles-wrapper .text-lowercase{text-transform:lowercase !important}.editor-styles-wrapper .text-uppercase{text-transform:uppercase !important}.editor-styles-wrapper .text-capitalize{text-transform:capitalize !important}.editor-styles-wrapper .font-weight-light{font-weight:300 !important}.editor-styles-wrapper .font-weight-lighter{font-weight:lighter !important}.editor-styles-wrapper .font-weight-normal{font-weight:400 !important}.editor-styles-wrapper .font-weight-bold{font-weight:700 !important}.editor-styles-wrapper .font-weight-bolder{font-weight:bolder !important}.editor-styles-wrapper .font-italic{font-style:italic !important}.editor-styles-wrapper .text-white{color:#fff !important}.editor-styles-wrapper .text-primary{color:#1e73be !important}.editor-styles-wrapper a.text-primary:hover,.editor-styles-wrapper a.text-primary:focus{color:#144b7c !important}.editor-styles-wrapper .text-secondary{color:#6c757d !important}.editor-styles-wrapper a.text-secondary:hover,.editor-styles-wrapper a.text-secondary:focus{color:#494f54 !important}.editor-styles-wrapper .text-success{color:#44c553 !important}.editor-styles-wrapper a.text-success:hover,.editor-styles-wrapper a.text-success:focus{color:#2d9038 !important}.editor-styles-wrapper .text-info{color:#17a2b8 !important}.editor-styles-wrapper a.text-info:hover,.editor-styles-wrapper a.text-info:focus{color:#0f6674 !important}.editor-styles-wrapper .text-warning{color:#ffc107 !important}.editor-styles-wrapper a.text-warning:hover,.editor-styles-wrapper a.text-warning:focus{color:#ba8b00 !important}.editor-styles-wrapper .text-danger{color:#dc3545 !important}.editor-styles-wrapper a.text-danger:hover,.editor-styles-wrapper a.text-danger:focus{color:#a71d2a !important}.editor-styles-wrapper .text-light{color:#f8f9fa !important}.editor-styles-wrapper a.text-light:hover,.editor-styles-wrapper a.text-light:focus{color:#cbd3da !important}.editor-styles-wrapper .text-dark{color:#343a40 !important}.editor-styles-wrapper a.text-dark:hover,.editor-styles-wrapper a.text-dark:focus{color:#121416 !important}.editor-styles-wrapper .text-white{color:#fff !important}.editor-styles-wrapper a.text-white:hover,.editor-styles-wrapper a.text-white:focus{color:#d9d9d9 !important}.editor-styles-wrapper .text-purple{color:#ad6edd !important}.editor-styles-wrapper a.text-purple:hover,.editor-styles-wrapper a.text-purple:focus{color:#8a30ce !important}.editor-styles-wrapper .text-salmon{color:#ff977a !important}.editor-styles-wrapper a.text-salmon:hover,.editor-styles-wrapper a.text-salmon:focus{color:#ff5b2e !important}.editor-styles-wrapper .text-cyan{color:#35bdff !important}.editor-styles-wrapper a.text-cyan:hover,.editor-styles-wrapper a.text-cyan:focus{color:#009ce8 !important}.editor-styles-wrapper .text-gray{color:#ced4da !important}.editor-styles-wrapper a.text-gray:hover,.editor-styles-wrapper a.text-gray:focus{color:#a2aeb9 !important}.editor-styles-wrapper .text-gray-dark{color:#6c757d !important}.editor-styles-wrapper a.text-gray-dark:hover,.editor-styles-wrapper a.text-gray-dark:focus{color:#494f54 !important}.editor-styles-wrapper .text-indigo{color:#502c6c !important}.editor-styles-wrapper a.text-indigo:hover,.editor-styles-wrapper a.text-indigo:focus{color:#281636 !important}.editor-styles-wrapper .text-orange{color:#fbb500 !important}.editor-styles-wrapper a.text-orange:hover,.editor-styles-wrapper a.text-orange:focus{color:#af7e00 !important}.editor-styles-wrapper .text-body{color:#212529 !important}.editor-styles-wrapper .text-muted{color:#6c757d !important}.editor-styles-wrapper .text-black-50{color:rgba(0,0,0,0.5) !important}.editor-styles-wrapper .text-white-50{color:rgba(255,255,255,0.5) !important}.editor-styles-wrapper .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.editor-styles-wrapper .text-decoration-none{text-decoration:none !important}.editor-styles-wrapper .text-break{word-break:break-word !important;word-wrap:break-word !important}.editor-styles-wrapper .text-reset{color:inherit !important}.editor-styles-wrapper .visible{visibility:visible !important}.editor-styles-wrapper .invisible{visibility:hidden !important}@media print{.editor-styles-wrapper *,.editor-styles-wrapper *::before,.editor-styles-wrapper *::after{text-shadow:none !important;box-shadow:none !important}.editor-styles-wrapper a:not(.btn){text-decoration:underline}.editor-styles-wrapper abbr[title]::after{content:" (" attr(title) ")"}.editor-styles-wrapper pre{white-space:pre-wrap !important}.editor-styles-wrapper pre,.editor-styles-wrapper blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.editor-styles-wrapper tr,.editor-styles-wrapper img{page-break-inside:avoid}.editor-styles-wrapper p,.editor-styles-wrapper h2,.editor-styles-wrapper h3{orphans:3;widows:3}.editor-styles-wrapper h2,.editor-styles-wrapper h3{page-break-after:avoid}@page{.editor-styles-wrapper{size:a3}}.editor-styles-wrapper body{min-width:992px !important}.editor-styles-wrapper .container{min-width:992px !important}.editor-styles-wrapper .navbar{display:none}.editor-styles-wrapper .badge{border:1px solid #000}.editor-styles-wrapper .table{border-collapse:collapse !important}.editor-styles-wrapper .table td,.editor-styles-wrapper .table th{background-color:#fff !important}.editor-styles-wrapper .table-bordered th,.editor-styles-wrapper .table-bordered td{border:1px solid #dee2e6 !important}.editor-styles-wrapper .table-dark{color:inherit}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th,.editor-styles-wrapper .table-dark tbody+tbody{border-color:#dee2e6}.editor-styles-wrapper .table .thead-dark th{color:inherit;border-color:#dee2e6}}.editor-styles-wrapper .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.editor-styles-wrapper .iconpicker-popover.popover.top,.editor-styles-wrapper .iconpicker-popover.popover.topLeftCorner,.editor-styles-wrapper .iconpicker-popover.popover.topLeft,.editor-styles-wrapper .iconpicker-popover.popover.topRight,.editor-styles-wrapper .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.editor-styles-wrapper .iconpicker-popover.popover.right,.editor-styles-wrapper .iconpicker-popover.popover.rightTop,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom{margin-left:10px}.editor-styles-wrapper .iconpicker-popover.popover.bottom,.editor-styles-wrapper .iconpicker-popover.popover.bottomRightCorner,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.editor-styles-wrapper .iconpicker-popover.popover.left,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom,.editor-styles-wrapper .iconpicker-popover.popover.leftTop{margin-left:-10px}.editor-styles-wrapper .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.editor-styles-wrapper .iconpicker-popover.popover.inline>.arrow{display:none}.editor-styles-wrapper .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.editor-styles-wrapper .dropdown-menu.iconpicker-container{padding:0}.editor-styles-wrapper .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.editor-styles-wrapper .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.editor-styles-wrapper .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.editor-styles-wrapper .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.editor-styles-wrapper .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.editor-styles-wrapper .iconpicker-popover .popover-footer:before,.editor-styles-wrapper .iconpicker-popover .popover-footer:after{content:" ";display:table}.editor-styles-wrapper .iconpicker-popover .popover-footer:after{clear:both}.editor-styles-wrapper .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.editor-styles-wrapper .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.editor-styles-wrapper .iconpicker-popover.popover>.arrow,.editor-styles-wrapper .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.editor-styles-wrapper .iconpicker-popover.popover>.arrow{border-width:11px}.editor-styles-wrapper .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.editor-styles-wrapper .iconpicker-popover.popover.top>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.editor-styles-wrapper .iconpicker-popover.popover.top>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.right>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .iconpicker-popover.popover.right>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.bottom>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.editor-styles-wrapper .iconpicker-popover.popover.bottom>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.left>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .iconpicker-popover.popover.left>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.editor-styles-wrapper .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.editor-styles-wrapper .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.editor-styles-wrapper .iconpicker:before,.editor-styles-wrapper .iconpicker:after{content:" ";display:table}.editor-styles-wrapper .iconpicker:after{clear:both}.editor-styles-wrapper .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.editor-styles-wrapper .iconpicker .iconpicker-items:before,.editor-styles-wrapper .iconpicker .iconpicker-items:after{content:" ";display:table}.editor-styles-wrapper .iconpicker .iconpicker-items:after{clear:both}.editor-styles-wrapper .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.editor-styles-wrapper .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.editor-styles-wrapper .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.editor-styles-wrapper .iconpicker-component{cursor:pointer}.editor-styles-wrapper .tofront{position:relative;z-index:1}.editor-styles-wrapper .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.editor-styles-wrapper .c-pointer:hover{cursor:pointer}.editor-styles-wrapper .c-move:hover{cursor:move}.editor-styles-wrapper .z-index-1{z-index:1}@media (max-width: 991.98px){.editor-styles-wrapper .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.editor-styles-wrapper .display-3{font-size:2rem}}.editor-styles-wrapper .row.gap-y>.col,.editor-styles-wrapper .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.editor-styles-wrapper .mt-neg5{margin-top:-5rem}.editor-styles-wrapper .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.editor-styles-wrapper .h-md-100-v{height:100vh}.editor-styles-wrapper .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.editor-styles-wrapper .h-xl-300{height:300px}.editor-styles-wrapper .h-max-380{max-height:380px}}.editor-styles-wrapper .btn-round{border-radius:30px !important}.editor-styles-wrapper .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.editor-styles-wrapper .btn:hover,.editor-styles-wrapper .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.editor-styles-wrapper .btn-lg,.editor-styles-wrapper .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .btn-sm,.editor-styles-wrapper .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .btn-link:hover,.editor-styles-wrapper .btn-link:focus{box-shadow:none}.editor-styles-wrapper .btn-link.btn-primary{color:#1e73be;border-color:transparent}.editor-styles-wrapper .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.editor-styles-wrapper .btn-link.btn-success{color:#44c553;border-color:transparent}.editor-styles-wrapper .btn-link.btn-info{color:#17a2b8;border-color:transparent}.editor-styles-wrapper .btn-link.btn-warning{color:#ffc107;border-color:transparent}.editor-styles-wrapper .btn-link.btn-danger{color:#dc3545;border-color:transparent}.editor-styles-wrapper .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.editor-styles-wrapper .btn-link.btn-dark{color:#343a40;border-color:transparent}.editor-styles-wrapper .btn-link.btn-white{color:#fff;border-color:transparent}.editor-styles-wrapper .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.editor-styles-wrapper .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.editor-styles-wrapper .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.editor-styles-wrapper .btn-link.btn-gray{color:#ced4da;border-color:transparent}.editor-styles-wrapper .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.editor-styles-wrapper .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.editor-styles-wrapper .btn-link.btn-orange{color:#fbb500;border-color:transparent}.editor-styles-wrapper .btn-white{background-color:#fff}.editor-styles-wrapper .input-round{border-radius:30px !important}.editor-styles-wrapper .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.editor-styles-wrapper .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.editor-styles-wrapper .navbar{font-weight:400}.editor-styles-wrapper .navbar-brand{margin-right:2rem;font-size:1.25rem}.editor-styles-wrapper .dropdown-item{font-weight:300}.editor-styles-wrapper .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.editor-styles-wrapper .dropdown-menu.dropdown-caret-0:before{content:none}.editor-styles-wrapper .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-brand:hover,.editor-styles-wrapper .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.editor-styles-wrapper .navbar-light .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.editor-styles-wrapper .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.editor-styles-wrapper .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-text a:hover,.editor-styles-wrapper .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.editor-styles-wrapper .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.editor-styles-wrapper .jumbotron-lg{padding:10rem 0}.editor-styles-wrapper .jumbotron-xl{padding:15rem 0}.editor-styles-wrapper .jumbotron-xl{min-height:100vh}.editor-styles-wrapper .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.editor-styles-wrapper .bg-black{background-color:#000}.editor-styles-wrapper .overlay{position:relative}.editor-styles-wrapper .overlay .container{position:relative}.editor-styles-wrapper .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.editor-styles-wrapper .overlay-black:before{background-color:rgba(0,0,0,0.5)}.editor-styles-wrapper .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.editor-styles-wrapper .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.editor-styles-wrapper .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.editor-styles-wrapper .bg-primary{fill:#1e73be !important}.editor-styles-wrapper .bg-secondary{fill:#6c757d !important}.editor-styles-wrapper .bg-success{fill:#44c553 !important}.editor-styles-wrapper .bg-info{fill:#17a2b8 !important}.editor-styles-wrapper .bg-warning{fill:#ffc107 !important}.editor-styles-wrapper .bg-danger{fill:#dc3545 !important}.editor-styles-wrapper .bg-light{fill:#f8f9fa !important}.editor-styles-wrapper .bg-dark{fill:#343a40 !important}.editor-styles-wrapper .bg-white{fill:#fff !important}.editor-styles-wrapper .bg-purple{fill:#ad6edd !important}.editor-styles-wrapper .bg-salmon{fill:#ff977a !important}.editor-styles-wrapper .bg-cyan{fill:#35bdff !important}.editor-styles-wrapper .bg-gray{fill:#ced4da !important}.editor-styles-wrapper .bg-gray-dark{fill:#6c757d !important}.editor-styles-wrapper .bg-indigo{fill:#502c6c !important}.editor-styles-wrapper .bg-orange{fill:#fbb500 !important}.editor-styles-wrapper .iconbox{border:1px solid;text-align:center;display:inline-block}.editor-styles-wrapper .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.editor-styles-wrapper .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.editor-styles-wrapper .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.editor-styles-wrapper .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .alert-primary hr{border-top-color:#1b66a8}.editor-styles-wrapper .alert-primary .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-secondary hr{border-top-color:#60686f}.editor-styles-wrapper .alert-secondary .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .alert-success hr{border-top-color:#39b747}.editor-styles-wrapper .alert-success .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .alert-info hr{border-top-color:#148ea1}.editor-styles-wrapper .alert-info .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .alert-warning hr{border-top-color:#edb100}.editor-styles-wrapper .alert-warning .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .alert-danger hr{border-top-color:#d32535}.editor-styles-wrapper .alert-danger .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .alert-light hr{border-top-color:#e9ecef}.editor-styles-wrapper .alert-light .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .alert-dark hr{border-top-color:#292d32}.editor-styles-wrapper .alert-dark .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-white{color:#fff;background-color:#fff;border-color:#fff}.editor-styles-wrapper .alert-white hr{border-top-color:#f2f2f2}.editor-styles-wrapper .alert-white .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .alert-purple hr{border-top-color:#a159d8}.editor-styles-wrapper .alert-purple .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .alert-salmon hr{border-top-color:#ff8361}.editor-styles-wrapper .alert-salmon .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .alert-cyan hr{border-top-color:#1cb5ff}.editor-styles-wrapper .alert-cyan .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .alert-gray hr{border-top-color:#bfc7cf}.editor-styles-wrapper .alert-gray .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-gray-dark hr{border-top-color:#60686f}.editor-styles-wrapper .alert-gray-dark .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .alert-indigo hr{border-top-color:#43255a}.editor-styles-wrapper .alert-indigo .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .alert-orange hr{border-top-color:#e2a300}.editor-styles-wrapper .alert-orange .alert-link{color:#e6e6e6}.editor-styles-wrapper ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.editor-styles-wrapper .loginarea{z-index:1111}}.editor-styles-wrapper .iconbox{border:1px solid;text-align:center;display:inline-block}.editor-styles-wrapper .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.editor-styles-wrapper .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.editor-styles-wrapper .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.editor-styles-wrapper .btn-round{border-radius:30px !important}.editor-styles-wrapper .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.editor-styles-wrapper .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.editor-styles-wrapper .btn-facebook:focus,.editor-styles-wrapper .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-facebook.disabled,.editor-styles-wrapper .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.editor-styles-wrapper .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.editor-styles-wrapper .btn-twitter:focus,.editor-styles-wrapper .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-twitter.disabled,.editor-styles-wrapper .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.editor-styles-wrapper .btn-instagram:focus,.editor-styles-wrapper .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-instagram.disabled,.editor-styles-wrapper .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.editor-styles-wrapper .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.editor-styles-wrapper .btn-linkedin:focus,.editor-styles-wrapper .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-linkedin.disabled,.editor-styles-wrapper .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.editor-styles-wrapper .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.editor-styles-wrapper .btn-flickr:focus,.editor-styles-wrapper .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-flickr.disabled,.editor-styles-wrapper .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-github{color:#fff;background-color:#333;border-color:#fff}.editor-styles-wrapper .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.editor-styles-wrapper .btn-github:focus,.editor-styles-wrapper .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-github.disabled,.editor-styles-wrapper .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.editor-styles-wrapper .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.editor-styles-wrapper .btn-youtube:focus,.editor-styles-wrapper .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-youtube.disabled,.editor-styles-wrapper .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.editor-styles-wrapper .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.editor-styles-wrapper .btn-wordpress:focus,.editor-styles-wrapper .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-wordpress.disabled,.editor-styles-wrapper .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.editor-styles-wrapper .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.editor-styles-wrapper .btn-google:focus,.editor-styles-wrapper .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-google.disabled,.editor-styles-wrapper .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.editor-styles-wrapper .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.editor-styles-wrapper .btn-yahoo:focus,.editor-styles-wrapper .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-yahoo.disabled,.editor-styles-wrapper .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.editor-styles-wrapper .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.editor-styles-wrapper .btn-vkontakte:focus,.editor-styles-wrapper .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-vkontakte.disabled,.editor-styles-wrapper .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.editor-styles-wrapper .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.editor-styles-wrapper .btn-tiktok:focus,.editor-styles-wrapper .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-tiktok.disabled,.editor-styles-wrapper .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.editor-styles-wrapper .btn-circle.btn-sm,.editor-styles-wrapper .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.editor-styles-wrapper .btn-circle.btn-lg,.editor-styles-wrapper .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.editor-styles-wrapper .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.editor-styles-wrapper .btn-square.btn-sm,.editor-styles-wrapper .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.editor-styles-wrapper .btn-square.btn-lg,.editor-styles-wrapper .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.editor-styles-wrapper .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.editor-styles-wrapper .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.editor-styles-wrapper .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.editor-styles-wrapper .btn-icon-split.btn-sm .icon,.editor-styles-wrapper .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.editor-styles-wrapper .btn-icon-split.btn-sm .text,.editor-styles-wrapper .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.editor-styles-wrapper .btn-icon-split.btn-lg .icon,.editor-styles-wrapper .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.editor-styles-wrapper .btn-icon-split.btn-lg .text,.editor-styles-wrapper .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.editor-styles-wrapper .alert a{color:inherit;text-decoration:underline}.editor-styles-wrapper .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.editor-styles-wrapper .row.row-cols-md-0{display:block}.editor-styles-wrapper .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.editor-styles-wrapper .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.editor-styles-wrapper .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.editor-styles-wrapper .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.editor-styles-wrapper .row.row-cols-md-0 .card .card-footer{flex:1 100%}.editor-styles-wrapper .row.row-cols-md-0 .gv-hide-0{display:none}}.editor-styles-wrapper .row-cols-md-2 .gv-hide-2{display:none}.editor-styles-wrapper .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-3 .gv-hide-2,.editor-styles-wrapper .row-cols-md-3 .gv-hide-3{display:none}.editor-styles-wrapper .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-4 .gv-hide-2,.editor-styles-wrapper .row-cols-md-4 .gv-hide-3,.editor-styles-wrapper .row-cols-md-4 .gv-hide-4{display:none}.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-5 .gv-hide-2,.editor-styles-wrapper .row-cols-md-5 .gv-hide-3,.editor-styles-wrapper .row-cols-md-5 .gv-hide-4,.editor-styles-wrapper .row-cols-md-5 .gv-hide-5{display:none}.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.editor-styles-wrapper .row .gv-hide-0,.editor-styles-wrapper .row .gv-hide-2,.editor-styles-wrapper .row .gv-hide-3,.editor-styles-wrapper .row .gv-hide-4,.editor-styles-wrapper .row .gv-hide-5{display:none}.editor-styles-wrapper .row .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-4 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-5 .gv-secondary{display:none}}.editor-styles-wrapper .border-width-1{border-width:1px !important}.editor-styles-wrapper .border-width-2{border-width:2px !important}.editor-styles-wrapper .border-width-3{border-width:3px !important}.editor-styles-wrapper .border-width-4{border-width:4px !important}.editor-styles-wrapper .border-width-5{border-width:5px !important}.editor-styles-wrapper .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.editor-styles-wrapper .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.editor-styles-wrapper .hover-content{display:none}.editor-styles-wrapper .hover-content.fas{display:none}.editor-styles-wrapper .btn:hover .hover-content,.editor-styles-wrapper .badge:hover .hover-content,.editor-styles-wrapper .hover-swap:hover .hover-content{display:initial}.editor-styles-wrapper .btn:hover .hover-content-original,.editor-styles-wrapper .badge:hover .hover-content-original,.editor-styles-wrapper .hover-swap:hover .hover-content-original{display:none}.editor-styles-wrapper .overflow-visible{overflow:visible}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.editor-styles-wrapper .embed-item-cover-xy{object-fit:cover;height:100%}.editor-styles-wrapper .embed-item-cover-x{height:auto !important}.editor-styles-wrapper .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.editor-styles-wrapper .embed-item-contain{object-fit:contain}.editor-styles-wrapper .embed-has-action{transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action i,.editor-styles-wrapper .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action:hover i,.editor-styles-wrapper .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.editor-styles-wrapper .flatpickr-month .flatpickr-current-month>*{display:inline-block}.editor-styles-wrapper .custom-select{-webkit-appearance:none;-moz-appearance:none}.editor-styles-wrapper .badge-facebook{color:#fff;background-color:#3b5998}.editor-styles-wrapper a.badge-facebook:hover,.editor-styles-wrapper a.badge-facebook:focus{color:#fff;background-color:#2d4373}.editor-styles-wrapper a.badge-facebook:focus,.editor-styles-wrapper a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.editor-styles-wrapper .badge-twitter{color:#212529;background-color:#55acee}.editor-styles-wrapper a.badge-twitter:hover,.editor-styles-wrapper a.badge-twitter:focus{color:#212529;background-color:#2795e9}.editor-styles-wrapper a.badge-twitter:focus,.editor-styles-wrapper a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.editor-styles-wrapper .badge-instagram{color:#fff;background-color:#125688}.editor-styles-wrapper a.badge-instagram:hover,.editor-styles-wrapper a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.editor-styles-wrapper a.badge-instagram:focus,.editor-styles-wrapper a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.editor-styles-wrapper .badge-linkedin{color:#fff;background-color:#0976b4}.editor-styles-wrapper a.badge-linkedin:hover,.editor-styles-wrapper a.badge-linkedin:focus{color:#fff;background-color:#075683}.editor-styles-wrapper a.badge-linkedin:focus,.editor-styles-wrapper a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.editor-styles-wrapper .badge-flickr{color:#fff;background-color:#f8457e}.editor-styles-wrapper a.badge-flickr:hover,.editor-styles-wrapper a.badge-flickr:focus{color:#fff;background-color:#f6145c}.editor-styles-wrapper a.badge-flickr:focus,.editor-styles-wrapper a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.editor-styles-wrapper .badge-github{color:#fff;background-color:#333}.editor-styles-wrapper a.badge-github:hover,.editor-styles-wrapper a.badge-github:focus{color:#fff;background-color:#1a1a1a}.editor-styles-wrapper a.badge-github:focus,.editor-styles-wrapper a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.editor-styles-wrapper .badge-youtube{color:#fff;background-color:#e52d27}.editor-styles-wrapper a.badge-youtube:hover,.editor-styles-wrapper a.badge-youtube:focus{color:#fff;background-color:#c21d17}.editor-styles-wrapper a.badge-youtube:focus,.editor-styles-wrapper a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.editor-styles-wrapper .badge-wordpress{color:#fff;background-color:#207297}.editor-styles-wrapper a.badge-wordpress:hover,.editor-styles-wrapper a.badge-wordpress:focus{color:#fff;background-color:#17526d}.editor-styles-wrapper a.badge-wordpress:focus,.editor-styles-wrapper a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.editor-styles-wrapper .badge-google{color:#fff;background-color:#ea4335}.editor-styles-wrapper a.badge-google:hover,.editor-styles-wrapper a.badge-google:focus{color:#fff;background-color:#d62516}.editor-styles-wrapper a.badge-google:focus,.editor-styles-wrapper a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.editor-styles-wrapper .badge-yahoo{color:#fff;background-color:#6040d2}.editor-styles-wrapper a.badge-yahoo:hover,.editor-styles-wrapper a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.editor-styles-wrapper a.badge-yahoo:focus,.editor-styles-wrapper a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.editor-styles-wrapper .badge-vkontakte{color:#fff;background-color:#4a76a8}.editor-styles-wrapper a.badge-vkontakte:hover,.editor-styles-wrapper a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.editor-styles-wrapper a.badge-vkontakte:focus,.editor-styles-wrapper a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.editor-styles-wrapper .badge-tiktok{color:#fff;background-color:#010101}.editor-styles-wrapper a.badge-tiktok:hover,.editor-styles-wrapper a.badge-tiktok:focus{color:#fff;background-color:#000}.editor-styles-wrapper a.badge-tiktok:focus,.editor-styles-wrapper a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.editor-styles-wrapper .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper a.badge-instagram:hover,.editor-styles-wrapper a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.editor-styles-wrapper a.badge-instagram:focus,.editor-styles-wrapper a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.editor-styles-wrapper .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .bg-initial{background:initial !important}.editor-styles-wrapper .bg-inherit{background:inherit !important}.editor-styles-wrapper .overlay-white:before{background-color:rgba(255,255,255,0.5)}.editor-styles-wrapper .form-label-group{position:relative;margin-bottom:1rem}.editor-styles-wrapper .form-label-group>input,.editor-styles-wrapper .form-label-group>textarea,.editor-styles-wrapper .form-label-group>label{padding:.45rem 1.2rem}.editor-styles-wrapper .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.editor-styles-wrapper .form-label-group input::-webkit-input-placeholder,.editor-styles-wrapper .form-label-group input:-ms-input-placeholder,.editor-styles-wrapper .form-label-group input::-ms-input-placeholder,.editor-styles-wrapper .form-label-group input::-moz-placeholder,.editor-styles-wrapper .form-label-group input::placeholder,.editor-styles-wrapper .form-label-group textarea::-webkit-input-placeholder,.editor-styles-wrapper .form-label-group textarea:-ms-input-placeholder,.editor-styles-wrapper .form-label-group textarea::-ms-input-placeholder,.editor-styles-wrapper .form-label-group textarea::-moz-placeholder,.editor-styles-wrapper .form-label-group textarea::placeholder{color:transparent}.editor-styles-wrapper .form-label-group input:not(:placeholder-shown),.editor-styles-wrapper .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.editor-styles-wrapper .form-label-group input:not(:placeholder-shown) ~ label,.editor-styles-wrapper .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.editor-styles-wrapper .ab-left,.editor-styles-wrapper .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.editor-styles-wrapper .ab-left-angle,.editor-styles-wrapper .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.editor-styles-wrapper .ab-left-angle .badge,.editor-styles-wrapper .ab-top-left-angle .badge{display:block}.editor-styles-wrapper .ab-right,.editor-styles-wrapper .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.editor-styles-wrapper .ab-right-angle,.editor-styles-wrapper .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.editor-styles-wrapper .ab-right-angle .badge,.editor-styles-wrapper .ab-top-right-angle .badge{display:block}.editor-styles-wrapper .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.editor-styles-wrapper .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.editor-styles-wrapper .ab-bottom-left-angle .badge{display:block}.editor-styles-wrapper .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.editor-styles-wrapper .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.editor-styles-wrapper .ab-bottom-right-angle .badge{display:block}.editor-styles-wrapper .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.editor-styles-wrapper .clear-both{clear:both}.editor-styles-wrapper .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.editor-styles-wrapper .hover-zoom{transition:transform .2s}.editor-styles-wrapper .hover-zoom:hover{transform:scale(1.2)}.editor-styles-wrapper .hover-shadow{transition:all ease 0.3s}.editor-styles-wrapper .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.editor-styles-wrapper .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-up:hover{top:-10px !important}.editor-styles-wrapper .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-down:hover{bottom:-10px !important}.editor-styles-wrapper .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-left:hover{left:-10px !important}.editor-styles-wrapper .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-right:hover{right:-10px !important}.editor-styles-wrapper .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} + */}.editor-styles-wrapper :root{--blue: #7832e2;--indigo: #502c6c;--purple: #ad6edd;--pink: #ff0266;--red: #ff5916;--orange: #fbb500;--yellow: #ffde03;--green: #44c553;--teal: #09ebaf;--cyan: #35bdff;--white: #fff;--gray: #6c757d;--gray-dark: #495057;--primary: #1e73be;--secondary: #6c757d;--success: #44c553;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--white: #fff;--purple: #ad6edd;--salmon: #ff977a;--cyan: #35bdff;--gray: #ced4da;--gray-dark: #6c757d;--indigo: #502c6c;--orange: #fbb500;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.editor-styles-wrapper *,.editor-styles-wrapper *::before,.editor-styles-wrapper *::after{box-sizing:border-box}.editor-styles-wrapper html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}.editor-styles-wrapper article,.editor-styles-wrapper aside,.editor-styles-wrapper figcaption,.editor-styles-wrapper figure,.editor-styles-wrapper footer,.editor-styles-wrapper header,.editor-styles-wrapper hgroup,.editor-styles-wrapper main,.editor-styles-wrapper nav,.editor-styles-wrapper section{display:block}.editor-styles-wrapper body{margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:300;line-height:1.6;color:#212529;text-align:left;background-color:#fff}.editor-styles-wrapper [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}.editor-styles-wrapper hr{box-sizing:content-box;height:0;overflow:visible}.editor-styles-wrapper h1,.editor-styles-wrapper h2,.editor-styles-wrapper h3,.editor-styles-wrapper h4,.editor-styles-wrapper h5,.editor-styles-wrapper h6{margin-top:0;margin-bottom:.5rem}.editor-styles-wrapper p{margin-top:0;margin-bottom:1rem}.editor-styles-wrapper abbr[title],.editor-styles-wrapper abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}.editor-styles-wrapper address{margin-bottom:1rem;font-style:normal;line-height:inherit}.editor-styles-wrapper ol,.editor-styles-wrapper ul,.editor-styles-wrapper dl{margin-top:0;margin-bottom:1rem}.editor-styles-wrapper ol ol,.editor-styles-wrapper ul ul,.editor-styles-wrapper ol ul,.editor-styles-wrapper ul ol{margin-bottom:0}.editor-styles-wrapper dt{font-weight:700}.editor-styles-wrapper dd{margin-bottom:.5rem;margin-left:0}.editor-styles-wrapper blockquote{margin:0 0 1rem}.editor-styles-wrapper b,.editor-styles-wrapper strong{font-weight:bolder}.editor-styles-wrapper small{font-size:80%}.editor-styles-wrapper sub,.editor-styles-wrapper sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.editor-styles-wrapper sub{bottom:-.25em}.editor-styles-wrapper sup{top:-.5em}.editor-styles-wrapper a{color:#1e73be;text-decoration:none;background-color:transparent}.editor-styles-wrapper a:hover{color:#144b7c;text-decoration:underline}.editor-styles-wrapper a:not([href]):not([class]){color:inherit;text-decoration:none}.editor-styles-wrapper a:not([href]):not([class]):hover{color:inherit;text-decoration:none}.editor-styles-wrapper pre,.editor-styles-wrapper code,.editor-styles-wrapper kbd,.editor-styles-wrapper samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.editor-styles-wrapper pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}.editor-styles-wrapper figure{margin:0 0 1rem}.editor-styles-wrapper img{vertical-align:middle;border-style:none}.editor-styles-wrapper svg{overflow:hidden;vertical-align:middle}.editor-styles-wrapper table{border-collapse:collapse}.editor-styles-wrapper caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}.editor-styles-wrapper th{text-align:inherit;text-align:-webkit-match-parent}.editor-styles-wrapper label{display:inline-block;margin-bottom:.5rem}.editor-styles-wrapper button{border-radius:0}.editor-styles-wrapper button:focus:not(:focus-visible){outline:0}.editor-styles-wrapper input,.editor-styles-wrapper button,.editor-styles-wrapper select,.editor-styles-wrapper optgroup,.editor-styles-wrapper textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.editor-styles-wrapper button,.editor-styles-wrapper input{overflow:visible}.editor-styles-wrapper button,.editor-styles-wrapper select{text-transform:none}.editor-styles-wrapper [role="button"]{cursor:pointer}.editor-styles-wrapper select{word-wrap:normal}.editor-styles-wrapper button,.editor-styles-wrapper [type="button"],.editor-styles-wrapper [type="reset"],.editor-styles-wrapper [type="submit"]{-webkit-appearance:button}.editor-styles-wrapper button:not(:disabled),.editor-styles-wrapper [type="button"]:not(:disabled),.editor-styles-wrapper [type="reset"]:not(:disabled),.editor-styles-wrapper [type="submit"]:not(:disabled){cursor:pointer}.editor-styles-wrapper button::-moz-focus-inner,.editor-styles-wrapper [type="button"]::-moz-focus-inner,.editor-styles-wrapper [type="reset"]::-moz-focus-inner,.editor-styles-wrapper [type="submit"]::-moz-focus-inner{padding:0;border-style:none}.editor-styles-wrapper input[type="radio"],.editor-styles-wrapper input[type="checkbox"]{box-sizing:border-box;padding:0}.editor-styles-wrapper textarea{overflow:auto;resize:vertical}.editor-styles-wrapper fieldset{min-width:0;padding:0;margin:0;border:0}.editor-styles-wrapper legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.editor-styles-wrapper progress{vertical-align:baseline}.editor-styles-wrapper [type="number"]::-webkit-inner-spin-button,.editor-styles-wrapper [type="number"]::-webkit-outer-spin-button{height:auto}.editor-styles-wrapper [type="search"]{outline-offset:-2px;-webkit-appearance:none}.editor-styles-wrapper [type="search"]::-webkit-search-decoration{-webkit-appearance:none}.editor-styles-wrapper ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.editor-styles-wrapper output{display:inline-block}.editor-styles-wrapper summary{display:list-item;cursor:pointer}.editor-styles-wrapper template{display:none}.editor-styles-wrapper [hidden]{display:none !important}.editor-styles-wrapper h1,.editor-styles-wrapper h2,.editor-styles-wrapper h3,.editor-styles-wrapper h4,.editor-styles-wrapper h5,.editor-styles-wrapper h6,.editor-styles-wrapper .h1,.editor-styles-wrapper .h2,.editor-styles-wrapper .h3,.editor-styles-wrapper .h4,.editor-styles-wrapper .h5,.editor-styles-wrapper .h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2}.editor-styles-wrapper h1,.editor-styles-wrapper .h1{font-size:2.5rem}.editor-styles-wrapper h2,.editor-styles-wrapper .h2{font-size:2rem}.editor-styles-wrapper h3,.editor-styles-wrapper .h3{font-size:1.75rem}.editor-styles-wrapper h4,.editor-styles-wrapper .h4{font-size:1.5rem}.editor-styles-wrapper h5,.editor-styles-wrapper .h5{font-size:1.25rem}.editor-styles-wrapper h6,.editor-styles-wrapper .h6{font-size:1rem}.editor-styles-wrapper .lead{font-size:1.25rem;font-weight:300}.editor-styles-wrapper .display-1{font-size:6rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}.editor-styles-wrapper hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.editor-styles-wrapper small,.editor-styles-wrapper .small{font-size:85%;font-weight:400}.editor-styles-wrapper mark,.editor-styles-wrapper .mark{padding:.2em;background-color:#fcf8e3}.editor-styles-wrapper .list-unstyled{padding-left:0;list-style:none}.editor-styles-wrapper .list-inline{padding-left:0;list-style:none}.editor-styles-wrapper .list-inline-item{display:inline-block}.editor-styles-wrapper .list-inline-item:not(:last-child){margin-right:.5rem}.editor-styles-wrapper .initialism{font-size:90%;text-transform:uppercase}.editor-styles-wrapper .blockquote{margin-bottom:1rem;font-size:1.25rem}.editor-styles-wrapper .blockquote-footer{display:block;font-size:85%;color:#6c757d}.editor-styles-wrapper .blockquote-footer::before{content:"\2014\00A0"}.editor-styles-wrapper .img-fluid{max-width:100%;height:auto}.editor-styles-wrapper .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.editor-styles-wrapper .figure{display:inline-block}.editor-styles-wrapper .figure-img{margin-bottom:.5rem;line-height:1}.editor-styles-wrapper .figure-caption{font-size:90%;color:#6c757d}.editor-styles-wrapper code{font-size:100%;color:#ff0266;word-wrap:break-word}a>.editor-styles-wrapper code{color:inherit}.editor-styles-wrapper kbd{padding:.2rem .4rem;font-size:100%;color:#fff;background-color:#212529;border-radius:.2rem}.editor-styles-wrapper kbd kbd{padding:0;font-size:100%;font-weight:700}.editor-styles-wrapper pre{display:block;font-size:100%;color:#212529}.editor-styles-wrapper pre code{font-size:inherit;color:inherit;word-break:normal}.editor-styles-wrapper .pre-scrollable{max-height:340px;overflow-y:scroll}.editor-styles-wrapper .container,.editor-styles-wrapper .container-fluid,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl,.editor-styles-wrapper .container-xxl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm{max-width:540px}}@media (min-width: 768px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md{max-width:720px}}@media (min-width: 992px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg{max-width:960px}}@media (min-width: 1200px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl{max-width:1140px}}@media (min-width: 1400px){.editor-styles-wrapper .container,.editor-styles-wrapper .container-sm,.editor-styles-wrapper .container-md,.editor-styles-wrapper .container-lg,.editor-styles-wrapper .container-xl,.editor-styles-wrapper .container-xxl{max-width:1320px}}.editor-styles-wrapper .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.editor-styles-wrapper .no-gutters{margin-right:0;margin-left:0}.editor-styles-wrapper .no-gutters>.col,.editor-styles-wrapper .no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.editor-styles-wrapper .col-1,.editor-styles-wrapper .col-2,.editor-styles-wrapper .col-3,.editor-styles-wrapper .col-4,.editor-styles-wrapper .col-5,.editor-styles-wrapper .col-6,.editor-styles-wrapper .col-7,.editor-styles-wrapper .col-8,.editor-styles-wrapper .col-9,.editor-styles-wrapper .col-10,.editor-styles-wrapper .col-11,.editor-styles-wrapper .col-12,.editor-styles-wrapper .col,.editor-styles-wrapper .col-auto,.editor-styles-wrapper .col-sm-1,.editor-styles-wrapper .col-sm-2,.editor-styles-wrapper .col-sm-3,.editor-styles-wrapper .col-sm-4,.editor-styles-wrapper .col-sm-5,.editor-styles-wrapper .col-sm-6,.editor-styles-wrapper .col-sm-7,.editor-styles-wrapper .col-sm-8,.editor-styles-wrapper .col-sm-9,.editor-styles-wrapper .col-sm-10,.editor-styles-wrapper .col-sm-11,.editor-styles-wrapper .col-sm-12,.editor-styles-wrapper .col-sm,.editor-styles-wrapper .col-sm-auto,.editor-styles-wrapper .col-md-1,.editor-styles-wrapper .col-md-2,.editor-styles-wrapper .col-md-3,.editor-styles-wrapper .col-md-4,.editor-styles-wrapper .col-md-5,.editor-styles-wrapper .col-md-6,.editor-styles-wrapper .col-md-7,.editor-styles-wrapper .col-md-8,.editor-styles-wrapper .col-md-9,.editor-styles-wrapper .col-md-10,.editor-styles-wrapper .col-md-11,.editor-styles-wrapper .col-md-12,.editor-styles-wrapper .col-md,.editor-styles-wrapper .col-md-auto,.editor-styles-wrapper .col-lg-1,.editor-styles-wrapper .col-lg-2,.editor-styles-wrapper .col-lg-3,.editor-styles-wrapper .col-lg-4,.editor-styles-wrapper .col-lg-5,.editor-styles-wrapper .col-lg-6,.editor-styles-wrapper .col-lg-7,.editor-styles-wrapper .col-lg-8,.editor-styles-wrapper .col-lg-9,.editor-styles-wrapper .col-lg-10,.editor-styles-wrapper .col-lg-11,.editor-styles-wrapper .col-lg-12,.editor-styles-wrapper .col-lg,.editor-styles-wrapper .col-lg-auto,.editor-styles-wrapper .col-xl-1,.editor-styles-wrapper .col-xl-2,.editor-styles-wrapper .col-xl-3,.editor-styles-wrapper .col-xl-4,.editor-styles-wrapper .col-xl-5,.editor-styles-wrapper .col-xl-6,.editor-styles-wrapper .col-xl-7,.editor-styles-wrapper .col-xl-8,.editor-styles-wrapper .col-xl-9,.editor-styles-wrapper .col-xl-10,.editor-styles-wrapper .col-xl-11,.editor-styles-wrapper .col-xl-12,.editor-styles-wrapper .col-xl,.editor-styles-wrapper .col-xl-auto,.editor-styles-wrapper .col-xxl-1,.editor-styles-wrapper .col-xxl-2,.editor-styles-wrapper .col-xxl-3,.editor-styles-wrapper .col-xxl-4,.editor-styles-wrapper .col-xxl-5,.editor-styles-wrapper .col-xxl-6,.editor-styles-wrapper .col-xxl-7,.editor-styles-wrapper .col-xxl-8,.editor-styles-wrapper .col-xxl-9,.editor-styles-wrapper .col-xxl-10,.editor-styles-wrapper .col-xxl-11,.editor-styles-wrapper .col-xxl-12,.editor-styles-wrapper .col-xxl,.editor-styles-wrapper .col-xxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.editor-styles-wrapper .col{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-first{order:-1}.editor-styles-wrapper .order-last{order:13}.editor-styles-wrapper .order-0{order:0}.editor-styles-wrapper .order-1{order:1}.editor-styles-wrapper .order-2{order:2}.editor-styles-wrapper .order-3{order:3}.editor-styles-wrapper .order-4{order:4}.editor-styles-wrapper .order-5{order:5}.editor-styles-wrapper .order-6{order:6}.editor-styles-wrapper .order-7{order:7}.editor-styles-wrapper .order-8{order:8}.editor-styles-wrapper .order-9{order:9}.editor-styles-wrapper .order-10{order:10}.editor-styles-wrapper .order-11{order:11}.editor-styles-wrapper .order-12{order:12}.editor-styles-wrapper .offset-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-3{margin-left:25%}.editor-styles-wrapper .offset-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-6{margin-left:50%}.editor-styles-wrapper .offset-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-9{margin-left:75%}.editor-styles-wrapper .offset-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-11{margin-left:91.66666667%}@media (min-width: 576px){.editor-styles-wrapper .col-sm{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-sm-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-sm-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-sm-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-sm-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-sm-first{order:-1}.editor-styles-wrapper .order-sm-last{order:13}.editor-styles-wrapper .order-sm-0{order:0}.editor-styles-wrapper .order-sm-1{order:1}.editor-styles-wrapper .order-sm-2{order:2}.editor-styles-wrapper .order-sm-3{order:3}.editor-styles-wrapper .order-sm-4{order:4}.editor-styles-wrapper .order-sm-5{order:5}.editor-styles-wrapper .order-sm-6{order:6}.editor-styles-wrapper .order-sm-7{order:7}.editor-styles-wrapper .order-sm-8{order:8}.editor-styles-wrapper .order-sm-9{order:9}.editor-styles-wrapper .order-sm-10{order:10}.editor-styles-wrapper .order-sm-11{order:11}.editor-styles-wrapper .order-sm-12{order:12}.editor-styles-wrapper .offset-sm-0{margin-left:0}.editor-styles-wrapper .offset-sm-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-sm-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-sm-3{margin-left:25%}.editor-styles-wrapper .offset-sm-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-sm-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-sm-6{margin-left:50%}.editor-styles-wrapper .offset-sm-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-sm-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-sm-9{margin-left:75%}.editor-styles-wrapper .offset-sm-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-sm-11{margin-left:91.66666667%}}@media (min-width: 768px){.editor-styles-wrapper .col-md{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-md-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-md-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-md-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-md-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-md-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-md-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-md-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-md-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-md-first{order:-1}.editor-styles-wrapper .order-md-last{order:13}.editor-styles-wrapper .order-md-0{order:0}.editor-styles-wrapper .order-md-1{order:1}.editor-styles-wrapper .order-md-2{order:2}.editor-styles-wrapper .order-md-3{order:3}.editor-styles-wrapper .order-md-4{order:4}.editor-styles-wrapper .order-md-5{order:5}.editor-styles-wrapper .order-md-6{order:6}.editor-styles-wrapper .order-md-7{order:7}.editor-styles-wrapper .order-md-8{order:8}.editor-styles-wrapper .order-md-9{order:9}.editor-styles-wrapper .order-md-10{order:10}.editor-styles-wrapper .order-md-11{order:11}.editor-styles-wrapper .order-md-12{order:12}.editor-styles-wrapper .offset-md-0{margin-left:0}.editor-styles-wrapper .offset-md-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-md-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-md-3{margin-left:25%}.editor-styles-wrapper .offset-md-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-md-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-md-6{margin-left:50%}.editor-styles-wrapper .offset-md-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-md-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-md-9{margin-left:75%}.editor-styles-wrapper .offset-md-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-md-11{margin-left:91.66666667%}}@media (min-width: 992px){.editor-styles-wrapper .col-lg{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-lg-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-lg-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-lg-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-lg-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-lg-first{order:-1}.editor-styles-wrapper .order-lg-last{order:13}.editor-styles-wrapper .order-lg-0{order:0}.editor-styles-wrapper .order-lg-1{order:1}.editor-styles-wrapper .order-lg-2{order:2}.editor-styles-wrapper .order-lg-3{order:3}.editor-styles-wrapper .order-lg-4{order:4}.editor-styles-wrapper .order-lg-5{order:5}.editor-styles-wrapper .order-lg-6{order:6}.editor-styles-wrapper .order-lg-7{order:7}.editor-styles-wrapper .order-lg-8{order:8}.editor-styles-wrapper .order-lg-9{order:9}.editor-styles-wrapper .order-lg-10{order:10}.editor-styles-wrapper .order-lg-11{order:11}.editor-styles-wrapper .order-lg-12{order:12}.editor-styles-wrapper .offset-lg-0{margin-left:0}.editor-styles-wrapper .offset-lg-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-lg-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-lg-3{margin-left:25%}.editor-styles-wrapper .offset-lg-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-lg-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-lg-6{margin-left:50%}.editor-styles-wrapper .offset-lg-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-lg-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-lg-9{margin-left:75%}.editor-styles-wrapper .offset-lg-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-lg-11{margin-left:91.66666667%}}@media (min-width: 1200px){.editor-styles-wrapper .col-xl{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-xl-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-xl-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-xl-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-xl-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-xl-first{order:-1}.editor-styles-wrapper .order-xl-last{order:13}.editor-styles-wrapper .order-xl-0{order:0}.editor-styles-wrapper .order-xl-1{order:1}.editor-styles-wrapper .order-xl-2{order:2}.editor-styles-wrapper .order-xl-3{order:3}.editor-styles-wrapper .order-xl-4{order:4}.editor-styles-wrapper .order-xl-5{order:5}.editor-styles-wrapper .order-xl-6{order:6}.editor-styles-wrapper .order-xl-7{order:7}.editor-styles-wrapper .order-xl-8{order:8}.editor-styles-wrapper .order-xl-9{order:9}.editor-styles-wrapper .order-xl-10{order:10}.editor-styles-wrapper .order-xl-11{order:11}.editor-styles-wrapper .order-xl-12{order:12}.editor-styles-wrapper .offset-xl-0{margin-left:0}.editor-styles-wrapper .offset-xl-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-xl-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-xl-3{margin-left:25%}.editor-styles-wrapper .offset-xl-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-xl-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-xl-6{margin-left:50%}.editor-styles-wrapper .offset-xl-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-xl-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-xl-9{margin-left:75%}.editor-styles-wrapper .offset-xl-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-xl-11{margin-left:91.66666667%}}@media (min-width: 1400px){.editor-styles-wrapper .col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.editor-styles-wrapper .row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.editor-styles-wrapper .row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.editor-styles-wrapper .row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.editor-styles-wrapper .col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.editor-styles-wrapper .col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.editor-styles-wrapper .col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.editor-styles-wrapper .col-xxl-3{flex:0 0 25%;max-width:25%}.editor-styles-wrapper .col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.editor-styles-wrapper .col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.editor-styles-wrapper .col-xxl-6{flex:0 0 50%;max-width:50%}.editor-styles-wrapper .col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.editor-styles-wrapper .col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.editor-styles-wrapper .col-xxl-9{flex:0 0 75%;max-width:75%}.editor-styles-wrapper .col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.editor-styles-wrapper .col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.editor-styles-wrapper .col-xxl-12{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .order-xxl-first{order:-1}.editor-styles-wrapper .order-xxl-last{order:13}.editor-styles-wrapper .order-xxl-0{order:0}.editor-styles-wrapper .order-xxl-1{order:1}.editor-styles-wrapper .order-xxl-2{order:2}.editor-styles-wrapper .order-xxl-3{order:3}.editor-styles-wrapper .order-xxl-4{order:4}.editor-styles-wrapper .order-xxl-5{order:5}.editor-styles-wrapper .order-xxl-6{order:6}.editor-styles-wrapper .order-xxl-7{order:7}.editor-styles-wrapper .order-xxl-8{order:8}.editor-styles-wrapper .order-xxl-9{order:9}.editor-styles-wrapper .order-xxl-10{order:10}.editor-styles-wrapper .order-xxl-11{order:11}.editor-styles-wrapper .order-xxl-12{order:12}.editor-styles-wrapper .offset-xxl-0{margin-left:0}.editor-styles-wrapper .offset-xxl-1{margin-left:8.33333333%}.editor-styles-wrapper .offset-xxl-2{margin-left:16.66666667%}.editor-styles-wrapper .offset-xxl-3{margin-left:25%}.editor-styles-wrapper .offset-xxl-4{margin-left:33.33333333%}.editor-styles-wrapper .offset-xxl-5{margin-left:41.66666667%}.editor-styles-wrapper .offset-xxl-6{margin-left:50%}.editor-styles-wrapper .offset-xxl-7{margin-left:58.33333333%}.editor-styles-wrapper .offset-xxl-8{margin-left:66.66666667%}.editor-styles-wrapper .offset-xxl-9{margin-left:75%}.editor-styles-wrapper .offset-xxl-10{margin-left:83.33333333%}.editor-styles-wrapper .offset-xxl-11{margin-left:91.66666667%}}.editor-styles-wrapper .table{width:100%;margin-bottom:1rem;color:#212529}.editor-styles-wrapper .table th,.editor-styles-wrapper .table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.editor-styles-wrapper .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.editor-styles-wrapper .table tbody+tbody{border-top:2px solid #dee2e6}.editor-styles-wrapper .table-sm th,.editor-styles-wrapper .table-sm td{padding:.3rem}.editor-styles-wrapper .table-bordered{border:1px solid #dee2e6}.editor-styles-wrapper .table-bordered th,.editor-styles-wrapper .table-bordered td{border:1px solid #dee2e6}.editor-styles-wrapper .table-bordered thead th,.editor-styles-wrapper .table-bordered thead td{border-bottom-width:2px}.editor-styles-wrapper .table-borderless th,.editor-styles-wrapper .table-borderless td,.editor-styles-wrapper .table-borderless thead th,.editor-styles-wrapper .table-borderless tbody+tbody{border:0}.editor-styles-wrapper .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.editor-styles-wrapper .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-primary,.editor-styles-wrapper .table-primary>th,.editor-styles-wrapper .table-primary>td{background-color:#c0d8ed}.editor-styles-wrapper .table-primary th,.editor-styles-wrapper .table-primary td,.editor-styles-wrapper .table-primary thead th,.editor-styles-wrapper .table-primary tbody+tbody{border-color:#8ab6dd}.editor-styles-wrapper .table-hover .table-primary:hover{background-color:#accce7}.editor-styles-wrapper .table-hover .table-primary:hover>td,.editor-styles-wrapper .table-hover .table-primary:hover>th{background-color:#accce7}.editor-styles-wrapper .table-secondary,.editor-styles-wrapper .table-secondary>th,.editor-styles-wrapper .table-secondary>td{background-color:#d6d8db}.editor-styles-wrapper .table-secondary th,.editor-styles-wrapper .table-secondary td,.editor-styles-wrapper .table-secondary thead th,.editor-styles-wrapper .table-secondary tbody+tbody{border-color:#b3b7bb}.editor-styles-wrapper .table-hover .table-secondary:hover{background-color:#c8cbcf}.editor-styles-wrapper .table-hover .table-secondary:hover>td,.editor-styles-wrapper .table-hover .table-secondary:hover>th{background-color:#c8cbcf}.editor-styles-wrapper .table-success,.editor-styles-wrapper .table-success>th,.editor-styles-wrapper .table-success>td{background-color:#cbefcf}.editor-styles-wrapper .table-success th,.editor-styles-wrapper .table-success td,.editor-styles-wrapper .table-success thead th,.editor-styles-wrapper .table-success tbody+tbody{border-color:#9ee1a6}.editor-styles-wrapper .table-hover .table-success:hover{background-color:#b8e9bd}.editor-styles-wrapper .table-hover .table-success:hover>td,.editor-styles-wrapper .table-hover .table-success:hover>th{background-color:#b8e9bd}.editor-styles-wrapper .table-info,.editor-styles-wrapper .table-info>th,.editor-styles-wrapper .table-info>td{background-color:#bee5eb}.editor-styles-wrapper .table-info th,.editor-styles-wrapper .table-info td,.editor-styles-wrapper .table-info thead th,.editor-styles-wrapper .table-info tbody+tbody{border-color:#86cfda}.editor-styles-wrapper .table-hover .table-info:hover{background-color:#abdde5}.editor-styles-wrapper .table-hover .table-info:hover>td,.editor-styles-wrapper .table-hover .table-info:hover>th{background-color:#abdde5}.editor-styles-wrapper .table-warning,.editor-styles-wrapper .table-warning>th,.editor-styles-wrapper .table-warning>td{background-color:#ffeeba}.editor-styles-wrapper .table-warning th,.editor-styles-wrapper .table-warning td,.editor-styles-wrapper .table-warning thead th,.editor-styles-wrapper .table-warning tbody+tbody{border-color:#ffdf7e}.editor-styles-wrapper .table-hover .table-warning:hover{background-color:#ffe8a1}.editor-styles-wrapper .table-hover .table-warning:hover>td,.editor-styles-wrapper .table-hover .table-warning:hover>th{background-color:#ffe8a1}.editor-styles-wrapper .table-danger,.editor-styles-wrapper .table-danger>th,.editor-styles-wrapper .table-danger>td{background-color:#f5c6cb}.editor-styles-wrapper .table-danger th,.editor-styles-wrapper .table-danger td,.editor-styles-wrapper .table-danger thead th,.editor-styles-wrapper .table-danger tbody+tbody{border-color:#ed969e}.editor-styles-wrapper .table-hover .table-danger:hover{background-color:#f1b0b7}.editor-styles-wrapper .table-hover .table-danger:hover>td,.editor-styles-wrapper .table-hover .table-danger:hover>th{background-color:#f1b0b7}.editor-styles-wrapper .table-light,.editor-styles-wrapper .table-light>th,.editor-styles-wrapper .table-light>td{background-color:#fdfdfe}.editor-styles-wrapper .table-light th,.editor-styles-wrapper .table-light td,.editor-styles-wrapper .table-light thead th,.editor-styles-wrapper .table-light tbody+tbody{border-color:#fbfcfc}.editor-styles-wrapper .table-hover .table-light:hover{background-color:#ececf6}.editor-styles-wrapper .table-hover .table-light:hover>td,.editor-styles-wrapper .table-hover .table-light:hover>th{background-color:#ececf6}.editor-styles-wrapper .table-dark,.editor-styles-wrapper .table-dark>th,.editor-styles-wrapper .table-dark>td{background-color:#c6c8ca}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th,.editor-styles-wrapper .table-dark tbody+tbody{border-color:#95999c}.editor-styles-wrapper .table-hover .table-dark:hover{background-color:#b9bbbe}.editor-styles-wrapper .table-hover .table-dark:hover>td,.editor-styles-wrapper .table-hover .table-dark:hover>th{background-color:#b9bbbe}.editor-styles-wrapper .table-white,.editor-styles-wrapper .table-white>th,.editor-styles-wrapper .table-white>td{background-color:#fff}.editor-styles-wrapper .table-white th,.editor-styles-wrapper .table-white td,.editor-styles-wrapper .table-white thead th,.editor-styles-wrapper .table-white tbody+tbody{border-color:#fff}.editor-styles-wrapper .table-hover .table-white:hover{background-color:#f2f2f2}.editor-styles-wrapper .table-hover .table-white:hover>td,.editor-styles-wrapper .table-hover .table-white:hover>th{background-color:#f2f2f2}.editor-styles-wrapper .table-purple,.editor-styles-wrapper .table-purple>th,.editor-styles-wrapper .table-purple>td{background-color:#e8d6f5}.editor-styles-wrapper .table-purple th,.editor-styles-wrapper .table-purple td,.editor-styles-wrapper .table-purple thead th,.editor-styles-wrapper .table-purple tbody+tbody{border-color:#d4b4ed}.editor-styles-wrapper .table-hover .table-purple:hover{background-color:#ddc2f0}.editor-styles-wrapper .table-hover .table-purple:hover>td,.editor-styles-wrapper .table-hover .table-purple:hover>th{background-color:#ddc2f0}.editor-styles-wrapper .table-salmon,.editor-styles-wrapper .table-salmon>th,.editor-styles-wrapper .table-salmon>td{background-color:#ffe2da}.editor-styles-wrapper .table-salmon th,.editor-styles-wrapper .table-salmon td,.editor-styles-wrapper .table-salmon thead th,.editor-styles-wrapper .table-salmon tbody+tbody{border-color:#ffc9ba}.editor-styles-wrapper .table-hover .table-salmon:hover{background-color:#ffcec1}.editor-styles-wrapper .table-hover .table-salmon:hover>td,.editor-styles-wrapper .table-hover .table-salmon:hover>th{background-color:#ffcec1}.editor-styles-wrapper .table-cyan,.editor-styles-wrapper .table-cyan>th,.editor-styles-wrapper .table-cyan>td{background-color:#c6edff}.editor-styles-wrapper .table-cyan th,.editor-styles-wrapper .table-cyan td,.editor-styles-wrapper .table-cyan thead th,.editor-styles-wrapper .table-cyan tbody+tbody{border-color:#96ddff}.editor-styles-wrapper .table-hover .table-cyan:hover{background-color:#ade5ff}.editor-styles-wrapper .table-hover .table-cyan:hover>td,.editor-styles-wrapper .table-hover .table-cyan:hover>th{background-color:#ade5ff}.editor-styles-wrapper .table-gray,.editor-styles-wrapper .table-gray>th,.editor-styles-wrapper .table-gray>td{background-color:#f1f3f5}.editor-styles-wrapper .table-gray th,.editor-styles-wrapper .table-gray td,.editor-styles-wrapper .table-gray thead th,.editor-styles-wrapper .table-gray tbody+tbody{border-color:#e6e9ec}.editor-styles-wrapper .table-hover .table-gray:hover{background-color:#e2e6ea}.editor-styles-wrapper .table-hover .table-gray:hover>td,.editor-styles-wrapper .table-hover .table-gray:hover>th{background-color:#e2e6ea}.editor-styles-wrapper .table-gray-dark,.editor-styles-wrapper .table-gray-dark>th,.editor-styles-wrapper .table-gray-dark>td{background-color:#d6d8db}.editor-styles-wrapper .table-gray-dark th,.editor-styles-wrapper .table-gray-dark td,.editor-styles-wrapper .table-gray-dark thead th,.editor-styles-wrapper .table-gray-dark tbody+tbody{border-color:#b3b7bb}.editor-styles-wrapper .table-hover .table-gray-dark:hover{background-color:#c8cbcf}.editor-styles-wrapper .table-hover .table-gray-dark:hover>td,.editor-styles-wrapper .table-hover .table-gray-dark:hover>th{background-color:#c8cbcf}.editor-styles-wrapper .table-indigo,.editor-styles-wrapper .table-indigo>th,.editor-styles-wrapper .table-indigo>td{background-color:#cec4d6}.editor-styles-wrapper .table-indigo th,.editor-styles-wrapper .table-indigo td,.editor-styles-wrapper .table-indigo thead th,.editor-styles-wrapper .table-indigo tbody+tbody{border-color:#a491b3}.editor-styles-wrapper .table-hover .table-indigo:hover{background-color:#c2b5cc}.editor-styles-wrapper .table-hover .table-indigo:hover>td,.editor-styles-wrapper .table-hover .table-indigo:hover>th{background-color:#c2b5cc}.editor-styles-wrapper .table-orange,.editor-styles-wrapper .table-orange>th,.editor-styles-wrapper .table-orange>td{background-color:#feeab8}.editor-styles-wrapper .table-orange th,.editor-styles-wrapper .table-orange td,.editor-styles-wrapper .table-orange thead th,.editor-styles-wrapper .table-orange tbody+tbody{border-color:#fdd97a}.editor-styles-wrapper .table-hover .table-orange:hover{background-color:#fee39f}.editor-styles-wrapper .table-hover .table-orange:hover>td,.editor-styles-wrapper .table-hover .table-orange:hover>th{background-color:#fee39f}.editor-styles-wrapper .table-active,.editor-styles-wrapper .table-active>th,.editor-styles-wrapper .table-active>td{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table-hover .table-active:hover>td,.editor-styles-wrapper .table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.editor-styles-wrapper .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.editor-styles-wrapper .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.editor-styles-wrapper .table-dark{color:#fff;background-color:#343a40}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th{border-color:#454d55}.editor-styles-wrapper .table-dark.table-bordered{border:0}.editor-styles-wrapper .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.editor-styles-wrapper .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.editor-styles-wrapper .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.editor-styles-wrapper .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.editor-styles-wrapper .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.editor-styles-wrapper .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.editor-styles-wrapper .table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive-xxl>.table-bordered{border:0}}.editor-styles-wrapper .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.editor-styles-wrapper .table-responsive>.table-bordered{border:0}.editor-styles-wrapper .form-control{display:block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .form-control{transition:none}}.editor-styles-wrapper .form-control::-ms-expand{background-color:transparent;border:0}.editor-styles-wrapper .form-control:focus{color:#495057;background-color:#fff;border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .form-control::placeholder{color:#6c757d;opacity:1}.editor-styles-wrapper .form-control:disabled,.editor-styles-wrapper .form-control[readonly]{background-color:#e9ecef;opacity:1}.editor-styles-wrapper input[type="date"].form-control,.editor-styles-wrapper input[type="time"].form-control,.editor-styles-wrapper input[type="datetime-local"].form-control,.editor-styles-wrapper input[type="month"].form-control{appearance:none}.editor-styles-wrapper select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.editor-styles-wrapper select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.editor-styles-wrapper .form-control-file,.editor-styles-wrapper .form-control-range{display:block;width:100%}.editor-styles-wrapper .col-form-label{padding-top:calc(.45rem + 1px);padding-bottom:calc(.45rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.6}.editor-styles-wrapper .col-form-label-lg{padding-top:calc(.65rem + 1px);padding-bottom:calc(.65rem + 1px);font-size:1.15rem;line-height:1.5}.editor-styles-wrapper .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.editor-styles-wrapper .form-control-plaintext{display:block;width:100%;padding:.45rem 0;margin-bottom:0;font-size:1rem;line-height:1.6;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.editor-styles-wrapper .form-control-plaintext.form-control-sm,.editor-styles-wrapper .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.editor-styles-wrapper .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .form-control-lg{height:calc(1.5em + 1.3rem + 2px);padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper select.form-control[size],.editor-styles-wrapper select.form-control[multiple]{height:auto}.editor-styles-wrapper textarea.form-control{height:auto}.editor-styles-wrapper .form-group{margin-bottom:1rem}.editor-styles-wrapper .form-text{display:block;margin-top:.25rem}.editor-styles-wrapper .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.editor-styles-wrapper .form-row>.col,.editor-styles-wrapper .form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.editor-styles-wrapper .form-check{position:relative;display:block;padding-left:1.25rem}.editor-styles-wrapper .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.editor-styles-wrapper .form-check-input[disabled] ~ .form-check-label,.editor-styles-wrapper .form-check-input:disabled ~ .form-check-label{color:#6c757d}.editor-styles-wrapper .form-check-label{margin-bottom:0}.editor-styles-wrapper .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.editor-styles-wrapper .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.editor-styles-wrapper .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#44c553}.editor-styles-wrapper .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(68,197,83,0.9);border-radius:.25rem}.form-row>.col>.editor-styles-wrapper .valid-tooltip,.form-row>[class*="col-"]>.editor-styles-wrapper .valid-tooltip{left:5px}.was-validated .editor-styles-wrapper:valid ~ .valid-feedback,.was-validated .editor-styles-wrapper:valid ~ .valid-tooltip,.editor-styles-wrapper.is-valid ~ .valid-feedback,.editor-styles-wrapper.is-valid ~ .valid-tooltip{display:block}.was-validated .editor-styles-wrapper .form-control:valid,.editor-styles-wrapper .form-control.is-valid{border-color:#44c553;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .editor-styles-wrapper .form-control:valid:focus,.editor-styles-wrapper .form-control.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper select.form-control:valid,.editor-styles-wrapper select.form-control.is-valid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .editor-styles-wrapper textarea.form-control:valid,.editor-styles-wrapper textarea.form-control.is-valid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .editor-styles-wrapper .custom-select:valid,.editor-styles-wrapper .custom-select.is-valid{border-color:#44c553;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2344c553' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .editor-styles-wrapper .custom-select:valid:focus,.editor-styles-wrapper .custom-select.is-valid:focus{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper .form-check-input:valid ~ .form-check-label,.editor-styles-wrapper .form-check-input.is-valid ~ .form-check-label{color:#44c553}.was-validated .editor-styles-wrapper .form-check-input:valid ~ .valid-feedback,.was-validated .editor-styles-wrapper .form-check-input:valid ~ .valid-tooltip,.editor-styles-wrapper .form-check-input.is-valid ~ .valid-feedback,.editor-styles-wrapper .form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .editor-styles-wrapper .custom-control-input:valid ~ .custom-control-label,.editor-styles-wrapper .custom-control-input.is-valid ~ .custom-control-label{color:#44c553}.was-validated .editor-styles-wrapper .custom-control-input:valid ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid ~ .custom-control-label::before{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-control-input:valid:checked ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#6bd177;background-color:#6bd177}.was-validated .editor-styles-wrapper .custom-control-input:valid:focus ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.was-validated .editor-styles-wrapper .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-file-input:valid ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-valid ~ .custom-file-label{border-color:#44c553}.was-validated .editor-styles-wrapper .custom-file-input:valid:focus ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#44c553;box-shadow:0 0 0 .2rem rgba(68,197,83,0.25)}.editor-styles-wrapper .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:85%;color:#dc3545}.editor-styles-wrapper .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.6;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.form-row>.col>.editor-styles-wrapper .invalid-tooltip,.form-row>[class*="col-"]>.editor-styles-wrapper .invalid-tooltip{left:5px}.was-validated .editor-styles-wrapper:invalid ~ .invalid-feedback,.was-validated .editor-styles-wrapper:invalid ~ .invalid-tooltip,.editor-styles-wrapper.is-invalid ~ .invalid-feedback,.editor-styles-wrapper.is-invalid ~ .invalid-tooltip{display:block}.was-validated .editor-styles-wrapper .form-control:invalid,.editor-styles-wrapper .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.6em + .9rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.4em + .225rem) center;background-size:calc(.8em + .45rem) calc(.8em + .45rem)}.was-validated .editor-styles-wrapper .form-control:invalid:focus,.editor-styles-wrapper .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper select.form-control:invalid,.editor-styles-wrapper select.form-control.is-invalid{padding-right:4.8rem !important;background-position:right 2.4rem center}.was-validated .editor-styles-wrapper textarea.form-control:invalid,.editor-styles-wrapper textarea.form-control.is-invalid{padding-right:calc(1.6em + .9rem);background-position:top calc(.4em + .225rem) right calc(.4em + .225rem)}.was-validated .editor-styles-wrapper .custom-select:invalid,.editor-styles-wrapper .custom-select.is-invalid{border-color:#dc3545;padding-right:calc(.75em + 2.875rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 2.2rem/calc(.8em + .45rem) calc(.8em + .45rem) no-repeat}.was-validated .editor-styles-wrapper .custom-select:invalid:focus,.editor-styles-wrapper .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .form-check-label,.editor-styles-wrapper .form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .invalid-feedback,.was-validated .editor-styles-wrapper .form-check-input:invalid ~ .invalid-tooltip,.editor-styles-wrapper .form-check-input.is-invalid ~ .invalid-feedback,.editor-styles-wrapper .form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .editor-styles-wrapper .custom-control-input:invalid ~ .custom-control-label,.editor-styles-wrapper .custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .editor-styles-wrapper .custom-control-input:invalid ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-control-input:invalid:checked ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .editor-styles-wrapper .custom-control-input:invalid:focus ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .editor-styles-wrapper .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-file-input:invalid ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .editor-styles-wrapper .custom-file-input:invalid:focus ~ .custom-file-label,.editor-styles-wrapper .custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.editor-styles-wrapper .form-inline{display:flex;flex-flow:row wrap;align-items:center}.editor-styles-wrapper .form-inline .form-check{width:100%}@media (min-width: 576px){.editor-styles-wrapper .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.editor-styles-wrapper .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.editor-styles-wrapper .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.editor-styles-wrapper .form-inline .form-control-plaintext{display:inline-block}.editor-styles-wrapper .form-inline .input-group,.editor-styles-wrapper .form-inline .custom-select{width:auto}.editor-styles-wrapper .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.editor-styles-wrapper .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.editor-styles-wrapper .form-inline .custom-control{align-items:center;justify-content:center}.editor-styles-wrapper .form-inline .custom-control-label{margin-bottom:0}}.editor-styles-wrapper .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .btn{transition:none}}.editor-styles-wrapper .btn:hover{color:#212529;text-decoration:none}.editor-styles-wrapper .btn:focus,.editor-styles-wrapper .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .btn.disabled,.editor-styles-wrapper .btn:disabled{opacity:.65}.editor-styles-wrapper .btn:not(:disabled):not(.disabled){cursor:pointer}.editor-styles-wrapper a.btn.disabled,.editor-styles-wrapper fieldset:disabled a.btn{pointer-events:none}.editor-styles-wrapper .btn-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-primary:hover{color:#fff;background-color:#195f9d;border-color:#175892}.editor-styles-wrapper .btn-primary:focus,.editor-styles-wrapper .btn-primary.focus{color:#fff;background-color:#195f9d;border-color:#175892;box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.editor-styles-wrapper .btn-primary.disabled,.editor-styles-wrapper .btn-primary:disabled{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-primary.dropdown-toggle{color:#fff;background-color:#175892;border-color:#155287}.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-primary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,136,200,0.5)}.editor-styles-wrapper .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.editor-styles-wrapper .btn-secondary:focus,.editor-styles-wrapper .btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-secondary.disabled,.editor-styles-wrapper .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-success{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-success:hover{color:#fff;background-color:#36ad44;border-color:#33a340}.editor-styles-wrapper .btn-success:focus,.editor-styles-wrapper .btn-success.focus{color:#fff;background-color:#36ad44;border-color:#33a340;box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.editor-styles-wrapper .btn-success.disabled,.editor-styles-wrapper .btn-success:disabled{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-success.dropdown-toggle{color:#fff;background-color:#33a340;border-color:#309a3c}.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-success:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,206,109,0.5)}.editor-styles-wrapper .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.editor-styles-wrapper .btn-info:focus,.editor-styles-wrapper .btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.editor-styles-wrapper .btn-info.disabled,.editor-styles-wrapper .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-info:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.editor-styles-wrapper .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.editor-styles-wrapper .btn-warning:focus,.editor-styles-wrapper .btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.editor-styles-wrapper .btn-warning.disabled,.editor-styles-wrapper .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-warning:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.editor-styles-wrapper .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.editor-styles-wrapper .btn-danger:focus,.editor-styles-wrapper .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.editor-styles-wrapper .btn-danger.disabled,.editor-styles-wrapper .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-danger:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.editor-styles-wrapper .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.editor-styles-wrapper .btn-light:focus,.editor-styles-wrapper .btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.editor-styles-wrapper .btn-light.disabled,.editor-styles-wrapper .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-light:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.editor-styles-wrapper .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.editor-styles-wrapper .btn-dark:focus,.editor-styles-wrapper .btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.editor-styles-wrapper .btn-dark.disabled,.editor-styles-wrapper .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.editor-styles-wrapper .btn-white{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-white:hover{color:#212529;background-color:#ececec;border-color:#e6e6e6}.editor-styles-wrapper .btn-white:focus,.editor-styles-wrapper .btn-white.focus{color:#212529;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-white.disabled,.editor-styles-wrapper .btn-white:disabled{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-white.dropdown-toggle{color:#212529;background-color:#e6e6e6;border-color:#dfdfdf}.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-white:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-purple:hover{color:#fff;background-color:#9b4fd6;border-color:#9645d3}.editor-styles-wrapper .btn-purple:focus,.editor-styles-wrapper .btn-purple.focus{color:#fff;background-color:#9b4fd6;border-color:#9645d3;box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.editor-styles-wrapper .btn-purple.disabled,.editor-styles-wrapper .btn-purple:disabled{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-purple.dropdown-toggle{color:#fff;background-color:#9645d3;border-color:#903ad1}.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-purple:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(185,132,226,0.5)}.editor-styles-wrapper .btn-salmon{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-salmon:hover{color:#212529;background-color:#ff7954;border-color:#ff6f47}.editor-styles-wrapper .btn-salmon:focus,.editor-styles-wrapper .btn-salmon.focus{color:#212529;background-color:#ff7954;border-color:#ff6f47;box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.editor-styles-wrapper .btn-salmon.disabled,.editor-styles-wrapper .btn-salmon:disabled{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-salmon.dropdown-toggle{color:#fff;background-color:#ff6f47;border-color:#ff653a}.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-salmon:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,134,110,0.5)}.editor-styles-wrapper .btn-cyan{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-cyan:hover{color:#fff;background-color:#0fb1ff;border-color:#02acff}.editor-styles-wrapper .btn-cyan:focus,.editor-styles-wrapper .btn-cyan.focus{color:#fff;background-color:#0fb1ff;border-color:#02acff;box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.editor-styles-wrapper .btn-cyan.disabled,.editor-styles-wrapper .btn-cyan:disabled{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-cyan.dropdown-toggle{color:#fff;background-color:#02acff;border-color:#00a4f4}.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-cyan:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(50,166,223,0.5)}.editor-styles-wrapper .btn-gray{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-gray:hover{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4}.editor-styles-wrapper .btn-gray:focus,.editor-styles-wrapper .btn-gray.focus{color:#212529;background-color:#b8c1ca;border-color:#b1bbc4;box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.editor-styles-wrapper .btn-gray.disabled,.editor-styles-wrapper .btn-gray:disabled{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-gray.dropdown-toggle{color:#212529;background-color:#b1bbc4;border-color:#aab4bf}.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-gray:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,186,191,0.5)}.editor-styles-wrapper .btn-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-gray-dark:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.editor-styles-wrapper .btn-gray-dark:focus,.editor-styles-wrapper .btn-gray-dark.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-gray-dark.disabled,.editor-styles-wrapper .btn-gray-dark:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-gray-dark.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.editor-styles-wrapper .btn-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-indigo:hover{color:#fff;background-color:#3c2151;border-color:#351d48}.editor-styles-wrapper .btn-indigo:focus,.editor-styles-wrapper .btn-indigo.focus{color:#fff;background-color:#3c2151;border-color:#351d48;box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.editor-styles-wrapper .btn-indigo.disabled,.editor-styles-wrapper .btn-indigo:disabled{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-indigo.dropdown-toggle{color:#fff;background-color:#351d48;border-color:#2e1a3f}.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(106,76,130,0.5)}.editor-styles-wrapper .btn-orange{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-orange:hover{color:#212529;background-color:#d59900;border-color:#c89000}.editor-styles-wrapper .btn-orange:focus,.editor-styles-wrapper .btn-orange.focus{color:#212529;background-color:#d59900;border-color:#c89000;box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.editor-styles-wrapper .btn-orange.disabled,.editor-styles-wrapper .btn-orange:disabled{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-orange.dropdown-toggle{color:#fff;background-color:#c89000;border-color:#bb8700}.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-orange:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(218,159,6,0.5)}.editor-styles-wrapper .btn-outline-primary{color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:hover{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:focus,.editor-styles-wrapper .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .btn-outline-primary.disabled,.editor-styles-wrapper .btn-outline-primary:disabled{color:#1e73be;background-color:transparent}.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .btn-outline-secondary{color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:focus,.editor-styles-wrapper .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-secondary.disabled,.editor-styles-wrapper .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-success{color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:hover{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:focus,.editor-styles-wrapper .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .btn-outline-success.disabled,.editor-styles-wrapper .btn-outline-success:disabled{color:#44c553;background-color:transparent}.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-success.dropdown-toggle{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .btn-outline-info{color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:focus,.editor-styles-wrapper .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .btn-outline-info.disabled,.editor-styles-wrapper .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .btn-outline-warning{color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:focus,.editor-styles-wrapper .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .btn-outline-warning.disabled,.editor-styles-wrapper .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .btn-outline-danger{color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:focus,.editor-styles-wrapper .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .btn-outline-danger.disabled,.editor-styles-wrapper .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:focus,.editor-styles-wrapper .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .btn-outline-light.disabled,.editor-styles-wrapper .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .btn-outline-dark{color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:focus,.editor-styles-wrapper .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .btn-outline-dark.disabled,.editor-styles-wrapper .btn-outline-dark:disabled{color:#343a40;background-color:transparent}.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .btn-outline-white{color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:hover{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:focus,.editor-styles-wrapper .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-outline-white.disabled,.editor-styles-wrapper .btn-outline-white:disabled{color:#fff;background-color:transparent}.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-white.dropdown-toggle{color:#212529;background-color:#fff;border-color:#fff}.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-outline-purple{color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:hover{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:focus,.editor-styles-wrapper .btn-outline-purple.focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .btn-outline-purple.disabled,.editor-styles-wrapper .btn-outline-purple:disabled{color:#ad6edd;background-color:transparent}.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-purple.dropdown-toggle{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-purple:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .btn-outline-salmon{color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:hover{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:focus,.editor-styles-wrapper .btn-outline-salmon.focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .btn-outline-salmon.disabled,.editor-styles-wrapper .btn-outline-salmon:disabled{color:#ff977a;background-color:transparent}.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-salmon.dropdown-toggle{color:#212529;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-salmon:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-salmon.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .btn-outline-cyan{color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:hover{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:focus,.editor-styles-wrapper .btn-outline-cyan.focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .btn-outline-cyan.disabled,.editor-styles-wrapper .btn-outline-cyan:disabled{color:#35bdff;background-color:transparent}.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-cyan.dropdown-toggle{color:#212529;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-cyan.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .btn-outline-gray{color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:hover{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:focus,.editor-styles-wrapper .btn-outline-gray.focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .btn-outline-gray.disabled,.editor-styles-wrapper .btn-outline-gray:disabled{color:#ced4da;background-color:transparent}.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-gray.dropdown-toggle{color:#212529;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-gray:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-gray.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .btn-outline-gray-dark{color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:focus,.editor-styles-wrapper .btn-outline-gray-dark.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-gray-dark.disabled,.editor-styles-wrapper .btn-outline-gray-dark:disabled{color:#6c757d;background-color:transparent}.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-gray-dark.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-gray-dark:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-gray-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .btn-outline-indigo{color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:hover{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:focus,.editor-styles-wrapper .btn-outline-indigo.focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .btn-outline-indigo.disabled,.editor-styles-wrapper .btn-outline-indigo:disabled{color:#502c6c;background-color:transparent}.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-indigo.dropdown-toggle{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-indigo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .btn-outline-orange{color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:hover{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:focus,.editor-styles-wrapper .btn-outline-orange.focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .btn-outline-orange.disabled,.editor-styles-wrapper .btn-outline-orange:disabled{color:#fbb500;background-color:transparent}.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-outline-orange.dropdown-toggle{color:#212529;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-outline-orange:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-outline-orange.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .btn-link{font-weight:400;color:#1e73be;text-decoration:none}.editor-styles-wrapper .btn-link:hover{color:#144b7c;text-decoration:underline}.editor-styles-wrapper .btn-link:focus,.editor-styles-wrapper .btn-link.focus{text-decoration:underline}.editor-styles-wrapper .btn-link:disabled,.editor-styles-wrapper .btn-link.disabled{color:#6c757d;pointer-events:none}.editor-styles-wrapper .btn-lg,.editor-styles-wrapper .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .btn-sm,.editor-styles-wrapper .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .btn-block{display:block;width:100%}.editor-styles-wrapper .btn-block+.btn-block{margin-top:.5rem}.editor-styles-wrapper input[type="submit"].btn-block,.editor-styles-wrapper input[type="reset"].btn-block,.editor-styles-wrapper input[type="button"].btn-block{width:100%}.editor-styles-wrapper .fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .fade{transition:none}}.editor-styles-wrapper .fade:not(.show){opacity:0}.editor-styles-wrapper .collapse:not(.show){display:none}.editor-styles-wrapper .collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .collapsing{transition:none}}.editor-styles-wrapper .collapsing.width{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .collapsing.width{transition:none}}.editor-styles-wrapper .dropup,.editor-styles-wrapper .dropright,.editor-styles-wrapper .dropdown,.editor-styles-wrapper .dropleft{position:relative}.editor-styles-wrapper .dropdown-toggle{white-space:nowrap}.editor-styles-wrapper .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.editor-styles-wrapper .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.editor-styles-wrapper .dropdown-menu-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.editor-styles-wrapper .dropdown-menu-sm-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu-md-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.editor-styles-wrapper .dropdown-menu-lg-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.editor-styles-wrapper .dropdown-menu-xl-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1400px){.editor-styles-wrapper .dropdown-menu-xxl-left{right:auto;left:0}.editor-styles-wrapper .dropdown-menu-xxl-right{right:0;left:auto}}.editor-styles-wrapper .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.editor-styles-wrapper .dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.editor-styles-wrapper .dropup .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.editor-styles-wrapper .dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.editor-styles-wrapper .dropright .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropright .dropdown-toggle::after{vertical-align:0}.editor-styles-wrapper .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.editor-styles-wrapper .dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.editor-styles-wrapper .dropleft .dropdown-toggle::after{display:none}.editor-styles-wrapper .dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.editor-styles-wrapper .dropleft .dropdown-toggle:empty::after{margin-left:0}.editor-styles-wrapper .dropleft .dropdown-toggle::before{vertical-align:0}.editor-styles-wrapper .dropdown-menu[x-placement^="top"],.editor-styles-wrapper .dropdown-menu[x-placement^="right"],.editor-styles-wrapper .dropdown-menu[x-placement^="bottom"],.editor-styles-wrapper .dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.editor-styles-wrapper .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.editor-styles-wrapper .dropdown-item{display:block;width:100%;padding:.45rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.editor-styles-wrapper .dropdown-item:hover,.editor-styles-wrapper .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.editor-styles-wrapper .dropdown-item.active,.editor-styles-wrapper .dropdown-item:active{color:#fff;text-decoration:none;background-color:#1e73be}.editor-styles-wrapper .dropdown-item.disabled,.editor-styles-wrapper .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.editor-styles-wrapper .dropdown-menu.show{display:block}.editor-styles-wrapper .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.editor-styles-wrapper .dropdown-item-text{display:block;padding:.45rem 1.5rem;color:#212529}.editor-styles-wrapper .btn-group,.editor-styles-wrapper .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.editor-styles-wrapper .btn-group>.btn,.editor-styles-wrapper .btn-group-vertical>.btn{position:relative;flex:1 1 auto}.editor-styles-wrapper .btn-group>.btn:hover,.editor-styles-wrapper .btn-group-vertical>.btn:hover{z-index:1}.editor-styles-wrapper .btn-group>.btn:focus,.editor-styles-wrapper .btn-group>.btn:active,.editor-styles-wrapper .btn-group>.btn.active,.editor-styles-wrapper .btn-group-vertical>.btn:focus,.editor-styles-wrapper .btn-group-vertical>.btn:active,.editor-styles-wrapper .btn-group-vertical>.btn.active{z-index:1}.editor-styles-wrapper .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.editor-styles-wrapper .btn-toolbar .input-group{width:auto}.editor-styles-wrapper .btn-group>.btn:not(:first-child),.editor-styles-wrapper .btn-group>.btn-group:not(:first-child){margin-left:-1px}.editor-styles-wrapper .btn-group>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .btn-group>.btn:not(:first-child),.editor-styles-wrapper .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .dropdown-toggle-split{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .dropdown-toggle-split::after,.dropup .editor-styles-wrapper .dropdown-toggle-split::after,.dropright .editor-styles-wrapper .dropdown-toggle-split::after{margin-left:0}.dropleft .editor-styles-wrapper .dropdown-toggle-split::before{margin-right:0}.editor-styles-wrapper .btn-sm+.dropdown-toggle-split,.editor-styles-wrapper .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.editor-styles-wrapper .btn-lg+.dropdown-toggle-split,.editor-styles-wrapper .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.editor-styles-wrapper .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.editor-styles-wrapper .btn-group-vertical>.btn,.editor-styles-wrapper .btn-group-vertical>.btn-group{width:100%}.editor-styles-wrapper .btn-group-vertical>.btn:not(:first-child),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.editor-styles-wrapper .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .btn-group-vertical>.btn:not(:first-child),.editor-styles-wrapper .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .btn-group-toggle>.btn,.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn{margin-bottom:0}.editor-styles-wrapper .btn-group-toggle>.btn input[type="radio"],.editor-styles-wrapper .btn-group-toggle>.btn input[type="checkbox"],.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn input[type="radio"],.editor-styles-wrapper .btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.editor-styles-wrapper .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.editor-styles-wrapper .input-group>.form-control,.editor-styles-wrapper .input-group>.form-control-plaintext,.editor-styles-wrapper .input-group>.custom-select,.editor-styles-wrapper .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.editor-styles-wrapper .input-group>.form-control+.form-control,.editor-styles-wrapper .input-group>.form-control+.custom-select,.editor-styles-wrapper .input-group>.form-control+.custom-file,.editor-styles-wrapper .input-group>.form-control-plaintext+.form-control,.editor-styles-wrapper .input-group>.form-control-plaintext+.custom-select,.editor-styles-wrapper .input-group>.form-control-plaintext+.custom-file,.editor-styles-wrapper .input-group>.custom-select+.form-control,.editor-styles-wrapper .input-group>.custom-select+.custom-select,.editor-styles-wrapper .input-group>.custom-select+.custom-file,.editor-styles-wrapper .input-group>.custom-file+.form-control,.editor-styles-wrapper .input-group>.custom-file+.custom-select,.editor-styles-wrapper .input-group>.custom-file+.custom-file{margin-left:-1px}.editor-styles-wrapper .input-group>.form-control:focus,.editor-styles-wrapper .input-group>.custom-select:focus,.editor-styles-wrapper .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.editor-styles-wrapper .input-group>.custom-file .custom-file-input:focus{z-index:4}.editor-styles-wrapper .input-group>.form-control:not(:first-child),.editor-styles-wrapper .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .input-group>.custom-file{display:flex;align-items:center}.editor-styles-wrapper .input-group>.custom-file:not(:last-child) .custom-file-label,.editor-styles-wrapper .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .input-group:not(.has-validation)>.form-control:not(:last-child),.editor-styles-wrapper .input-group:not(.has-validation)>.custom-select:not(:last-child),.editor-styles-wrapper .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.editor-styles-wrapper .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group.has-validation>.form-control:nth-last-child(n+3),.editor-styles-wrapper .input-group.has-validation>.custom-select:nth-last-child(n+3),.editor-styles-wrapper .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.editor-styles-wrapper .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group-prepend,.editor-styles-wrapper .input-group-append{display:flex}.editor-styles-wrapper .input-group-prepend .btn,.editor-styles-wrapper .input-group-append .btn{position:relative;z-index:2}.editor-styles-wrapper .input-group-prepend .btn:focus,.editor-styles-wrapper .input-group-append .btn:focus{z-index:3}.editor-styles-wrapper .input-group-prepend .btn+.btn,.editor-styles-wrapper .input-group-prepend .btn+.input-group-text,.editor-styles-wrapper .input-group-prepend .input-group-text+.input-group-text,.editor-styles-wrapper .input-group-prepend .input-group-text+.btn,.editor-styles-wrapper .input-group-append .btn+.btn,.editor-styles-wrapper .input-group-append .btn+.input-group-text,.editor-styles-wrapper .input-group-append .input-group-text+.input-group-text,.editor-styles-wrapper .input-group-append .input-group-text+.btn{margin-left:-1px}.editor-styles-wrapper .input-group-prepend{margin-right:-1px}.editor-styles-wrapper .input-group-append{margin-left:-1px}.editor-styles-wrapper .input-group-text{display:flex;align-items:center;padding:.45rem 1.2rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.6;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.editor-styles-wrapper .input-group-text input[type="radio"],.editor-styles-wrapper .input-group-text input[type="checkbox"]{margin-top:0}.editor-styles-wrapper .input-group-lg>.form-control:not(textarea),.editor-styles-wrapper .input-group-lg>.custom-select{height:calc(1.5em + 1.3rem + 2px)}.editor-styles-wrapper .input-group-lg>.form-control,.editor-styles-wrapper .input-group-lg>.custom-select,.editor-styles-wrapper .input-group-lg>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group-lg>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group-lg>.input-group-prepend>.btn,.editor-styles-wrapper .input-group-lg>.input-group-append>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .input-group-sm>.form-control:not(textarea),.editor-styles-wrapper .input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.editor-styles-wrapper .input-group-sm>.form-control,.editor-styles-wrapper .input-group-sm>.custom-select,.editor-styles-wrapper .input-group-sm>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group-sm>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group-sm>.input-group-prepend>.btn,.editor-styles-wrapper .input-group-sm>.input-group-append>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .input-group-lg>.custom-select,.editor-styles-wrapper .input-group-sm>.custom-select{padding-right:2.2rem}.editor-styles-wrapper .input-group>.input-group-prepend>.btn,.editor-styles-wrapper .input-group>.input-group-prepend>.input-group-text,.editor-styles-wrapper .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.editor-styles-wrapper .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.editor-styles-wrapper .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.editor-styles-wrapper .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.editor-styles-wrapper .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.editor-styles-wrapper .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .input-group>.input-group-append>.btn,.editor-styles-wrapper .input-group>.input-group-append>.input-group-text,.editor-styles-wrapper .input-group>.input-group-prepend:not(:first-child)>.btn,.editor-styles-wrapper .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.editor-styles-wrapper .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.editor-styles-wrapper .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .custom-control{position:relative;z-index:1;display:block;min-height:1.6rem;padding-left:1.5rem;print-color-adjust:exact}.editor-styles-wrapper .custom-control-inline{display:inline-flex;margin-right:1rem}.editor-styles-wrapper .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.3rem;opacity:0}.editor-styles-wrapper .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#1e73be;background-color:#1e73be}.editor-styles-wrapper .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#73b1e9}.editor-styles-wrapper .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#9fcaf0;border-color:#9fcaf0}.editor-styles-wrapper .custom-control-input[disabled] ~ .custom-control-label,.editor-styles-wrapper .custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.editor-styles-wrapper .custom-control-input[disabled] ~ .custom-control-label::before,.editor-styles-wrapper .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.editor-styles-wrapper .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.editor-styles-wrapper .custom-control-label::before{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.editor-styles-wrapper .custom-control-label::after{position:absolute;top:.3rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.editor-styles-wrapper .custom-checkbox .custom-control-label::before{border-radius:.25rem}.editor-styles-wrapper .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#1e73be;background-color:#1e73be}.editor-styles-wrapper .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-radio .custom-control-label::before{border-radius:50%}.editor-styles-wrapper .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.editor-styles-wrapper .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-switch{padding-left:2.25rem}.editor-styles-wrapper .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.editor-styles-wrapper .custom-switch .custom-control-label::after{top:calc(.3rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-switch .custom-control-label::after{transition:none}}.editor-styles-wrapper .custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.editor-styles-wrapper .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(30,115,190,0.5)}.editor-styles-wrapper .custom-select{display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);padding:.45rem 2.2rem .45rem 1.2rem;font-size:1rem;font-weight:300;line-height:1.6;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.editor-styles-wrapper .custom-select:focus{border-color:#73b1e9;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.editor-styles-wrapper .custom-select[multiple],.editor-styles-wrapper .custom-select[size]:not([size="1"]){height:auto;padding-right:1.2rem;background-image:none}.editor-styles-wrapper .custom-select:disabled{color:#6c757d;background-color:#e9ecef}.editor-styles-wrapper .custom-select::-ms-expand{display:none}.editor-styles-wrapper .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.editor-styles-wrapper .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:1rem;font-size:.875rem}.editor-styles-wrapper .custom-select-lg{height:calc(1.5em + 1.3rem + 2px);padding-top:.65rem;padding-bottom:.65rem;padding-left:2rem;font-size:1.15rem}.editor-styles-wrapper .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.6em + .9rem + 2px);margin-bottom:0}.editor-styles-wrapper .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.6em + .9rem + 2px);margin:0;overflow:hidden;opacity:0}.editor-styles-wrapper .custom-file-input:focus ~ .custom-file-label{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-file-input[disabled] ~ .custom-file-label,.editor-styles-wrapper .custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.editor-styles-wrapper .custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.editor-styles-wrapper .custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.editor-styles-wrapper .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.6em + .9rem + 2px);padding:.45rem 1.2rem;overflow:hidden;font-weight:300;line-height:1.6;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.editor-styles-wrapper .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.6em + .9rem);padding:.45rem 1.2rem;line-height:1.6;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.editor-styles-wrapper .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.editor-styles-wrapper .custom-range:focus{outline:0}.editor-styles-wrapper .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .custom-range::-moz-focus-outer{border:0}.editor-styles-wrapper .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-webkit-slider-thumb{transition:none}}.editor-styles-wrapper .custom-range::-webkit-slider-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.editor-styles-wrapper .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-moz-range-thumb{transition:none}}.editor-styles-wrapper .custom-range::-moz-range-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.editor-styles-wrapper .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1e73be;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-range::-ms-thumb{transition:none}}.editor-styles-wrapper .custom-range::-ms-thumb:active{background-color:#9fcaf0}.editor-styles-wrapper .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.editor-styles-wrapper .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.editor-styles-wrapper .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.editor-styles-wrapper .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.editor-styles-wrapper .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-range:disabled::-moz-range-track{cursor:default}.editor-styles-wrapper .custom-range:disabled::-ms-thumb{background-color:#adb5bd}.editor-styles-wrapper .custom-control-label::before,.editor-styles-wrapper .custom-file-label,.editor-styles-wrapper .custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .custom-control-label::before,.editor-styles-wrapper .custom-file-label,.editor-styles-wrapper .custom-select{transition:none}}.editor-styles-wrapper .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.editor-styles-wrapper .nav-link{display:block;padding:.8rem 1rem}.editor-styles-wrapper .nav-link:hover,.editor-styles-wrapper .nav-link:focus{text-decoration:none}.editor-styles-wrapper .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.editor-styles-wrapper .nav-tabs{border-bottom:1px solid #dee2e6}.editor-styles-wrapper .nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.editor-styles-wrapper .nav-tabs .nav-link:hover,.editor-styles-wrapper .nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.editor-styles-wrapper .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.editor-styles-wrapper .nav-tabs .nav-link.active,.editor-styles-wrapper .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.editor-styles-wrapper .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.editor-styles-wrapper .nav-pills .nav-link.active,.editor-styles-wrapper .nav-pills .show>.nav-link{color:#fff;background-color:#1e73be}.editor-styles-wrapper .nav-fill>.nav-link,.editor-styles-wrapper .nav-fill .nav-item{flex:1 1 auto;text-align:center}.editor-styles-wrapper .nav-justified>.nav-link,.editor-styles-wrapper .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.editor-styles-wrapper .tab-content>.tab-pane{display:none}.editor-styles-wrapper .tab-content>.active{display:block}.editor-styles-wrapper .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.editor-styles-wrapper .navbar .container,.editor-styles-wrapper .navbar .container-fluid,.editor-styles-wrapper .navbar .container-sm,.editor-styles-wrapper .navbar .container-md,.editor-styles-wrapper .navbar .container-lg,.editor-styles-wrapper .navbar .container-xl,.editor-styles-wrapper .navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.editor-styles-wrapper .navbar-brand{display:inline-block;padding-top:.68rem;padding-bottom:.68rem;margin-right:1rem;font-size:1.15rem;line-height:inherit;white-space:nowrap}.editor-styles-wrapper .navbar-brand:hover,.editor-styles-wrapper .navbar-brand:focus{text-decoration:none}.editor-styles-wrapper .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.editor-styles-wrapper .navbar-nav .nav-link{padding-right:0;padding-left:0}.editor-styles-wrapper .navbar-nav .dropdown-menu{position:static;float:none}.editor-styles-wrapper .navbar-text{display:inline-block;padding-top:.8rem;padding-bottom:.8rem}.editor-styles-wrapper .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.editor-styles-wrapper .navbar-toggler{padding:.25rem .75rem;font-size:1.15rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.editor-styles-wrapper .navbar-toggler:hover,.editor-styles-wrapper .navbar-toggler:focus{text-decoration:none}.editor-styles-wrapper .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.editor-styles-wrapper .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.editor-styles-wrapper .navbar-expand-sm>.container,.editor-styles-wrapper .navbar-expand-sm>.container-fluid,.editor-styles-wrapper .navbar-expand-sm>.container-sm,.editor-styles-wrapper .navbar-expand-sm>.container-md,.editor-styles-wrapper .navbar-expand-sm>.container-lg,.editor-styles-wrapper .navbar-expand-sm>.container-xl,.editor-styles-wrapper .navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.editor-styles-wrapper .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-sm .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-sm .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-sm>.container,.editor-styles-wrapper .navbar-expand-sm>.container-fluid,.editor-styles-wrapper .navbar-expand-sm>.container-sm,.editor-styles-wrapper .navbar-expand-sm>.container-md,.editor-styles-wrapper .navbar-expand-sm>.container-lg,.editor-styles-wrapper .navbar-expand-sm>.container-xl,.editor-styles-wrapper .navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-sm .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.editor-styles-wrapper .navbar-expand-md>.container,.editor-styles-wrapper .navbar-expand-md>.container-fluid,.editor-styles-wrapper .navbar-expand-md>.container-sm,.editor-styles-wrapper .navbar-expand-md>.container-md,.editor-styles-wrapper .navbar-expand-md>.container-lg,.editor-styles-wrapper .navbar-expand-md>.container-xl,.editor-styles-wrapper .navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.editor-styles-wrapper .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-md .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-md .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-md>.container,.editor-styles-wrapper .navbar-expand-md>.container-fluid,.editor-styles-wrapper .navbar-expand-md>.container-sm,.editor-styles-wrapper .navbar-expand-md>.container-md,.editor-styles-wrapper .navbar-expand-md>.container-lg,.editor-styles-wrapper .navbar-expand-md>.container-xl,.editor-styles-wrapper .navbar-expand-md>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-md .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.editor-styles-wrapper .navbar-expand-lg>.container,.editor-styles-wrapper .navbar-expand-lg>.container-fluid,.editor-styles-wrapper .navbar-expand-lg>.container-sm,.editor-styles-wrapper .navbar-expand-lg>.container-md,.editor-styles-wrapper .navbar-expand-lg>.container-lg,.editor-styles-wrapper .navbar-expand-lg>.container-xl,.editor-styles-wrapper .navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.editor-styles-wrapper .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-lg .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-lg .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-lg>.container,.editor-styles-wrapper .navbar-expand-lg>.container-fluid,.editor-styles-wrapper .navbar-expand-lg>.container-sm,.editor-styles-wrapper .navbar-expand-lg>.container-md,.editor-styles-wrapper .navbar-expand-lg>.container-lg,.editor-styles-wrapper .navbar-expand-lg>.container-xl,.editor-styles-wrapper .navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-lg .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.editor-styles-wrapper .navbar-expand-xl>.container,.editor-styles-wrapper .navbar-expand-xl>.container-fluid,.editor-styles-wrapper .navbar-expand-xl>.container-sm,.editor-styles-wrapper .navbar-expand-xl>.container-md,.editor-styles-wrapper .navbar-expand-xl>.container-lg,.editor-styles-wrapper .navbar-expand-xl>.container-xl,.editor-styles-wrapper .navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.editor-styles-wrapper .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-xl .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-xl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-xl>.container,.editor-styles-wrapper .navbar-expand-xl>.container-fluid,.editor-styles-wrapper .navbar-expand-xl>.container-sm,.editor-styles-wrapper .navbar-expand-xl>.container-md,.editor-styles-wrapper .navbar-expand-xl>.container-lg,.editor-styles-wrapper .navbar-expand-xl>.container-xl,.editor-styles-wrapper .navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-xl .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.editor-styles-wrapper .navbar-expand-xxl>.container,.editor-styles-wrapper .navbar-expand-xxl>.container-fluid,.editor-styles-wrapper .navbar-expand-xxl>.container-sm,.editor-styles-wrapper .navbar-expand-xxl>.container-md,.editor-styles-wrapper .navbar-expand-xxl>.container-lg,.editor-styles-wrapper .navbar-expand-xxl>.container-xl,.editor-styles-wrapper .navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.editor-styles-wrapper .navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand-xxl>.container,.editor-styles-wrapper .navbar-expand-xxl>.container-fluid,.editor-styles-wrapper .navbar-expand-xxl>.container-sm,.editor-styles-wrapper .navbar-expand-xxl>.container-md,.editor-styles-wrapper .navbar-expand-xxl>.container-lg,.editor-styles-wrapper .navbar-expand-xxl>.container-xl,.editor-styles-wrapper .navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand-xxl .navbar-toggler{display:none}}.editor-styles-wrapper .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.editor-styles-wrapper .navbar-expand>.container,.editor-styles-wrapper .navbar-expand>.container-fluid,.editor-styles-wrapper .navbar-expand>.container-sm,.editor-styles-wrapper .navbar-expand>.container-md,.editor-styles-wrapper .navbar-expand>.container-lg,.editor-styles-wrapper .navbar-expand>.container-xl,.editor-styles-wrapper .navbar-expand>.container-xxl{padding-right:0;padding-left:0}.editor-styles-wrapper .navbar-expand .navbar-nav{flex-direction:row}.editor-styles-wrapper .navbar-expand .navbar-nav .dropdown-menu{position:absolute}.editor-styles-wrapper .navbar-expand .navbar-nav .nav-link{padding-right:.9rem;padding-left:.9rem}.editor-styles-wrapper .navbar-expand>.container,.editor-styles-wrapper .navbar-expand>.container-fluid,.editor-styles-wrapper .navbar-expand>.container-sm,.editor-styles-wrapper .navbar-expand>.container-md,.editor-styles-wrapper .navbar-expand>.container-lg,.editor-styles-wrapper .navbar-expand>.container-xl,.editor-styles-wrapper .navbar-expand>.container-xxl{flex-wrap:nowrap}.editor-styles-wrapper .navbar-expand .navbar-nav-scroll{overflow:visible}.editor-styles-wrapper .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.editor-styles-wrapper .navbar-expand .navbar-toggler{display:none}.editor-styles-wrapper .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-brand:hover,.editor-styles-wrapper .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.editor-styles-wrapper .navbar-light .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.editor-styles-wrapper .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.editor-styles-wrapper .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-text a:hover,.editor-styles-wrapper .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-dark .navbar-brand{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-brand:hover,.editor-styles-wrapper .navbar-dark .navbar-brand:focus{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.85)}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link:focus{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.editor-styles-wrapper .navbar-dark .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-dark .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-dark .navbar-nav .nav-link.active{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-toggler{color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.1)}.editor-styles-wrapper .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.editor-styles-wrapper .navbar-dark .navbar-text{color:rgba(255,255,255,0.85)}.editor-styles-wrapper .navbar-dark .navbar-text a{color:#fff}.editor-styles-wrapper .navbar-dark .navbar-text a:hover,.editor-styles-wrapper .navbar-dark .navbar-text a:focus{color:#fff}.editor-styles-wrapper .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.editor-styles-wrapper .card>hr{margin-right:0;margin-left:0}.editor-styles-wrapper .card>.list-group{border-top:inherit;border-bottom:inherit}.editor-styles-wrapper .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card>.card-header+.list-group,.editor-styles-wrapper .card>.list-group+.card-footer{border-top:0}.editor-styles-wrapper .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.editor-styles-wrapper .card-title{margin-bottom:.75rem}.editor-styles-wrapper .card-subtitle{margin-top:-.375rem;margin-bottom:0}.editor-styles-wrapper .card-text:last-child{margin-bottom:0}.editor-styles-wrapper .card-link:hover{text-decoration:none}.editor-styles-wrapper .card-link+.card-link{margin-left:1.25rem}.editor-styles-wrapper .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.editor-styles-wrapper .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.editor-styles-wrapper .card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.editor-styles-wrapper .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.editor-styles-wrapper .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-top,.editor-styles-wrapper .card-img-bottom{flex-shrink:0;width:100%}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-img,.editor-styles-wrapper .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.editor-styles-wrapper .card-deck .card{margin-bottom:15px}@media (min-width: 576px){.editor-styles-wrapper .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.editor-styles-wrapper .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.editor-styles-wrapper .card-group>.card{margin-bottom:15px}@media (min-width: 576px){.editor-styles-wrapper .card-group{display:flex;flex-flow:row wrap}.editor-styles-wrapper .card-group>.card{flex:1 0 0%;margin-bottom:0}.editor-styles-wrapper .card-group>.card+.card{margin-left:0;border-left:0}.editor-styles-wrapper .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:last-child) .card-img-top,.editor-styles-wrapper .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:last-child) .card-img-bottom,.editor-styles-wrapper .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child) .card-img-top,.editor-styles-wrapper .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.editor-styles-wrapper .card-group>.card:not(:first-child) .card-img-bottom,.editor-styles-wrapper .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.editor-styles-wrapper .card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.editor-styles-wrapper .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.editor-styles-wrapper .card-columns .card{display:inline-block;width:100%}}.editor-styles-wrapper .accordion{overflow-anchor:none}.editor-styles-wrapper .accordion>.card{overflow:hidden}.editor-styles-wrapper .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.editor-styles-wrapper .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.editor-styles-wrapper .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.editor-styles-wrapper .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.editor-styles-wrapper .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.editor-styles-wrapper .breadcrumb-item.active{color:#6c757d}.editor-styles-wrapper .pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.editor-styles-wrapper .page-link{position:relative;display:block;padding:.75rem 1rem;margin-left:-1px;line-height:1.25;color:#1e73be;background-color:#fff;border:1px solid #dee2e6}.editor-styles-wrapper .page-link:hover{z-index:2;color:#144b7c;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.editor-styles-wrapper .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.editor-styles-wrapper .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.editor-styles-wrapper .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.editor-styles-wrapper .page-item.active .page-link{z-index:3;color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.editor-styles-wrapper .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.15rem;line-height:1.5}.editor-styles-wrapper .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.editor-styles-wrapper .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.editor-styles-wrapper .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.editor-styles-wrapper .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.editor-styles-wrapper .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.editor-styles-wrapper .badge{display:inline-block;padding:.25em .4em;font-size:84%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .badge{transition:none}}.editor-styles-wrapper a.badge:hover,.editor-styles-wrapper a.badge:focus{text-decoration:none}.editor-styles-wrapper .badge:empty{display:none}.editor-styles-wrapper .btn .badge{position:relative;top:-1px}.editor-styles-wrapper .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.editor-styles-wrapper .badge-primary{color:#fff;background-color:#1e73be}.editor-styles-wrapper a.badge-primary:hover,.editor-styles-wrapper a.badge-primary:focus{color:#fff;background-color:#175892}.editor-styles-wrapper a.badge-primary:focus,.editor-styles-wrapper a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,115,190,0.5)}.editor-styles-wrapper .badge-secondary{color:#fff;background-color:#6c757d}.editor-styles-wrapper a.badge-secondary:hover,.editor-styles-wrapper a.badge-secondary:focus{color:#fff;background-color:#545b62}.editor-styles-wrapper a.badge-secondary:focus,.editor-styles-wrapper a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .badge-success{color:#fff;background-color:#44c553}.editor-styles-wrapper a.badge-success:hover,.editor-styles-wrapper a.badge-success:focus{color:#fff;background-color:#33a340}.editor-styles-wrapper a.badge-success:focus,.editor-styles-wrapper a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,197,83,0.5)}.editor-styles-wrapper .badge-info{color:#fff;background-color:#17a2b8}.editor-styles-wrapper a.badge-info:hover,.editor-styles-wrapper a.badge-info:focus{color:#fff;background-color:#117a8b}.editor-styles-wrapper a.badge-info:focus,.editor-styles-wrapper a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.editor-styles-wrapper .badge-warning{color:#212529;background-color:#ffc107}.editor-styles-wrapper a.badge-warning:hover,.editor-styles-wrapper a.badge-warning:focus{color:#212529;background-color:#d39e00}.editor-styles-wrapper a.badge-warning:focus,.editor-styles-wrapper a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.editor-styles-wrapper .badge-danger{color:#fff;background-color:#dc3545}.editor-styles-wrapper a.badge-danger:hover,.editor-styles-wrapper a.badge-danger:focus{color:#fff;background-color:#bd2130}.editor-styles-wrapper a.badge-danger:focus,.editor-styles-wrapper a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.editor-styles-wrapper .badge-light{color:#212529;background-color:#f8f9fa}.editor-styles-wrapper a.badge-light:hover,.editor-styles-wrapper a.badge-light:focus{color:#212529;background-color:#dae0e5}.editor-styles-wrapper a.badge-light:focus,.editor-styles-wrapper a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.editor-styles-wrapper .badge-dark{color:#fff;background-color:#343a40}.editor-styles-wrapper a.badge-dark:hover,.editor-styles-wrapper a.badge-dark:focus{color:#fff;background-color:#1d2124}.editor-styles-wrapper a.badge-dark:focus,.editor-styles-wrapper a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.editor-styles-wrapper .badge-white{color:#212529;background-color:#fff}.editor-styles-wrapper a.badge-white:hover,.editor-styles-wrapper a.badge-white:focus{color:#212529;background-color:#e6e6e6}.editor-styles-wrapper a.badge-white:focus,.editor-styles-wrapper a.badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .badge-purple{color:#fff;background-color:#ad6edd}.editor-styles-wrapper a.badge-purple:hover,.editor-styles-wrapper a.badge-purple:focus{color:#fff;background-color:#9645d3}.editor-styles-wrapper a.badge-purple:focus,.editor-styles-wrapper a.badge-purple.focus{outline:0;box-shadow:0 0 0 .2rem rgba(173,110,221,0.5)}.editor-styles-wrapper .badge-salmon{color:#212529;background-color:#ff977a}.editor-styles-wrapper a.badge-salmon:hover,.editor-styles-wrapper a.badge-salmon:focus{color:#212529;background-color:#ff6f47}.editor-styles-wrapper a.badge-salmon:focus,.editor-styles-wrapper a.badge-salmon.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,151,122,0.5)}.editor-styles-wrapper .badge-cyan{color:#212529;background-color:#35bdff}.editor-styles-wrapper a.badge-cyan:hover,.editor-styles-wrapper a.badge-cyan:focus{color:#212529;background-color:#02acff}.editor-styles-wrapper a.badge-cyan:focus,.editor-styles-wrapper a.badge-cyan.focus{outline:0;box-shadow:0 0 0 .2rem rgba(53,189,255,0.5)}.editor-styles-wrapper .badge-gray{color:#212529;background-color:#ced4da}.editor-styles-wrapper a.badge-gray:hover,.editor-styles-wrapper a.badge-gray:focus{color:#212529;background-color:#b1bbc4}.editor-styles-wrapper a.badge-gray:focus,.editor-styles-wrapper a.badge-gray.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,212,218,0.5)}.editor-styles-wrapper .badge-gray-dark{color:#fff;background-color:#6c757d}.editor-styles-wrapper a.badge-gray-dark:hover,.editor-styles-wrapper a.badge-gray-dark:focus{color:#fff;background-color:#545b62}.editor-styles-wrapper a.badge-gray-dark:focus,.editor-styles-wrapper a.badge-gray-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.editor-styles-wrapper .badge-indigo{color:#fff;background-color:#502c6c}.editor-styles-wrapper a.badge-indigo:hover,.editor-styles-wrapper a.badge-indigo:focus{color:#fff;background-color:#351d48}.editor-styles-wrapper a.badge-indigo:focus,.editor-styles-wrapper a.badge-indigo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(80,44,108,0.5)}.editor-styles-wrapper .badge-orange{color:#212529;background-color:#fbb500}.editor-styles-wrapper a.badge-orange:hover,.editor-styles-wrapper a.badge-orange:focus{color:#212529;background-color:#c89000}.editor-styles-wrapper a.badge-orange:focus,.editor-styles-wrapper a.badge-orange.focus{outline:0;box-shadow:0 0 0 .2rem rgba(251,181,0,0.5)}.editor-styles-wrapper .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.editor-styles-wrapper .jumbotron{padding:4rem 2rem}}.editor-styles-wrapper .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.editor-styles-wrapper .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.editor-styles-wrapper .alert-heading{color:inherit}.editor-styles-wrapper .alert-link{font-weight:700}.editor-styles-wrapper .alert-dismissible{padding-right:4rem}.editor-styles-wrapper .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.editor-styles-wrapper .alert-primary{color:#1e73be;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .alert-primary hr{border-top-color:#1b66a8}.editor-styles-wrapper .alert-primary .alert-link{color:#175892}.editor-styles-wrapper .alert-secondary{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-secondary hr{border-top-color:#60686f}.editor-styles-wrapper .alert-secondary .alert-link{color:#545b62}.editor-styles-wrapper .alert-success{color:#44c553;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .alert-success hr{border-top-color:#39b747}.editor-styles-wrapper .alert-success .alert-link{color:#33a340}.editor-styles-wrapper .alert-info{color:#17a2b8;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .alert-info hr{border-top-color:#148ea1}.editor-styles-wrapper .alert-info .alert-link{color:#117a8b}.editor-styles-wrapper .alert-warning{color:#ffc107;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .alert-warning hr{border-top-color:#edb100}.editor-styles-wrapper .alert-warning .alert-link{color:#d39e00}.editor-styles-wrapper .alert-danger{color:#dc3545;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .alert-danger hr{border-top-color:#d32535}.editor-styles-wrapper .alert-danger .alert-link{color:#bd2130}.editor-styles-wrapper .alert-light{color:#f8f9fa;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .alert-light hr{border-top-color:#e9ecef}.editor-styles-wrapper .alert-light .alert-link{color:#dae0e5}.editor-styles-wrapper .alert-dark{color:#343a40;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .alert-dark hr{border-top-color:#292d32}.editor-styles-wrapper .alert-dark .alert-link{color:#1d2124}.editor-styles-wrapper .alert-white{color:#fff;background-color:#fff;border-color:#fff}.editor-styles-wrapper .alert-white hr{border-top-color:#f2f2f2}.editor-styles-wrapper .alert-white .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-purple{color:#ad6edd;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .alert-purple hr{border-top-color:#a159d8}.editor-styles-wrapper .alert-purple .alert-link{color:#9645d3}.editor-styles-wrapper .alert-salmon{color:#ff977a;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .alert-salmon hr{border-top-color:#ff8361}.editor-styles-wrapper .alert-salmon .alert-link{color:#ff6f47}.editor-styles-wrapper .alert-cyan{color:#35bdff;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .alert-cyan hr{border-top-color:#1cb5ff}.editor-styles-wrapper .alert-cyan .alert-link{color:#02acff}.editor-styles-wrapper .alert-gray{color:#ced4da;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .alert-gray hr{border-top-color:#bfc7cf}.editor-styles-wrapper .alert-gray .alert-link{color:#b1bbc4}.editor-styles-wrapper .alert-gray-dark{color:#6c757d;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-gray-dark hr{border-top-color:#60686f}.editor-styles-wrapper .alert-gray-dark .alert-link{color:#545b62}.editor-styles-wrapper .alert-indigo{color:#502c6c;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .alert-indigo hr{border-top-color:#43255a}.editor-styles-wrapper .alert-indigo .alert-link{color:#351d48}.editor-styles-wrapper .alert-orange{color:#fbb500;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .alert-orange hr{border-top-color:#e2a300}.editor-styles-wrapper .alert-orange .alert-link{color:#c89000}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.editor-styles-wrapper .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.editor-styles-wrapper .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#1e73be;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .progress-bar{transition:none}}.editor-styles-wrapper .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.editor-styles-wrapper .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .progress-bar-animated{animation:none}}.editor-styles-wrapper .media{display:flex;align-items:flex-start}.editor-styles-wrapper .media-body{flex:1}.editor-styles-wrapper .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.editor-styles-wrapper .list-group-item-action{width:100%;color:#495057;text-align:inherit}.editor-styles-wrapper .list-group-item-action:hover,.editor-styles-wrapper .list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.editor-styles-wrapper .list-group-item-action:active{color:#212529;background-color:#e9ecef}.editor-styles-wrapper .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.editor-styles-wrapper .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.editor-styles-wrapper .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.editor-styles-wrapper .list-group-item.disabled,.editor-styles-wrapper .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.editor-styles-wrapper .list-group-item.active{z-index:2;color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .list-group-item+.list-group-item{border-top-width:0}.editor-styles-wrapper .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.editor-styles-wrapper .list-group-horizontal{flex-direction:row}.editor-styles-wrapper .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.editor-styles-wrapper .list-group-horizontal-sm{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.editor-styles-wrapper .list-group-horizontal-md{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.editor-styles-wrapper .list-group-horizontal-lg{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.editor-styles-wrapper .list-group-horizontal-xl{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1400px){.editor-styles-wrapper .list-group-horizontal-xxl{flex-direction:row}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.editor-styles-wrapper .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.editor-styles-wrapper .list-group-flush{border-radius:0}.editor-styles-wrapper .list-group-flush>.list-group-item{border-width:0 0 1px}.editor-styles-wrapper .list-group-flush>.list-group-item:last-child{border-bottom-width:0}.editor-styles-wrapper .list-group-item-primary{color:#103c63;background-color:#c0d8ed}.editor-styles-wrapper .list-group-item-primary.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-primary.list-group-item-action:focus{color:#103c63;background-color:#accce7}.editor-styles-wrapper .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#103c63;border-color:#103c63}.editor-styles-wrapper .list-group-item-secondary{color:#383d41;background-color:#d6d8db}.editor-styles-wrapper .list-group-item-secondary.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.editor-styles-wrapper .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.editor-styles-wrapper .list-group-item-success{color:#23662b;background-color:#cbefcf}.editor-styles-wrapper .list-group-item-success.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-success.list-group-item-action:focus{color:#23662b;background-color:#b8e9bd}.editor-styles-wrapper .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#23662b;border-color:#23662b}.editor-styles-wrapper .list-group-item-info{color:#0c5460;background-color:#bee5eb}.editor-styles-wrapper .list-group-item-info.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.editor-styles-wrapper .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.editor-styles-wrapper .list-group-item-warning{color:#856404;background-color:#ffeeba}.editor-styles-wrapper .list-group-item-warning.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.editor-styles-wrapper .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.editor-styles-wrapper .list-group-item-danger{color:#721c24;background-color:#f5c6cb}.editor-styles-wrapper .list-group-item-danger.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.editor-styles-wrapper .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.editor-styles-wrapper .list-group-item-light{color:#818182;background-color:#fdfdfe}.editor-styles-wrapper .list-group-item-light.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.editor-styles-wrapper .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.editor-styles-wrapper .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.editor-styles-wrapper .list-group-item-dark.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.editor-styles-wrapper .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.editor-styles-wrapper .list-group-item-white{color:#858585;background-color:#fff}.editor-styles-wrapper .list-group-item-white.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-white.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.editor-styles-wrapper .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.editor-styles-wrapper .list-group-item-purple{color:#5a3973;background-color:#e8d6f5}.editor-styles-wrapper .list-group-item-purple.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-purple.list-group-item-action:focus{color:#5a3973;background-color:#ddc2f0}.editor-styles-wrapper .list-group-item-purple.list-group-item-action.active{color:#fff;background-color:#5a3973;border-color:#5a3973}.editor-styles-wrapper .list-group-item-salmon{color:#854f3f;background-color:#ffe2da}.editor-styles-wrapper .list-group-item-salmon.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-salmon.list-group-item-action:focus{color:#854f3f;background-color:#ffcec1}.editor-styles-wrapper .list-group-item-salmon.list-group-item-action.active{color:#fff;background-color:#854f3f;border-color:#854f3f}.editor-styles-wrapper .list-group-item-cyan{color:#1c6285;background-color:#c6edff}.editor-styles-wrapper .list-group-item-cyan.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-cyan.list-group-item-action:focus{color:#1c6285;background-color:#ade5ff}.editor-styles-wrapper .list-group-item-cyan.list-group-item-action.active{color:#fff;background-color:#1c6285;border-color:#1c6285}.editor-styles-wrapper .list-group-item-gray{color:#6b6e71;background-color:#f1f3f5}.editor-styles-wrapper .list-group-item-gray.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-gray.list-group-item-action:focus{color:#6b6e71;background-color:#e2e6ea}.editor-styles-wrapper .list-group-item-gray.list-group-item-action.active{color:#fff;background-color:#6b6e71;border-color:#6b6e71}.editor-styles-wrapper .list-group-item-gray-dark{color:#383d41;background-color:#d6d8db}.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.editor-styles-wrapper .list-group-item-gray-dark.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.editor-styles-wrapper .list-group-item-indigo{color:#2a1738;background-color:#cec4d6}.editor-styles-wrapper .list-group-item-indigo.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-indigo.list-group-item-action:focus{color:#2a1738;background-color:#c2b5cc}.editor-styles-wrapper .list-group-item-indigo.list-group-item-action.active{color:#fff;background-color:#2a1738;border-color:#2a1738}.editor-styles-wrapper .list-group-item-orange{color:#835e00;background-color:#feeab8}.editor-styles-wrapper .list-group-item-orange.list-group-item-action:hover,.editor-styles-wrapper .list-group-item-orange.list-group-item-action:focus{color:#835e00;background-color:#fee39f}.editor-styles-wrapper .list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#835e00;border-color:#835e00}.editor-styles-wrapper .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.editor-styles-wrapper .close:hover{color:#000;text-decoration:none}.editor-styles-wrapper .close:not(:disabled):not(.disabled):hover,.editor-styles-wrapper .close:not(:disabled):not(.disabled):focus{opacity:.75}.editor-styles-wrapper button.close{padding:0;background-color:transparent;border:0}.editor-styles-wrapper a.close.disabled{pointer-events:none}.editor-styles-wrapper .toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.editor-styles-wrapper .toast:not(:last-child){margin-bottom:.75rem}.editor-styles-wrapper .toast.showing{opacity:1}.editor-styles-wrapper .toast.show{display:block;opacity:1}.editor-styles-wrapper .toast.hide{display:none}.editor-styles-wrapper .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.editor-styles-wrapper .toast-body{padding:.75rem}.editor-styles-wrapper .modal-open{overflow:hidden}.editor-styles-wrapper .modal-open .modal{overflow-x:hidden;overflow-y:auto}.editor-styles-wrapper .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.editor-styles-wrapper .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .editor-styles-wrapper .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .editor-styles-wrapper .modal-dialog{transition:none}}.modal.show .editor-styles-wrapper .modal-dialog{transform:none}.modal.modal-static .editor-styles-wrapper .modal-dialog{transform:scale(1.02)}.editor-styles-wrapper .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.editor-styles-wrapper .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.editor-styles-wrapper .modal-dialog-scrollable .modal-header,.editor-styles-wrapper .modal-dialog-scrollable .modal-footer{flex-shrink:0}.editor-styles-wrapper .modal-dialog-scrollable .modal-body{overflow-y:auto}.editor-styles-wrapper .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.editor-styles-wrapper .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.editor-styles-wrapper .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.editor-styles-wrapper .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.editor-styles-wrapper .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.editor-styles-wrapper .modal-backdrop.fade{opacity:0}.editor-styles-wrapper .modal-backdrop.show{opacity:.5}.editor-styles-wrapper .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.editor-styles-wrapper .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.editor-styles-wrapper .modal-title{margin-bottom:0;line-height:1.6}.editor-styles-wrapper .modal-body{position:relative;flex:1 1 auto;padding:1rem}.editor-styles-wrapper .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.editor-styles-wrapper .modal-footer>*{margin:.25rem}.editor-styles-wrapper .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.editor-styles-wrapper .modal-dialog{max-width:500px;margin:1.75rem auto}.editor-styles-wrapper .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.editor-styles-wrapper .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.editor-styles-wrapper .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.editor-styles-wrapper .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.editor-styles-wrapper .modal-sm{max-width:300px}}@media (min-width: 992px){.editor-styles-wrapper .modal-lg,.editor-styles-wrapper .modal-xl{max-width:800px}}@media (min-width: 1200px){.editor-styles-wrapper .modal-xl{max-width:1140px}}.editor-styles-wrapper .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.editor-styles-wrapper .tooltip.show{opacity:.9}.editor-styles-wrapper .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.editor-styles-wrapper .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.editor-styles-wrapper .bs-tooltip-top,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.editor-styles-wrapper .bs-tooltip-top .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.editor-styles-wrapper .bs-tooltip-top .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.editor-styles-wrapper .bs-tooltip-right,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.editor-styles-wrapper .bs-tooltip-right .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.editor-styles-wrapper .bs-tooltip-right .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.editor-styles-wrapper .bs-tooltip-bottom,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.editor-styles-wrapper .bs-tooltip-bottom .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.editor-styles-wrapper .bs-tooltip-bottom .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.editor-styles-wrapper .bs-tooltip-left,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.editor-styles-wrapper .bs-tooltip-left .arrow,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.editor-styles-wrapper .bs-tooltip-left .arrow::before,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.editor-styles-wrapper .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.editor-styles-wrapper .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Nunito,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.6;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.editor-styles-wrapper .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.editor-styles-wrapper .popover .arrow::before,.editor-styles-wrapper .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.editor-styles-wrapper .bs-popover-top,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.editor-styles-wrapper .bs-popover-top>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.editor-styles-wrapper .bs-popover-top>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-top>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.editor-styles-wrapper .bs-popover-right,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.editor-styles-wrapper .bs-popover-right>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.editor-styles-wrapper .bs-popover-right>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-right>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.editor-styles-wrapper .bs-popover-bottom,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.editor-styles-wrapper .bs-popover-bottom>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.editor-styles-wrapper .bs-popover-bottom>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-bottom>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.editor-styles-wrapper .bs-popover-bottom .popover-header::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.editor-styles-wrapper .bs-popover-left,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.editor-styles-wrapper .bs-popover-left>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.editor-styles-wrapper .bs-popover-left>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .bs-popover-left>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.editor-styles-wrapper .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.editor-styles-wrapper .popover-header:empty{display:none}.editor-styles-wrapper .popover-body{padding:.5rem .75rem;color:#212529}.editor-styles-wrapper .carousel{position:relative}.editor-styles-wrapper .carousel.pointer-event{touch-action:pan-y}.editor-styles-wrapper .carousel-inner{position:relative;width:100%;overflow:hidden}.editor-styles-wrapper .carousel-inner::after{display:block;clear:both;content:""}.editor-styles-wrapper .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-item{transition:none}}.editor-styles-wrapper .carousel-item.active,.editor-styles-wrapper .carousel-item-next,.editor-styles-wrapper .carousel-item-prev{display:block}.editor-styles-wrapper .carousel-item-next:not(.carousel-item-left),.editor-styles-wrapper .active.carousel-item-right{transform:translateX(100%)}.editor-styles-wrapper .carousel-item-prev:not(.carousel-item-right),.editor-styles-wrapper .active.carousel-item-left{transform:translateX(-100%)}.editor-styles-wrapper .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.editor-styles-wrapper .carousel-fade .carousel-item.active,.editor-styles-wrapper .carousel-fade .carousel-item-next.carousel-item-left,.editor-styles-wrapper .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.editor-styles-wrapper .carousel-fade .active.carousel-item-left,.editor-styles-wrapper .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-fade .active.carousel-item-left,.editor-styles-wrapper .carousel-fade .active.carousel-item-right{transition:none}}.editor-styles-wrapper .carousel-control-prev,.editor-styles-wrapper .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-control-prev,.editor-styles-wrapper .carousel-control-next{transition:none}}.editor-styles-wrapper .carousel-control-prev:hover,.editor-styles-wrapper .carousel-control-prev:focus,.editor-styles-wrapper .carousel-control-next:hover,.editor-styles-wrapper .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.editor-styles-wrapper .carousel-control-prev{left:0}.editor-styles-wrapper .carousel-control-next{right:0}.editor-styles-wrapper .carousel-control-prev-icon,.editor-styles-wrapper .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.editor-styles-wrapper .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.editor-styles-wrapper .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.editor-styles-wrapper .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.editor-styles-wrapper .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .carousel-indicators li{transition:none}}.editor-styles-wrapper .carousel-indicators .active{opacity:1}.editor-styles-wrapper .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.editor-styles-wrapper .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.editor-styles-wrapper .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.editor-styles-wrapper .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.editor-styles-wrapper .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.editor-styles-wrapper .spinner-border,.editor-styles-wrapper .spinner-grow{animation-duration:1.5s}}.editor-styles-wrapper .align-baseline{vertical-align:baseline !important}.editor-styles-wrapper .align-top{vertical-align:top !important}.editor-styles-wrapper .align-middle{vertical-align:middle !important}.editor-styles-wrapper .align-bottom{vertical-align:bottom !important}.editor-styles-wrapper .align-text-bottom{vertical-align:text-bottom !important}.editor-styles-wrapper .align-text-top{vertical-align:text-top !important}.editor-styles-wrapper .bg-primary{background-color:#1e73be !important}.editor-styles-wrapper a.bg-primary:hover,.editor-styles-wrapper a.bg-primary:focus,.editor-styles-wrapper button.bg-primary:hover,.editor-styles-wrapper button.bg-primary:focus{background-color:#175892 !important}.editor-styles-wrapper .bg-secondary{background-color:#6c757d !important}.editor-styles-wrapper a.bg-secondary:hover,.editor-styles-wrapper a.bg-secondary:focus,.editor-styles-wrapper button.bg-secondary:hover,.editor-styles-wrapper button.bg-secondary:focus{background-color:#545b62 !important}.editor-styles-wrapper .bg-success{background-color:#44c553 !important}.editor-styles-wrapper a.bg-success:hover,.editor-styles-wrapper a.bg-success:focus,.editor-styles-wrapper button.bg-success:hover,.editor-styles-wrapper button.bg-success:focus{background-color:#33a340 !important}.editor-styles-wrapper .bg-info{background-color:#17a2b8 !important}.editor-styles-wrapper a.bg-info:hover,.editor-styles-wrapper a.bg-info:focus,.editor-styles-wrapper button.bg-info:hover,.editor-styles-wrapper button.bg-info:focus{background-color:#117a8b !important}.editor-styles-wrapper .bg-warning{background-color:#ffc107 !important}.editor-styles-wrapper a.bg-warning:hover,.editor-styles-wrapper a.bg-warning:focus,.editor-styles-wrapper button.bg-warning:hover,.editor-styles-wrapper button.bg-warning:focus{background-color:#d39e00 !important}.editor-styles-wrapper .bg-danger{background-color:#dc3545 !important}.editor-styles-wrapper a.bg-danger:hover,.editor-styles-wrapper a.bg-danger:focus,.editor-styles-wrapper button.bg-danger:hover,.editor-styles-wrapper button.bg-danger:focus{background-color:#bd2130 !important}.editor-styles-wrapper .bg-light{background-color:#f8f9fa !important}.editor-styles-wrapper a.bg-light:hover,.editor-styles-wrapper a.bg-light:focus,.editor-styles-wrapper button.bg-light:hover,.editor-styles-wrapper button.bg-light:focus{background-color:#dae0e5 !important}.editor-styles-wrapper .bg-dark{background-color:#343a40 !important}.editor-styles-wrapper a.bg-dark:hover,.editor-styles-wrapper a.bg-dark:focus,.editor-styles-wrapper button.bg-dark:hover,.editor-styles-wrapper button.bg-dark:focus{background-color:#1d2124 !important}.editor-styles-wrapper .bg-white{background-color:#fff !important}.editor-styles-wrapper a.bg-white:hover,.editor-styles-wrapper a.bg-white:focus,.editor-styles-wrapper button.bg-white:hover,.editor-styles-wrapper button.bg-white:focus{background-color:#e6e6e6 !important}.editor-styles-wrapper .bg-purple{background-color:#ad6edd !important}.editor-styles-wrapper a.bg-purple:hover,.editor-styles-wrapper a.bg-purple:focus,.editor-styles-wrapper button.bg-purple:hover,.editor-styles-wrapper button.bg-purple:focus{background-color:#9645d3 !important}.editor-styles-wrapper .bg-salmon{background-color:#ff977a !important}.editor-styles-wrapper a.bg-salmon:hover,.editor-styles-wrapper a.bg-salmon:focus,.editor-styles-wrapper button.bg-salmon:hover,.editor-styles-wrapper button.bg-salmon:focus{background-color:#ff6f47 !important}.editor-styles-wrapper .bg-cyan{background-color:#35bdff !important}.editor-styles-wrapper a.bg-cyan:hover,.editor-styles-wrapper a.bg-cyan:focus,.editor-styles-wrapper button.bg-cyan:hover,.editor-styles-wrapper button.bg-cyan:focus{background-color:#02acff !important}.editor-styles-wrapper .bg-gray{background-color:#ced4da !important}.editor-styles-wrapper a.bg-gray:hover,.editor-styles-wrapper a.bg-gray:focus,.editor-styles-wrapper button.bg-gray:hover,.editor-styles-wrapper button.bg-gray:focus{background-color:#b1bbc4 !important}.editor-styles-wrapper .bg-gray-dark{background-color:#6c757d !important}.editor-styles-wrapper a.bg-gray-dark:hover,.editor-styles-wrapper a.bg-gray-dark:focus,.editor-styles-wrapper button.bg-gray-dark:hover,.editor-styles-wrapper button.bg-gray-dark:focus{background-color:#545b62 !important}.editor-styles-wrapper .bg-indigo{background-color:#502c6c !important}.editor-styles-wrapper a.bg-indigo:hover,.editor-styles-wrapper a.bg-indigo:focus,.editor-styles-wrapper button.bg-indigo:hover,.editor-styles-wrapper button.bg-indigo:focus{background-color:#351d48 !important}.editor-styles-wrapper .bg-orange{background-color:#fbb500 !important}.editor-styles-wrapper a.bg-orange:hover,.editor-styles-wrapper a.bg-orange:focus,.editor-styles-wrapper button.bg-orange:hover,.editor-styles-wrapper button.bg-orange:focus{background-color:#c89000 !important}.editor-styles-wrapper .bg-white{background-color:#fff !important}.editor-styles-wrapper .bg-transparent{background-color:transparent !important}.editor-styles-wrapper .border{border:1px solid #dee2e6 !important}.editor-styles-wrapper .border-top{border-top:1px solid #dee2e6 !important}.editor-styles-wrapper .border-right{border-right:1px solid #dee2e6 !important}.editor-styles-wrapper .border-bottom{border-bottom:1px solid #dee2e6 !important}.editor-styles-wrapper .border-left{border-left:1px solid #dee2e6 !important}.editor-styles-wrapper .border-0{border:0 !important}.editor-styles-wrapper .border-top-0{border-top:0 !important}.editor-styles-wrapper .border-right-0{border-right:0 !important}.editor-styles-wrapper .border-bottom-0{border-bottom:0 !important}.editor-styles-wrapper .border-left-0{border-left:0 !important}.editor-styles-wrapper .border-primary{border-color:#1e73be !important}.editor-styles-wrapper .border-secondary{border-color:#6c757d !important}.editor-styles-wrapper .border-success{border-color:#44c553 !important}.editor-styles-wrapper .border-info{border-color:#17a2b8 !important}.editor-styles-wrapper .border-warning{border-color:#ffc107 !important}.editor-styles-wrapper .border-danger{border-color:#dc3545 !important}.editor-styles-wrapper .border-light{border-color:#f8f9fa !important}.editor-styles-wrapper .border-dark{border-color:#343a40 !important}.editor-styles-wrapper .border-white{border-color:#fff !important}.editor-styles-wrapper .border-purple{border-color:#ad6edd !important}.editor-styles-wrapper .border-salmon{border-color:#ff977a !important}.editor-styles-wrapper .border-cyan{border-color:#35bdff !important}.editor-styles-wrapper .border-gray{border-color:#ced4da !important}.editor-styles-wrapper .border-gray-dark{border-color:#6c757d !important}.editor-styles-wrapper .border-indigo{border-color:#502c6c !important}.editor-styles-wrapper .border-orange{border-color:#fbb500 !important}.editor-styles-wrapper .border-white{border-color:#fff !important}.editor-styles-wrapper .rounded-sm{border-radius:.2rem !important}.editor-styles-wrapper .rounded{border-radius:.25rem !important}.editor-styles-wrapper .rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.editor-styles-wrapper .rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.editor-styles-wrapper .rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.editor-styles-wrapper .rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.editor-styles-wrapper .rounded-lg{border-radius:.3rem !important}.editor-styles-wrapper .rounded-circle{border-radius:50% !important}.editor-styles-wrapper .rounded-pill{border-radius:50rem !important}.editor-styles-wrapper .rounded-0{border-radius:0 !important}.editor-styles-wrapper .clearfix::after{display:block;clear:both;content:""}.editor-styles-wrapper .d-none{display:none !important}.editor-styles-wrapper .d-inline{display:inline !important}.editor-styles-wrapper .d-inline-block{display:inline-block !important}.editor-styles-wrapper .d-block{display:block !important}.editor-styles-wrapper .d-table{display:table !important}.editor-styles-wrapper .d-table-row{display:table-row !important}.editor-styles-wrapper .d-table-cell{display:table-cell !important}.editor-styles-wrapper .d-flex{display:flex !important}.editor-styles-wrapper .d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.editor-styles-wrapper .d-sm-none{display:none !important}.editor-styles-wrapper .d-sm-inline{display:inline !important}.editor-styles-wrapper .d-sm-inline-block{display:inline-block !important}.editor-styles-wrapper .d-sm-block{display:block !important}.editor-styles-wrapper .d-sm-table{display:table !important}.editor-styles-wrapper .d-sm-table-row{display:table-row !important}.editor-styles-wrapper .d-sm-table-cell{display:table-cell !important}.editor-styles-wrapper .d-sm-flex{display:flex !important}.editor-styles-wrapper .d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.editor-styles-wrapper .d-md-none{display:none !important}.editor-styles-wrapper .d-md-inline{display:inline !important}.editor-styles-wrapper .d-md-inline-block{display:inline-block !important}.editor-styles-wrapper .d-md-block{display:block !important}.editor-styles-wrapper .d-md-table{display:table !important}.editor-styles-wrapper .d-md-table-row{display:table-row !important}.editor-styles-wrapper .d-md-table-cell{display:table-cell !important}.editor-styles-wrapper .d-md-flex{display:flex !important}.editor-styles-wrapper .d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.editor-styles-wrapper .d-lg-none{display:none !important}.editor-styles-wrapper .d-lg-inline{display:inline !important}.editor-styles-wrapper .d-lg-inline-block{display:inline-block !important}.editor-styles-wrapper .d-lg-block{display:block !important}.editor-styles-wrapper .d-lg-table{display:table !important}.editor-styles-wrapper .d-lg-table-row{display:table-row !important}.editor-styles-wrapper .d-lg-table-cell{display:table-cell !important}.editor-styles-wrapper .d-lg-flex{display:flex !important}.editor-styles-wrapper .d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.editor-styles-wrapper .d-xl-none{display:none !important}.editor-styles-wrapper .d-xl-inline{display:inline !important}.editor-styles-wrapper .d-xl-inline-block{display:inline-block !important}.editor-styles-wrapper .d-xl-block{display:block !important}.editor-styles-wrapper .d-xl-table{display:table !important}.editor-styles-wrapper .d-xl-table-row{display:table-row !important}.editor-styles-wrapper .d-xl-table-cell{display:table-cell !important}.editor-styles-wrapper .d-xl-flex{display:flex !important}.editor-styles-wrapper .d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1400px){.editor-styles-wrapper .d-xxl-none{display:none !important}.editor-styles-wrapper .d-xxl-inline{display:inline !important}.editor-styles-wrapper .d-xxl-inline-block{display:inline-block !important}.editor-styles-wrapper .d-xxl-block{display:block !important}.editor-styles-wrapper .d-xxl-table{display:table !important}.editor-styles-wrapper .d-xxl-table-row{display:table-row !important}.editor-styles-wrapper .d-xxl-table-cell{display:table-cell !important}.editor-styles-wrapper .d-xxl-flex{display:flex !important}.editor-styles-wrapper .d-xxl-inline-flex{display:inline-flex !important}}@media print{.editor-styles-wrapper .d-print-none{display:none !important}.editor-styles-wrapper .d-print-inline{display:inline !important}.editor-styles-wrapper .d-print-inline-block{display:inline-block !important}.editor-styles-wrapper .d-print-block{display:block !important}.editor-styles-wrapper .d-print-table{display:table !important}.editor-styles-wrapper .d-print-table-row{display:table-row !important}.editor-styles-wrapper .d-print-table-cell{display:table-cell !important}.editor-styles-wrapper .d-print-flex{display:flex !important}.editor-styles-wrapper .d-print-inline-flex{display:inline-flex !important}}.editor-styles-wrapper .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.editor-styles-wrapper .embed-responsive::before{display:block;content:""}.editor-styles-wrapper .embed-responsive .embed-responsive-item,.editor-styles-wrapper .embed-responsive iframe,.editor-styles-wrapper .embed-responsive embed,.editor-styles-wrapper .embed-responsive object,.editor-styles-wrapper .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.editor-styles-wrapper .embed-responsive-21by9::before{padding-top:42.85714286%}.editor-styles-wrapper .embed-responsive-16by9::before{padding-top:56.25%}.editor-styles-wrapper .embed-responsive-4by3::before{padding-top:75%}.editor-styles-wrapper .embed-responsive-1by1::before{padding-top:100%}.editor-styles-wrapper .flex-row{flex-direction:row !important}.editor-styles-wrapper .flex-column{flex-direction:column !important}.editor-styles-wrapper .flex-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-center{justify-content:center !important}.editor-styles-wrapper .justify-content-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-center{align-items:center !important}.editor-styles-wrapper .align-items-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-center{align-content:center !important}.editor-styles-wrapper .align-content-between{align-content:space-between !important}.editor-styles-wrapper .align-content-around{align-content:space-around !important}.editor-styles-wrapper .align-content-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-auto{align-self:auto !important}.editor-styles-wrapper .align-self-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-center{align-self:center !important}.editor-styles-wrapper .align-self-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.editor-styles-wrapper .flex-sm-row{flex-direction:row !important}.editor-styles-wrapper .flex-sm-column{flex-direction:column !important}.editor-styles-wrapper .flex-sm-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-sm-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-sm-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-sm-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-sm-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-sm-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-sm-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-sm-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-sm-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-sm-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-sm-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-sm-center{justify-content:center !important}.editor-styles-wrapper .justify-content-sm-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-sm-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-sm-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-sm-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-sm-center{align-items:center !important}.editor-styles-wrapper .align-items-sm-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-sm-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-sm-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-sm-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-sm-center{align-content:center !important}.editor-styles-wrapper .align-content-sm-between{align-content:space-between !important}.editor-styles-wrapper .align-content-sm-around{align-content:space-around !important}.editor-styles-wrapper .align-content-sm-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-sm-auto{align-self:auto !important}.editor-styles-wrapper .align-self-sm-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-sm-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-sm-center{align-self:center !important}.editor-styles-wrapper .align-self-sm-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.editor-styles-wrapper .flex-md-row{flex-direction:row !important}.editor-styles-wrapper .flex-md-column{flex-direction:column !important}.editor-styles-wrapper .flex-md-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-md-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-md-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-md-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-md-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-md-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-md-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-md-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-md-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-md-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-md-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-md-center{justify-content:center !important}.editor-styles-wrapper .justify-content-md-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-md-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-md-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-md-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-md-center{align-items:center !important}.editor-styles-wrapper .align-items-md-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-md-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-md-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-md-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-md-center{align-content:center !important}.editor-styles-wrapper .align-content-md-between{align-content:space-between !important}.editor-styles-wrapper .align-content-md-around{align-content:space-around !important}.editor-styles-wrapper .align-content-md-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-md-auto{align-self:auto !important}.editor-styles-wrapper .align-self-md-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-md-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-md-center{align-self:center !important}.editor-styles-wrapper .align-self-md-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.editor-styles-wrapper .flex-lg-row{flex-direction:row !important}.editor-styles-wrapper .flex-lg-column{flex-direction:column !important}.editor-styles-wrapper .flex-lg-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-lg-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-lg-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-lg-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-lg-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-lg-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-lg-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-lg-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-lg-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-lg-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-lg-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-lg-center{justify-content:center !important}.editor-styles-wrapper .justify-content-lg-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-lg-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-lg-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-lg-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-lg-center{align-items:center !important}.editor-styles-wrapper .align-items-lg-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-lg-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-lg-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-lg-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-lg-center{align-content:center !important}.editor-styles-wrapper .align-content-lg-between{align-content:space-between !important}.editor-styles-wrapper .align-content-lg-around{align-content:space-around !important}.editor-styles-wrapper .align-content-lg-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-lg-auto{align-self:auto !important}.editor-styles-wrapper .align-self-lg-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-lg-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-lg-center{align-self:center !important}.editor-styles-wrapper .align-self-lg-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.editor-styles-wrapper .flex-xl-row{flex-direction:row !important}.editor-styles-wrapper .flex-xl-column{flex-direction:column !important}.editor-styles-wrapper .flex-xl-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-xl-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-xl-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-xl-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-xl-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-xl-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-xl-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-xl-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-xl-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-xl-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-xl-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-xl-center{justify-content:center !important}.editor-styles-wrapper .justify-content-xl-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-xl-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-xl-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-xl-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-xl-center{align-items:center !important}.editor-styles-wrapper .align-items-xl-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-xl-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-xl-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-xl-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-xl-center{align-content:center !important}.editor-styles-wrapper .align-content-xl-between{align-content:space-between !important}.editor-styles-wrapper .align-content-xl-around{align-content:space-around !important}.editor-styles-wrapper .align-content-xl-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-xl-auto{align-self:auto !important}.editor-styles-wrapper .align-self-xl-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-xl-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-xl-center{align-self:center !important}.editor-styles-wrapper .align-self-xl-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1400px){.editor-styles-wrapper .flex-xxl-row{flex-direction:row !important}.editor-styles-wrapper .flex-xxl-column{flex-direction:column !important}.editor-styles-wrapper .flex-xxl-row-reverse{flex-direction:row-reverse !important}.editor-styles-wrapper .flex-xxl-column-reverse{flex-direction:column-reverse !important}.editor-styles-wrapper .flex-xxl-wrap{flex-wrap:wrap !important}.editor-styles-wrapper .flex-xxl-nowrap{flex-wrap:nowrap !important}.editor-styles-wrapper .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.editor-styles-wrapper .flex-xxl-fill{flex:1 1 auto !important}.editor-styles-wrapper .flex-xxl-grow-0{flex-grow:0 !important}.editor-styles-wrapper .flex-xxl-grow-1{flex-grow:1 !important}.editor-styles-wrapper .flex-xxl-shrink-0{flex-shrink:0 !important}.editor-styles-wrapper .flex-xxl-shrink-1{flex-shrink:1 !important}.editor-styles-wrapper .justify-content-xxl-start{justify-content:flex-start !important}.editor-styles-wrapper .justify-content-xxl-end{justify-content:flex-end !important}.editor-styles-wrapper .justify-content-xxl-center{justify-content:center !important}.editor-styles-wrapper .justify-content-xxl-between{justify-content:space-between !important}.editor-styles-wrapper .justify-content-xxl-around{justify-content:space-around !important}.editor-styles-wrapper .align-items-xxl-start{align-items:flex-start !important}.editor-styles-wrapper .align-items-xxl-end{align-items:flex-end !important}.editor-styles-wrapper .align-items-xxl-center{align-items:center !important}.editor-styles-wrapper .align-items-xxl-baseline{align-items:baseline !important}.editor-styles-wrapper .align-items-xxl-stretch{align-items:stretch !important}.editor-styles-wrapper .align-content-xxl-start{align-content:flex-start !important}.editor-styles-wrapper .align-content-xxl-end{align-content:flex-end !important}.editor-styles-wrapper .align-content-xxl-center{align-content:center !important}.editor-styles-wrapper .align-content-xxl-between{align-content:space-between !important}.editor-styles-wrapper .align-content-xxl-around{align-content:space-around !important}.editor-styles-wrapper .align-content-xxl-stretch{align-content:stretch !important}.editor-styles-wrapper .align-self-xxl-auto{align-self:auto !important}.editor-styles-wrapper .align-self-xxl-start{align-self:flex-start !important}.editor-styles-wrapper .align-self-xxl-end{align-self:flex-end !important}.editor-styles-wrapper .align-self-xxl-center{align-self:center !important}.editor-styles-wrapper .align-self-xxl-baseline{align-self:baseline !important}.editor-styles-wrapper .align-self-xxl-stretch{align-self:stretch !important}}.editor-styles-wrapper .float-left{float:left !important}.editor-styles-wrapper .float-right{float:right !important}.editor-styles-wrapper .float-none{float:none !important}@media (min-width: 576px){.editor-styles-wrapper .float-sm-left{float:left !important}.editor-styles-wrapper .float-sm-right{float:right !important}.editor-styles-wrapper .float-sm-none{float:none !important}}@media (min-width: 768px){.editor-styles-wrapper .float-md-left{float:left !important}.editor-styles-wrapper .float-md-right{float:right !important}.editor-styles-wrapper .float-md-none{float:none !important}}@media (min-width: 992px){.editor-styles-wrapper .float-lg-left{float:left !important}.editor-styles-wrapper .float-lg-right{float:right !important}.editor-styles-wrapper .float-lg-none{float:none !important}}@media (min-width: 1200px){.editor-styles-wrapper .float-xl-left{float:left !important}.editor-styles-wrapper .float-xl-right{float:right !important}.editor-styles-wrapper .float-xl-none{float:none !important}}@media (min-width: 1400px){.editor-styles-wrapper .float-xxl-left{float:left !important}.editor-styles-wrapper .float-xxl-right{float:right !important}.editor-styles-wrapper .float-xxl-none{float:none !important}}.editor-styles-wrapper .user-select-all{user-select:all !important}.editor-styles-wrapper .user-select-auto{user-select:auto !important}.editor-styles-wrapper .user-select-none{user-select:none !important}.editor-styles-wrapper .overflow-auto{overflow:auto !important}.editor-styles-wrapper .overflow-hidden{overflow:hidden !important}.editor-styles-wrapper .position-static{position:static !important}.editor-styles-wrapper .position-relative{position:relative !important}.editor-styles-wrapper .position-absolute{position:absolute !important}.editor-styles-wrapper .position-fixed{position:fixed !important}.editor-styles-wrapper .position-sticky{position:sticky !important}.editor-styles-wrapper .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.editor-styles-wrapper .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.editor-styles-wrapper .sticky-top{position:sticky;top:0;z-index:1020}}.editor-styles-wrapper .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.editor-styles-wrapper .sr-only-focusable:active,.editor-styles-wrapper .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.editor-styles-wrapper .shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.editor-styles-wrapper .shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.editor-styles-wrapper .shadow-lg{box-shadow:0 10px 25px 0 rgba(0,0,0,0.3) !important}.editor-styles-wrapper .shadow-none{box-shadow:none !important}.editor-styles-wrapper .w-25{width:25% !important}.editor-styles-wrapper .w-50{width:50% !important}.editor-styles-wrapper .w-75{width:75% !important}.editor-styles-wrapper .w-100{width:100% !important}.editor-styles-wrapper .w-auto{width:auto !important}.editor-styles-wrapper .h-25{height:25% !important}.editor-styles-wrapper .h-50{height:50% !important}.editor-styles-wrapper .h-75{height:75% !important}.editor-styles-wrapper .h-100{height:100% !important}.editor-styles-wrapper .h-auto{height:auto !important}.editor-styles-wrapper .mw-100{max-width:100% !important}.editor-styles-wrapper .mh-100{max-height:100% !important}.editor-styles-wrapper .min-vw-100{min-width:100vw !important}.editor-styles-wrapper .min-vh-100{min-height:100vh !important}.editor-styles-wrapper .vw-100{width:100vw !important}.editor-styles-wrapper .vh-100{height:100vh !important}.editor-styles-wrapper .m-0{margin:0 !important}.editor-styles-wrapper .mt-0,.editor-styles-wrapper .my-0{margin-top:0 !important}.editor-styles-wrapper .mr-0,.editor-styles-wrapper .mx-0{margin-right:0 !important}.editor-styles-wrapper .mb-0,.editor-styles-wrapper .my-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-0,.editor-styles-wrapper .mx-0{margin-left:0 !important}.editor-styles-wrapper .m-1{margin:.25rem !important}.editor-styles-wrapper .mt-1,.editor-styles-wrapper .my-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-1,.editor-styles-wrapper .mx-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-1,.editor-styles-wrapper .my-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-1,.editor-styles-wrapper .mx-1{margin-left:.25rem !important}.editor-styles-wrapper .m-2{margin:.5rem !important}.editor-styles-wrapper .mt-2,.editor-styles-wrapper .my-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-2,.editor-styles-wrapper .mx-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-2,.editor-styles-wrapper .my-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-2,.editor-styles-wrapper .mx-2{margin-left:.5rem !important}.editor-styles-wrapper .m-3{margin:1rem !important}.editor-styles-wrapper .mt-3,.editor-styles-wrapper .my-3{margin-top:1rem !important}.editor-styles-wrapper .mr-3,.editor-styles-wrapper .mx-3{margin-right:1rem !important}.editor-styles-wrapper .mb-3,.editor-styles-wrapper .my-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-3,.editor-styles-wrapper .mx-3{margin-left:1rem !important}.editor-styles-wrapper .m-4{margin:1.5rem !important}.editor-styles-wrapper .mt-4,.editor-styles-wrapper .my-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-4,.editor-styles-wrapper .mx-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-4,.editor-styles-wrapper .my-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-4,.editor-styles-wrapper .mx-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-5{margin:3rem !important}.editor-styles-wrapper .mt-5,.editor-styles-wrapper .my-5{margin-top:3rem !important}.editor-styles-wrapper .mr-5,.editor-styles-wrapper .mx-5{margin-right:3rem !important}.editor-styles-wrapper .mb-5,.editor-styles-wrapper .my-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-5,.editor-styles-wrapper .mx-5{margin-left:3rem !important}.editor-styles-wrapper .m-6{margin:4rem !important}.editor-styles-wrapper .mt-6,.editor-styles-wrapper .my-6{margin-top:4rem !important}.editor-styles-wrapper .mr-6,.editor-styles-wrapper .mx-6{margin-right:4rem !important}.editor-styles-wrapper .mb-6,.editor-styles-wrapper .my-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-6,.editor-styles-wrapper .mx-6{margin-left:4rem !important}.editor-styles-wrapper .m-7{margin:6rem !important}.editor-styles-wrapper .mt-7,.editor-styles-wrapper .my-7{margin-top:6rem !important}.editor-styles-wrapper .mr-7,.editor-styles-wrapper .mx-7{margin-right:6rem !important}.editor-styles-wrapper .mb-7,.editor-styles-wrapper .my-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-7,.editor-styles-wrapper .mx-7{margin-left:6rem !important}.editor-styles-wrapper .m-8{margin:8rem !important}.editor-styles-wrapper .mt-8,.editor-styles-wrapper .my-8{margin-top:8rem !important}.editor-styles-wrapper .mr-8,.editor-styles-wrapper .mx-8{margin-right:8rem !important}.editor-styles-wrapper .mb-8,.editor-styles-wrapper .my-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-8,.editor-styles-wrapper .mx-8{margin-left:8rem !important}.editor-styles-wrapper .m-9{margin:10rem !important}.editor-styles-wrapper .mt-9,.editor-styles-wrapper .my-9{margin-top:10rem !important}.editor-styles-wrapper .mr-9,.editor-styles-wrapper .mx-9{margin-right:10rem !important}.editor-styles-wrapper .mb-9,.editor-styles-wrapper .my-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-9,.editor-styles-wrapper .mx-9{margin-left:10rem !important}.editor-styles-wrapper .m-10{margin:12rem !important}.editor-styles-wrapper .mt-10,.editor-styles-wrapper .my-10{margin-top:12rem !important}.editor-styles-wrapper .mr-10,.editor-styles-wrapper .mx-10{margin-right:12rem !important}.editor-styles-wrapper .mb-10,.editor-styles-wrapper .my-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-10,.editor-styles-wrapper .mx-10{margin-left:12rem !important}.editor-styles-wrapper .m-11{margin:14rem !important}.editor-styles-wrapper .mt-11,.editor-styles-wrapper .my-11{margin-top:14rem !important}.editor-styles-wrapper .mr-11,.editor-styles-wrapper .mx-11{margin-right:14rem !important}.editor-styles-wrapper .mb-11,.editor-styles-wrapper .my-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-11,.editor-styles-wrapper .mx-11{margin-left:14rem !important}.editor-styles-wrapper .m-12{margin:16rem !important}.editor-styles-wrapper .mt-12,.editor-styles-wrapper .my-12{margin-top:16rem !important}.editor-styles-wrapper .mr-12,.editor-styles-wrapper .mx-12{margin-right:16rem !important}.editor-styles-wrapper .mb-12,.editor-styles-wrapper .my-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-12,.editor-styles-wrapper .mx-12{margin-left:16rem !important}.editor-styles-wrapper .p-0{padding:0 !important}.editor-styles-wrapper .pt-0,.editor-styles-wrapper .py-0{padding-top:0 !important}.editor-styles-wrapper .pr-0,.editor-styles-wrapper .px-0{padding-right:0 !important}.editor-styles-wrapper .pb-0,.editor-styles-wrapper .py-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-0,.editor-styles-wrapper .px-0{padding-left:0 !important}.editor-styles-wrapper .p-1{padding:.25rem !important}.editor-styles-wrapper .pt-1,.editor-styles-wrapper .py-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-1,.editor-styles-wrapper .px-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-1,.editor-styles-wrapper .py-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-1,.editor-styles-wrapper .px-1{padding-left:.25rem !important}.editor-styles-wrapper .p-2{padding:.5rem !important}.editor-styles-wrapper .pt-2,.editor-styles-wrapper .py-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-2,.editor-styles-wrapper .px-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-2,.editor-styles-wrapper .py-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-2,.editor-styles-wrapper .px-2{padding-left:.5rem !important}.editor-styles-wrapper .p-3{padding:1rem !important}.editor-styles-wrapper .pt-3,.editor-styles-wrapper .py-3{padding-top:1rem !important}.editor-styles-wrapper .pr-3,.editor-styles-wrapper .px-3{padding-right:1rem !important}.editor-styles-wrapper .pb-3,.editor-styles-wrapper .py-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-3,.editor-styles-wrapper .px-3{padding-left:1rem !important}.editor-styles-wrapper .p-4{padding:1.5rem !important}.editor-styles-wrapper .pt-4,.editor-styles-wrapper .py-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-4,.editor-styles-wrapper .px-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-4,.editor-styles-wrapper .py-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-4,.editor-styles-wrapper .px-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-5{padding:3rem !important}.editor-styles-wrapper .pt-5,.editor-styles-wrapper .py-5{padding-top:3rem !important}.editor-styles-wrapper .pr-5,.editor-styles-wrapper .px-5{padding-right:3rem !important}.editor-styles-wrapper .pb-5,.editor-styles-wrapper .py-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-5,.editor-styles-wrapper .px-5{padding-left:3rem !important}.editor-styles-wrapper .p-6{padding:4rem !important}.editor-styles-wrapper .pt-6,.editor-styles-wrapper .py-6{padding-top:4rem !important}.editor-styles-wrapper .pr-6,.editor-styles-wrapper .px-6{padding-right:4rem !important}.editor-styles-wrapper .pb-6,.editor-styles-wrapper .py-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-6,.editor-styles-wrapper .px-6{padding-left:4rem !important}.editor-styles-wrapper .p-7{padding:6rem !important}.editor-styles-wrapper .pt-7,.editor-styles-wrapper .py-7{padding-top:6rem !important}.editor-styles-wrapper .pr-7,.editor-styles-wrapper .px-7{padding-right:6rem !important}.editor-styles-wrapper .pb-7,.editor-styles-wrapper .py-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-7,.editor-styles-wrapper .px-7{padding-left:6rem !important}.editor-styles-wrapper .p-8{padding:8rem !important}.editor-styles-wrapper .pt-8,.editor-styles-wrapper .py-8{padding-top:8rem !important}.editor-styles-wrapper .pr-8,.editor-styles-wrapper .px-8{padding-right:8rem !important}.editor-styles-wrapper .pb-8,.editor-styles-wrapper .py-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-8,.editor-styles-wrapper .px-8{padding-left:8rem !important}.editor-styles-wrapper .p-9{padding:10rem !important}.editor-styles-wrapper .pt-9,.editor-styles-wrapper .py-9{padding-top:10rem !important}.editor-styles-wrapper .pr-9,.editor-styles-wrapper .px-9{padding-right:10rem !important}.editor-styles-wrapper .pb-9,.editor-styles-wrapper .py-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-9,.editor-styles-wrapper .px-9{padding-left:10rem !important}.editor-styles-wrapper .p-10{padding:12rem !important}.editor-styles-wrapper .pt-10,.editor-styles-wrapper .py-10{padding-top:12rem !important}.editor-styles-wrapper .pr-10,.editor-styles-wrapper .px-10{padding-right:12rem !important}.editor-styles-wrapper .pb-10,.editor-styles-wrapper .py-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-10,.editor-styles-wrapper .px-10{padding-left:12rem !important}.editor-styles-wrapper .p-11{padding:14rem !important}.editor-styles-wrapper .pt-11,.editor-styles-wrapper .py-11{padding-top:14rem !important}.editor-styles-wrapper .pr-11,.editor-styles-wrapper .px-11{padding-right:14rem !important}.editor-styles-wrapper .pb-11,.editor-styles-wrapper .py-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-11,.editor-styles-wrapper .px-11{padding-left:14rem !important}.editor-styles-wrapper .p-12{padding:16rem !important}.editor-styles-wrapper .pt-12,.editor-styles-wrapper .py-12{padding-top:16rem !important}.editor-styles-wrapper .pr-12,.editor-styles-wrapper .px-12{padding-right:16rem !important}.editor-styles-wrapper .pb-12,.editor-styles-wrapper .py-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-12,.editor-styles-wrapper .px-12{padding-left:16rem !important}.editor-styles-wrapper .m-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-n1,.editor-styles-wrapper .my-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-n1,.editor-styles-wrapper .mx-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-n1,.editor-styles-wrapper .my-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-n1,.editor-styles-wrapper .mx-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-n2,.editor-styles-wrapper .my-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-n2,.editor-styles-wrapper .mx-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-n2,.editor-styles-wrapper .my-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-n2,.editor-styles-wrapper .mx-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-n3{margin:-1rem !important}.editor-styles-wrapper .mt-n3,.editor-styles-wrapper .my-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-n3,.editor-styles-wrapper .mx-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-n3,.editor-styles-wrapper .my-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-n3,.editor-styles-wrapper .mx-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-n4,.editor-styles-wrapper .my-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-n4,.editor-styles-wrapper .mx-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-n4,.editor-styles-wrapper .my-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-n4,.editor-styles-wrapper .mx-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-n5{margin:-3rem !important}.editor-styles-wrapper .mt-n5,.editor-styles-wrapper .my-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-n5,.editor-styles-wrapper .mx-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-n5,.editor-styles-wrapper .my-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-n5,.editor-styles-wrapper .mx-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-n6{margin:-4rem !important}.editor-styles-wrapper .mt-n6,.editor-styles-wrapper .my-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-n6,.editor-styles-wrapper .mx-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-n6,.editor-styles-wrapper .my-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-n6,.editor-styles-wrapper .mx-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-n7{margin:-6rem !important}.editor-styles-wrapper .mt-n7,.editor-styles-wrapper .my-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-n7,.editor-styles-wrapper .mx-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-n7,.editor-styles-wrapper .my-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-n7,.editor-styles-wrapper .mx-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-n8{margin:-8rem !important}.editor-styles-wrapper .mt-n8,.editor-styles-wrapper .my-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-n8,.editor-styles-wrapper .mx-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-n8,.editor-styles-wrapper .my-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-n8,.editor-styles-wrapper .mx-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-n9{margin:-10rem !important}.editor-styles-wrapper .mt-n9,.editor-styles-wrapper .my-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-n9,.editor-styles-wrapper .mx-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-n9,.editor-styles-wrapper .my-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-n9,.editor-styles-wrapper .mx-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-n10{margin:-12rem !important}.editor-styles-wrapper .mt-n10,.editor-styles-wrapper .my-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-n10,.editor-styles-wrapper .mx-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-n10,.editor-styles-wrapper .my-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-n10,.editor-styles-wrapper .mx-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-n11{margin:-14rem !important}.editor-styles-wrapper .mt-n11,.editor-styles-wrapper .my-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-n11,.editor-styles-wrapper .mx-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-n11,.editor-styles-wrapper .my-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-n11,.editor-styles-wrapper .mx-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-n12{margin:-16rem !important}.editor-styles-wrapper .mt-n12,.editor-styles-wrapper .my-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-n12,.editor-styles-wrapper .mx-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-n12,.editor-styles-wrapper .my-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-n12,.editor-styles-wrapper .mx-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-auto{margin:auto !important}.editor-styles-wrapper .mt-auto,.editor-styles-wrapper .my-auto{margin-top:auto !important}.editor-styles-wrapper .mr-auto,.editor-styles-wrapper .mx-auto{margin-right:auto !important}.editor-styles-wrapper .mb-auto,.editor-styles-wrapper .my-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-auto,.editor-styles-wrapper .mx-auto{margin-left:auto !important}@media (min-width: 576px){.editor-styles-wrapper .m-sm-0{margin:0 !important}.editor-styles-wrapper .mt-sm-0,.editor-styles-wrapper .my-sm-0{margin-top:0 !important}.editor-styles-wrapper .mr-sm-0,.editor-styles-wrapper .mx-sm-0{margin-right:0 !important}.editor-styles-wrapper .mb-sm-0,.editor-styles-wrapper .my-sm-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-sm-0,.editor-styles-wrapper .mx-sm-0{margin-left:0 !important}.editor-styles-wrapper .m-sm-1{margin:.25rem !important}.editor-styles-wrapper .mt-sm-1,.editor-styles-wrapper .my-sm-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-sm-1,.editor-styles-wrapper .mx-sm-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-sm-1,.editor-styles-wrapper .my-sm-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-sm-1,.editor-styles-wrapper .mx-sm-1{margin-left:.25rem !important}.editor-styles-wrapper .m-sm-2{margin:.5rem !important}.editor-styles-wrapper .mt-sm-2,.editor-styles-wrapper .my-sm-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-sm-2,.editor-styles-wrapper .mx-sm-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-sm-2,.editor-styles-wrapper .my-sm-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-sm-2,.editor-styles-wrapper .mx-sm-2{margin-left:.5rem !important}.editor-styles-wrapper .m-sm-3{margin:1rem !important}.editor-styles-wrapper .mt-sm-3,.editor-styles-wrapper .my-sm-3{margin-top:1rem !important}.editor-styles-wrapper .mr-sm-3,.editor-styles-wrapper .mx-sm-3{margin-right:1rem !important}.editor-styles-wrapper .mb-sm-3,.editor-styles-wrapper .my-sm-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-sm-3,.editor-styles-wrapper .mx-sm-3{margin-left:1rem !important}.editor-styles-wrapper .m-sm-4{margin:1.5rem !important}.editor-styles-wrapper .mt-sm-4,.editor-styles-wrapper .my-sm-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-sm-4,.editor-styles-wrapper .mx-sm-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-sm-4,.editor-styles-wrapper .my-sm-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-sm-4,.editor-styles-wrapper .mx-sm-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-sm-5{margin:3rem !important}.editor-styles-wrapper .mt-sm-5,.editor-styles-wrapper .my-sm-5{margin-top:3rem !important}.editor-styles-wrapper .mr-sm-5,.editor-styles-wrapper .mx-sm-5{margin-right:3rem !important}.editor-styles-wrapper .mb-sm-5,.editor-styles-wrapper .my-sm-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-sm-5,.editor-styles-wrapper .mx-sm-5{margin-left:3rem !important}.editor-styles-wrapper .m-sm-6{margin:4rem !important}.editor-styles-wrapper .mt-sm-6,.editor-styles-wrapper .my-sm-6{margin-top:4rem !important}.editor-styles-wrapper .mr-sm-6,.editor-styles-wrapper .mx-sm-6{margin-right:4rem !important}.editor-styles-wrapper .mb-sm-6,.editor-styles-wrapper .my-sm-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-sm-6,.editor-styles-wrapper .mx-sm-6{margin-left:4rem !important}.editor-styles-wrapper .m-sm-7{margin:6rem !important}.editor-styles-wrapper .mt-sm-7,.editor-styles-wrapper .my-sm-7{margin-top:6rem !important}.editor-styles-wrapper .mr-sm-7,.editor-styles-wrapper .mx-sm-7{margin-right:6rem !important}.editor-styles-wrapper .mb-sm-7,.editor-styles-wrapper .my-sm-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-sm-7,.editor-styles-wrapper .mx-sm-7{margin-left:6rem !important}.editor-styles-wrapper .m-sm-8{margin:8rem !important}.editor-styles-wrapper .mt-sm-8,.editor-styles-wrapper .my-sm-8{margin-top:8rem !important}.editor-styles-wrapper .mr-sm-8,.editor-styles-wrapper .mx-sm-8{margin-right:8rem !important}.editor-styles-wrapper .mb-sm-8,.editor-styles-wrapper .my-sm-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-sm-8,.editor-styles-wrapper .mx-sm-8{margin-left:8rem !important}.editor-styles-wrapper .m-sm-9{margin:10rem !important}.editor-styles-wrapper .mt-sm-9,.editor-styles-wrapper .my-sm-9{margin-top:10rem !important}.editor-styles-wrapper .mr-sm-9,.editor-styles-wrapper .mx-sm-9{margin-right:10rem !important}.editor-styles-wrapper .mb-sm-9,.editor-styles-wrapper .my-sm-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-sm-9,.editor-styles-wrapper .mx-sm-9{margin-left:10rem !important}.editor-styles-wrapper .m-sm-10{margin:12rem !important}.editor-styles-wrapper .mt-sm-10,.editor-styles-wrapper .my-sm-10{margin-top:12rem !important}.editor-styles-wrapper .mr-sm-10,.editor-styles-wrapper .mx-sm-10{margin-right:12rem !important}.editor-styles-wrapper .mb-sm-10,.editor-styles-wrapper .my-sm-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-sm-10,.editor-styles-wrapper .mx-sm-10{margin-left:12rem !important}.editor-styles-wrapper .m-sm-11{margin:14rem !important}.editor-styles-wrapper .mt-sm-11,.editor-styles-wrapper .my-sm-11{margin-top:14rem !important}.editor-styles-wrapper .mr-sm-11,.editor-styles-wrapper .mx-sm-11{margin-right:14rem !important}.editor-styles-wrapper .mb-sm-11,.editor-styles-wrapper .my-sm-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-sm-11,.editor-styles-wrapper .mx-sm-11{margin-left:14rem !important}.editor-styles-wrapper .m-sm-12{margin:16rem !important}.editor-styles-wrapper .mt-sm-12,.editor-styles-wrapper .my-sm-12{margin-top:16rem !important}.editor-styles-wrapper .mr-sm-12,.editor-styles-wrapper .mx-sm-12{margin-right:16rem !important}.editor-styles-wrapper .mb-sm-12,.editor-styles-wrapper .my-sm-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-sm-12,.editor-styles-wrapper .mx-sm-12{margin-left:16rem !important}.editor-styles-wrapper .p-sm-0{padding:0 !important}.editor-styles-wrapper .pt-sm-0,.editor-styles-wrapper .py-sm-0{padding-top:0 !important}.editor-styles-wrapper .pr-sm-0,.editor-styles-wrapper .px-sm-0{padding-right:0 !important}.editor-styles-wrapper .pb-sm-0,.editor-styles-wrapper .py-sm-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-sm-0,.editor-styles-wrapper .px-sm-0{padding-left:0 !important}.editor-styles-wrapper .p-sm-1{padding:.25rem !important}.editor-styles-wrapper .pt-sm-1,.editor-styles-wrapper .py-sm-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-sm-1,.editor-styles-wrapper .px-sm-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-sm-1,.editor-styles-wrapper .py-sm-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-sm-1,.editor-styles-wrapper .px-sm-1{padding-left:.25rem !important}.editor-styles-wrapper .p-sm-2{padding:.5rem !important}.editor-styles-wrapper .pt-sm-2,.editor-styles-wrapper .py-sm-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-sm-2,.editor-styles-wrapper .px-sm-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-sm-2,.editor-styles-wrapper .py-sm-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-sm-2,.editor-styles-wrapper .px-sm-2{padding-left:.5rem !important}.editor-styles-wrapper .p-sm-3{padding:1rem !important}.editor-styles-wrapper .pt-sm-3,.editor-styles-wrapper .py-sm-3{padding-top:1rem !important}.editor-styles-wrapper .pr-sm-3,.editor-styles-wrapper .px-sm-3{padding-right:1rem !important}.editor-styles-wrapper .pb-sm-3,.editor-styles-wrapper .py-sm-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-sm-3,.editor-styles-wrapper .px-sm-3{padding-left:1rem !important}.editor-styles-wrapper .p-sm-4{padding:1.5rem !important}.editor-styles-wrapper .pt-sm-4,.editor-styles-wrapper .py-sm-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-sm-4,.editor-styles-wrapper .px-sm-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-sm-4,.editor-styles-wrapper .py-sm-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-sm-4,.editor-styles-wrapper .px-sm-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-sm-5{padding:3rem !important}.editor-styles-wrapper .pt-sm-5,.editor-styles-wrapper .py-sm-5{padding-top:3rem !important}.editor-styles-wrapper .pr-sm-5,.editor-styles-wrapper .px-sm-5{padding-right:3rem !important}.editor-styles-wrapper .pb-sm-5,.editor-styles-wrapper .py-sm-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-sm-5,.editor-styles-wrapper .px-sm-5{padding-left:3rem !important}.editor-styles-wrapper .p-sm-6{padding:4rem !important}.editor-styles-wrapper .pt-sm-6,.editor-styles-wrapper .py-sm-6{padding-top:4rem !important}.editor-styles-wrapper .pr-sm-6,.editor-styles-wrapper .px-sm-6{padding-right:4rem !important}.editor-styles-wrapper .pb-sm-6,.editor-styles-wrapper .py-sm-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-sm-6,.editor-styles-wrapper .px-sm-6{padding-left:4rem !important}.editor-styles-wrapper .p-sm-7{padding:6rem !important}.editor-styles-wrapper .pt-sm-7,.editor-styles-wrapper .py-sm-7{padding-top:6rem !important}.editor-styles-wrapper .pr-sm-7,.editor-styles-wrapper .px-sm-7{padding-right:6rem !important}.editor-styles-wrapper .pb-sm-7,.editor-styles-wrapper .py-sm-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-sm-7,.editor-styles-wrapper .px-sm-7{padding-left:6rem !important}.editor-styles-wrapper .p-sm-8{padding:8rem !important}.editor-styles-wrapper .pt-sm-8,.editor-styles-wrapper .py-sm-8{padding-top:8rem !important}.editor-styles-wrapper .pr-sm-8,.editor-styles-wrapper .px-sm-8{padding-right:8rem !important}.editor-styles-wrapper .pb-sm-8,.editor-styles-wrapper .py-sm-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-sm-8,.editor-styles-wrapper .px-sm-8{padding-left:8rem !important}.editor-styles-wrapper .p-sm-9{padding:10rem !important}.editor-styles-wrapper .pt-sm-9,.editor-styles-wrapper .py-sm-9{padding-top:10rem !important}.editor-styles-wrapper .pr-sm-9,.editor-styles-wrapper .px-sm-9{padding-right:10rem !important}.editor-styles-wrapper .pb-sm-9,.editor-styles-wrapper .py-sm-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-sm-9,.editor-styles-wrapper .px-sm-9{padding-left:10rem !important}.editor-styles-wrapper .p-sm-10{padding:12rem !important}.editor-styles-wrapper .pt-sm-10,.editor-styles-wrapper .py-sm-10{padding-top:12rem !important}.editor-styles-wrapper .pr-sm-10,.editor-styles-wrapper .px-sm-10{padding-right:12rem !important}.editor-styles-wrapper .pb-sm-10,.editor-styles-wrapper .py-sm-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-sm-10,.editor-styles-wrapper .px-sm-10{padding-left:12rem !important}.editor-styles-wrapper .p-sm-11{padding:14rem !important}.editor-styles-wrapper .pt-sm-11,.editor-styles-wrapper .py-sm-11{padding-top:14rem !important}.editor-styles-wrapper .pr-sm-11,.editor-styles-wrapper .px-sm-11{padding-right:14rem !important}.editor-styles-wrapper .pb-sm-11,.editor-styles-wrapper .py-sm-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-sm-11,.editor-styles-wrapper .px-sm-11{padding-left:14rem !important}.editor-styles-wrapper .p-sm-12{padding:16rem !important}.editor-styles-wrapper .pt-sm-12,.editor-styles-wrapper .py-sm-12{padding-top:16rem !important}.editor-styles-wrapper .pr-sm-12,.editor-styles-wrapper .px-sm-12{padding-right:16rem !important}.editor-styles-wrapper .pb-sm-12,.editor-styles-wrapper .py-sm-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-sm-12,.editor-styles-wrapper .px-sm-12{padding-left:16rem !important}.editor-styles-wrapper .m-sm-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-sm-n1,.editor-styles-wrapper .my-sm-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-sm-n1,.editor-styles-wrapper .mx-sm-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-sm-n1,.editor-styles-wrapper .my-sm-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-sm-n1,.editor-styles-wrapper .mx-sm-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-sm-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-sm-n2,.editor-styles-wrapper .my-sm-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-sm-n2,.editor-styles-wrapper .mx-sm-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-sm-n2,.editor-styles-wrapper .my-sm-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-sm-n2,.editor-styles-wrapper .mx-sm-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-sm-n3{margin:-1rem !important}.editor-styles-wrapper .mt-sm-n3,.editor-styles-wrapper .my-sm-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-sm-n3,.editor-styles-wrapper .mx-sm-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-sm-n3,.editor-styles-wrapper .my-sm-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-sm-n3,.editor-styles-wrapper .mx-sm-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-sm-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-sm-n4,.editor-styles-wrapper .my-sm-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-sm-n4,.editor-styles-wrapper .mx-sm-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-sm-n4,.editor-styles-wrapper .my-sm-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-sm-n4,.editor-styles-wrapper .mx-sm-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-sm-n5{margin:-3rem !important}.editor-styles-wrapper .mt-sm-n5,.editor-styles-wrapper .my-sm-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-sm-n5,.editor-styles-wrapper .mx-sm-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-sm-n5,.editor-styles-wrapper .my-sm-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-sm-n5,.editor-styles-wrapper .mx-sm-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-sm-n6{margin:-4rem !important}.editor-styles-wrapper .mt-sm-n6,.editor-styles-wrapper .my-sm-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-sm-n6,.editor-styles-wrapper .mx-sm-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-sm-n6,.editor-styles-wrapper .my-sm-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-sm-n6,.editor-styles-wrapper .mx-sm-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-sm-n7{margin:-6rem !important}.editor-styles-wrapper .mt-sm-n7,.editor-styles-wrapper .my-sm-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-sm-n7,.editor-styles-wrapper .mx-sm-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-sm-n7,.editor-styles-wrapper .my-sm-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-sm-n7,.editor-styles-wrapper .mx-sm-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-sm-n8{margin:-8rem !important}.editor-styles-wrapper .mt-sm-n8,.editor-styles-wrapper .my-sm-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-sm-n8,.editor-styles-wrapper .mx-sm-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-sm-n8,.editor-styles-wrapper .my-sm-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-sm-n8,.editor-styles-wrapper .mx-sm-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-sm-n9{margin:-10rem !important}.editor-styles-wrapper .mt-sm-n9,.editor-styles-wrapper .my-sm-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-sm-n9,.editor-styles-wrapper .mx-sm-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-sm-n9,.editor-styles-wrapper .my-sm-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-sm-n9,.editor-styles-wrapper .mx-sm-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-sm-n10{margin:-12rem !important}.editor-styles-wrapper .mt-sm-n10,.editor-styles-wrapper .my-sm-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-sm-n10,.editor-styles-wrapper .mx-sm-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-sm-n10,.editor-styles-wrapper .my-sm-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-sm-n10,.editor-styles-wrapper .mx-sm-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-sm-n11{margin:-14rem !important}.editor-styles-wrapper .mt-sm-n11,.editor-styles-wrapper .my-sm-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-sm-n11,.editor-styles-wrapper .mx-sm-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-sm-n11,.editor-styles-wrapper .my-sm-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-sm-n11,.editor-styles-wrapper .mx-sm-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-sm-n12{margin:-16rem !important}.editor-styles-wrapper .mt-sm-n12,.editor-styles-wrapper .my-sm-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-sm-n12,.editor-styles-wrapper .mx-sm-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-sm-n12,.editor-styles-wrapper .my-sm-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-sm-n12,.editor-styles-wrapper .mx-sm-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-sm-auto{margin:auto !important}.editor-styles-wrapper .mt-sm-auto,.editor-styles-wrapper .my-sm-auto{margin-top:auto !important}.editor-styles-wrapper .mr-sm-auto,.editor-styles-wrapper .mx-sm-auto{margin-right:auto !important}.editor-styles-wrapper .mb-sm-auto,.editor-styles-wrapper .my-sm-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-sm-auto,.editor-styles-wrapper .mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.editor-styles-wrapper .m-md-0{margin:0 !important}.editor-styles-wrapper .mt-md-0,.editor-styles-wrapper .my-md-0{margin-top:0 !important}.editor-styles-wrapper .mr-md-0,.editor-styles-wrapper .mx-md-0{margin-right:0 !important}.editor-styles-wrapper .mb-md-0,.editor-styles-wrapper .my-md-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-md-0,.editor-styles-wrapper .mx-md-0{margin-left:0 !important}.editor-styles-wrapper .m-md-1{margin:.25rem !important}.editor-styles-wrapper .mt-md-1,.editor-styles-wrapper .my-md-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-md-1,.editor-styles-wrapper .mx-md-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-md-1,.editor-styles-wrapper .my-md-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-md-1,.editor-styles-wrapper .mx-md-1{margin-left:.25rem !important}.editor-styles-wrapper .m-md-2{margin:.5rem !important}.editor-styles-wrapper .mt-md-2,.editor-styles-wrapper .my-md-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-md-2,.editor-styles-wrapper .mx-md-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-md-2,.editor-styles-wrapper .my-md-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-md-2,.editor-styles-wrapper .mx-md-2{margin-left:.5rem !important}.editor-styles-wrapper .m-md-3{margin:1rem !important}.editor-styles-wrapper .mt-md-3,.editor-styles-wrapper .my-md-3{margin-top:1rem !important}.editor-styles-wrapper .mr-md-3,.editor-styles-wrapper .mx-md-3{margin-right:1rem !important}.editor-styles-wrapper .mb-md-3,.editor-styles-wrapper .my-md-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-md-3,.editor-styles-wrapper .mx-md-3{margin-left:1rem !important}.editor-styles-wrapper .m-md-4{margin:1.5rem !important}.editor-styles-wrapper .mt-md-4,.editor-styles-wrapper .my-md-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-md-4,.editor-styles-wrapper .mx-md-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-md-4,.editor-styles-wrapper .my-md-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-md-4,.editor-styles-wrapper .mx-md-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-md-5{margin:3rem !important}.editor-styles-wrapper .mt-md-5,.editor-styles-wrapper .my-md-5{margin-top:3rem !important}.editor-styles-wrapper .mr-md-5,.editor-styles-wrapper .mx-md-5{margin-right:3rem !important}.editor-styles-wrapper .mb-md-5,.editor-styles-wrapper .my-md-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-md-5,.editor-styles-wrapper .mx-md-5{margin-left:3rem !important}.editor-styles-wrapper .m-md-6{margin:4rem !important}.editor-styles-wrapper .mt-md-6,.editor-styles-wrapper .my-md-6{margin-top:4rem !important}.editor-styles-wrapper .mr-md-6,.editor-styles-wrapper .mx-md-6{margin-right:4rem !important}.editor-styles-wrapper .mb-md-6,.editor-styles-wrapper .my-md-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-md-6,.editor-styles-wrapper .mx-md-6{margin-left:4rem !important}.editor-styles-wrapper .m-md-7{margin:6rem !important}.editor-styles-wrapper .mt-md-7,.editor-styles-wrapper .my-md-7{margin-top:6rem !important}.editor-styles-wrapper .mr-md-7,.editor-styles-wrapper .mx-md-7{margin-right:6rem !important}.editor-styles-wrapper .mb-md-7,.editor-styles-wrapper .my-md-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-md-7,.editor-styles-wrapper .mx-md-7{margin-left:6rem !important}.editor-styles-wrapper .m-md-8{margin:8rem !important}.editor-styles-wrapper .mt-md-8,.editor-styles-wrapper .my-md-8{margin-top:8rem !important}.editor-styles-wrapper .mr-md-8,.editor-styles-wrapper .mx-md-8{margin-right:8rem !important}.editor-styles-wrapper .mb-md-8,.editor-styles-wrapper .my-md-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-md-8,.editor-styles-wrapper .mx-md-8{margin-left:8rem !important}.editor-styles-wrapper .m-md-9{margin:10rem !important}.editor-styles-wrapper .mt-md-9,.editor-styles-wrapper .my-md-9{margin-top:10rem !important}.editor-styles-wrapper .mr-md-9,.editor-styles-wrapper .mx-md-9{margin-right:10rem !important}.editor-styles-wrapper .mb-md-9,.editor-styles-wrapper .my-md-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-md-9,.editor-styles-wrapper .mx-md-9{margin-left:10rem !important}.editor-styles-wrapper .m-md-10{margin:12rem !important}.editor-styles-wrapper .mt-md-10,.editor-styles-wrapper .my-md-10{margin-top:12rem !important}.editor-styles-wrapper .mr-md-10,.editor-styles-wrapper .mx-md-10{margin-right:12rem !important}.editor-styles-wrapper .mb-md-10,.editor-styles-wrapper .my-md-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-md-10,.editor-styles-wrapper .mx-md-10{margin-left:12rem !important}.editor-styles-wrapper .m-md-11{margin:14rem !important}.editor-styles-wrapper .mt-md-11,.editor-styles-wrapper .my-md-11{margin-top:14rem !important}.editor-styles-wrapper .mr-md-11,.editor-styles-wrapper .mx-md-11{margin-right:14rem !important}.editor-styles-wrapper .mb-md-11,.editor-styles-wrapper .my-md-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-md-11,.editor-styles-wrapper .mx-md-11{margin-left:14rem !important}.editor-styles-wrapper .m-md-12{margin:16rem !important}.editor-styles-wrapper .mt-md-12,.editor-styles-wrapper .my-md-12{margin-top:16rem !important}.editor-styles-wrapper .mr-md-12,.editor-styles-wrapper .mx-md-12{margin-right:16rem !important}.editor-styles-wrapper .mb-md-12,.editor-styles-wrapper .my-md-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-md-12,.editor-styles-wrapper .mx-md-12{margin-left:16rem !important}.editor-styles-wrapper .p-md-0{padding:0 !important}.editor-styles-wrapper .pt-md-0,.editor-styles-wrapper .py-md-0{padding-top:0 !important}.editor-styles-wrapper .pr-md-0,.editor-styles-wrapper .px-md-0{padding-right:0 !important}.editor-styles-wrapper .pb-md-0,.editor-styles-wrapper .py-md-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-md-0,.editor-styles-wrapper .px-md-0{padding-left:0 !important}.editor-styles-wrapper .p-md-1{padding:.25rem !important}.editor-styles-wrapper .pt-md-1,.editor-styles-wrapper .py-md-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-md-1,.editor-styles-wrapper .px-md-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-md-1,.editor-styles-wrapper .py-md-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-md-1,.editor-styles-wrapper .px-md-1{padding-left:.25rem !important}.editor-styles-wrapper .p-md-2{padding:.5rem !important}.editor-styles-wrapper .pt-md-2,.editor-styles-wrapper .py-md-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-md-2,.editor-styles-wrapper .px-md-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-md-2,.editor-styles-wrapper .py-md-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-md-2,.editor-styles-wrapper .px-md-2{padding-left:.5rem !important}.editor-styles-wrapper .p-md-3{padding:1rem !important}.editor-styles-wrapper .pt-md-3,.editor-styles-wrapper .py-md-3{padding-top:1rem !important}.editor-styles-wrapper .pr-md-3,.editor-styles-wrapper .px-md-3{padding-right:1rem !important}.editor-styles-wrapper .pb-md-3,.editor-styles-wrapper .py-md-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-md-3,.editor-styles-wrapper .px-md-3{padding-left:1rem !important}.editor-styles-wrapper .p-md-4{padding:1.5rem !important}.editor-styles-wrapper .pt-md-4,.editor-styles-wrapper .py-md-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-md-4,.editor-styles-wrapper .px-md-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-md-4,.editor-styles-wrapper .py-md-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-md-4,.editor-styles-wrapper .px-md-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-md-5{padding:3rem !important}.editor-styles-wrapper .pt-md-5,.editor-styles-wrapper .py-md-5{padding-top:3rem !important}.editor-styles-wrapper .pr-md-5,.editor-styles-wrapper .px-md-5{padding-right:3rem !important}.editor-styles-wrapper .pb-md-5,.editor-styles-wrapper .py-md-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-md-5,.editor-styles-wrapper .px-md-5{padding-left:3rem !important}.editor-styles-wrapper .p-md-6{padding:4rem !important}.editor-styles-wrapper .pt-md-6,.editor-styles-wrapper .py-md-6{padding-top:4rem !important}.editor-styles-wrapper .pr-md-6,.editor-styles-wrapper .px-md-6{padding-right:4rem !important}.editor-styles-wrapper .pb-md-6,.editor-styles-wrapper .py-md-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-md-6,.editor-styles-wrapper .px-md-6{padding-left:4rem !important}.editor-styles-wrapper .p-md-7{padding:6rem !important}.editor-styles-wrapper .pt-md-7,.editor-styles-wrapper .py-md-7{padding-top:6rem !important}.editor-styles-wrapper .pr-md-7,.editor-styles-wrapper .px-md-7{padding-right:6rem !important}.editor-styles-wrapper .pb-md-7,.editor-styles-wrapper .py-md-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-md-7,.editor-styles-wrapper .px-md-7{padding-left:6rem !important}.editor-styles-wrapper .p-md-8{padding:8rem !important}.editor-styles-wrapper .pt-md-8,.editor-styles-wrapper .py-md-8{padding-top:8rem !important}.editor-styles-wrapper .pr-md-8,.editor-styles-wrapper .px-md-8{padding-right:8rem !important}.editor-styles-wrapper .pb-md-8,.editor-styles-wrapper .py-md-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-md-8,.editor-styles-wrapper .px-md-8{padding-left:8rem !important}.editor-styles-wrapper .p-md-9{padding:10rem !important}.editor-styles-wrapper .pt-md-9,.editor-styles-wrapper .py-md-9{padding-top:10rem !important}.editor-styles-wrapper .pr-md-9,.editor-styles-wrapper .px-md-9{padding-right:10rem !important}.editor-styles-wrapper .pb-md-9,.editor-styles-wrapper .py-md-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-md-9,.editor-styles-wrapper .px-md-9{padding-left:10rem !important}.editor-styles-wrapper .p-md-10{padding:12rem !important}.editor-styles-wrapper .pt-md-10,.editor-styles-wrapper .py-md-10{padding-top:12rem !important}.editor-styles-wrapper .pr-md-10,.editor-styles-wrapper .px-md-10{padding-right:12rem !important}.editor-styles-wrapper .pb-md-10,.editor-styles-wrapper .py-md-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-md-10,.editor-styles-wrapper .px-md-10{padding-left:12rem !important}.editor-styles-wrapper .p-md-11{padding:14rem !important}.editor-styles-wrapper .pt-md-11,.editor-styles-wrapper .py-md-11{padding-top:14rem !important}.editor-styles-wrapper .pr-md-11,.editor-styles-wrapper .px-md-11{padding-right:14rem !important}.editor-styles-wrapper .pb-md-11,.editor-styles-wrapper .py-md-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-md-11,.editor-styles-wrapper .px-md-11{padding-left:14rem !important}.editor-styles-wrapper .p-md-12{padding:16rem !important}.editor-styles-wrapper .pt-md-12,.editor-styles-wrapper .py-md-12{padding-top:16rem !important}.editor-styles-wrapper .pr-md-12,.editor-styles-wrapper .px-md-12{padding-right:16rem !important}.editor-styles-wrapper .pb-md-12,.editor-styles-wrapper .py-md-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-md-12,.editor-styles-wrapper .px-md-12{padding-left:16rem !important}.editor-styles-wrapper .m-md-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-md-n1,.editor-styles-wrapper .my-md-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-md-n1,.editor-styles-wrapper .mx-md-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-md-n1,.editor-styles-wrapper .my-md-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-md-n1,.editor-styles-wrapper .mx-md-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-md-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-md-n2,.editor-styles-wrapper .my-md-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-md-n2,.editor-styles-wrapper .mx-md-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-md-n2,.editor-styles-wrapper .my-md-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-md-n2,.editor-styles-wrapper .mx-md-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-md-n3{margin:-1rem !important}.editor-styles-wrapper .mt-md-n3,.editor-styles-wrapper .my-md-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-md-n3,.editor-styles-wrapper .mx-md-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-md-n3,.editor-styles-wrapper .my-md-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-md-n3,.editor-styles-wrapper .mx-md-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-md-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-md-n4,.editor-styles-wrapper .my-md-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-md-n4,.editor-styles-wrapper .mx-md-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-md-n4,.editor-styles-wrapper .my-md-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-md-n4,.editor-styles-wrapper .mx-md-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-md-n5{margin:-3rem !important}.editor-styles-wrapper .mt-md-n5,.editor-styles-wrapper .my-md-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-md-n5,.editor-styles-wrapper .mx-md-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-md-n5,.editor-styles-wrapper .my-md-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-md-n5,.editor-styles-wrapper .mx-md-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-md-n6{margin:-4rem !important}.editor-styles-wrapper .mt-md-n6,.editor-styles-wrapper .my-md-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-md-n6,.editor-styles-wrapper .mx-md-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-md-n6,.editor-styles-wrapper .my-md-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-md-n6,.editor-styles-wrapper .mx-md-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-md-n7{margin:-6rem !important}.editor-styles-wrapper .mt-md-n7,.editor-styles-wrapper .my-md-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-md-n7,.editor-styles-wrapper .mx-md-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-md-n7,.editor-styles-wrapper .my-md-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-md-n7,.editor-styles-wrapper .mx-md-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-md-n8{margin:-8rem !important}.editor-styles-wrapper .mt-md-n8,.editor-styles-wrapper .my-md-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-md-n8,.editor-styles-wrapper .mx-md-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-md-n8,.editor-styles-wrapper .my-md-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-md-n8,.editor-styles-wrapper .mx-md-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-md-n9{margin:-10rem !important}.editor-styles-wrapper .mt-md-n9,.editor-styles-wrapper .my-md-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-md-n9,.editor-styles-wrapper .mx-md-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-md-n9,.editor-styles-wrapper .my-md-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-md-n9,.editor-styles-wrapper .mx-md-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-md-n10{margin:-12rem !important}.editor-styles-wrapper .mt-md-n10,.editor-styles-wrapper .my-md-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-md-n10,.editor-styles-wrapper .mx-md-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-md-n10,.editor-styles-wrapper .my-md-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-md-n10,.editor-styles-wrapper .mx-md-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-md-n11{margin:-14rem !important}.editor-styles-wrapper .mt-md-n11,.editor-styles-wrapper .my-md-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-md-n11,.editor-styles-wrapper .mx-md-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-md-n11,.editor-styles-wrapper .my-md-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-md-n11,.editor-styles-wrapper .mx-md-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-md-n12{margin:-16rem !important}.editor-styles-wrapper .mt-md-n12,.editor-styles-wrapper .my-md-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-md-n12,.editor-styles-wrapper .mx-md-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-md-n12,.editor-styles-wrapper .my-md-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-md-n12,.editor-styles-wrapper .mx-md-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-md-auto{margin:auto !important}.editor-styles-wrapper .mt-md-auto,.editor-styles-wrapper .my-md-auto{margin-top:auto !important}.editor-styles-wrapper .mr-md-auto,.editor-styles-wrapper .mx-md-auto{margin-right:auto !important}.editor-styles-wrapper .mb-md-auto,.editor-styles-wrapper .my-md-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-md-auto,.editor-styles-wrapper .mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.editor-styles-wrapper .m-lg-0{margin:0 !important}.editor-styles-wrapper .mt-lg-0,.editor-styles-wrapper .my-lg-0{margin-top:0 !important}.editor-styles-wrapper .mr-lg-0,.editor-styles-wrapper .mx-lg-0{margin-right:0 !important}.editor-styles-wrapper .mb-lg-0,.editor-styles-wrapper .my-lg-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-lg-0,.editor-styles-wrapper .mx-lg-0{margin-left:0 !important}.editor-styles-wrapper .m-lg-1{margin:.25rem !important}.editor-styles-wrapper .mt-lg-1,.editor-styles-wrapper .my-lg-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-lg-1,.editor-styles-wrapper .mx-lg-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-lg-1,.editor-styles-wrapper .my-lg-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-lg-1,.editor-styles-wrapper .mx-lg-1{margin-left:.25rem !important}.editor-styles-wrapper .m-lg-2{margin:.5rem !important}.editor-styles-wrapper .mt-lg-2,.editor-styles-wrapper .my-lg-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-lg-2,.editor-styles-wrapper .mx-lg-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-lg-2,.editor-styles-wrapper .my-lg-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-lg-2,.editor-styles-wrapper .mx-lg-2{margin-left:.5rem !important}.editor-styles-wrapper .m-lg-3{margin:1rem !important}.editor-styles-wrapper .mt-lg-3,.editor-styles-wrapper .my-lg-3{margin-top:1rem !important}.editor-styles-wrapper .mr-lg-3,.editor-styles-wrapper .mx-lg-3{margin-right:1rem !important}.editor-styles-wrapper .mb-lg-3,.editor-styles-wrapper .my-lg-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-lg-3,.editor-styles-wrapper .mx-lg-3{margin-left:1rem !important}.editor-styles-wrapper .m-lg-4{margin:1.5rem !important}.editor-styles-wrapper .mt-lg-4,.editor-styles-wrapper .my-lg-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-lg-4,.editor-styles-wrapper .mx-lg-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-lg-4,.editor-styles-wrapper .my-lg-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-lg-4,.editor-styles-wrapper .mx-lg-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-lg-5{margin:3rem !important}.editor-styles-wrapper .mt-lg-5,.editor-styles-wrapper .my-lg-5{margin-top:3rem !important}.editor-styles-wrapper .mr-lg-5,.editor-styles-wrapper .mx-lg-5{margin-right:3rem !important}.editor-styles-wrapper .mb-lg-5,.editor-styles-wrapper .my-lg-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-lg-5,.editor-styles-wrapper .mx-lg-5{margin-left:3rem !important}.editor-styles-wrapper .m-lg-6{margin:4rem !important}.editor-styles-wrapper .mt-lg-6,.editor-styles-wrapper .my-lg-6{margin-top:4rem !important}.editor-styles-wrapper .mr-lg-6,.editor-styles-wrapper .mx-lg-6{margin-right:4rem !important}.editor-styles-wrapper .mb-lg-6,.editor-styles-wrapper .my-lg-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-lg-6,.editor-styles-wrapper .mx-lg-6{margin-left:4rem !important}.editor-styles-wrapper .m-lg-7{margin:6rem !important}.editor-styles-wrapper .mt-lg-7,.editor-styles-wrapper .my-lg-7{margin-top:6rem !important}.editor-styles-wrapper .mr-lg-7,.editor-styles-wrapper .mx-lg-7{margin-right:6rem !important}.editor-styles-wrapper .mb-lg-7,.editor-styles-wrapper .my-lg-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-lg-7,.editor-styles-wrapper .mx-lg-7{margin-left:6rem !important}.editor-styles-wrapper .m-lg-8{margin:8rem !important}.editor-styles-wrapper .mt-lg-8,.editor-styles-wrapper .my-lg-8{margin-top:8rem !important}.editor-styles-wrapper .mr-lg-8,.editor-styles-wrapper .mx-lg-8{margin-right:8rem !important}.editor-styles-wrapper .mb-lg-8,.editor-styles-wrapper .my-lg-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-lg-8,.editor-styles-wrapper .mx-lg-8{margin-left:8rem !important}.editor-styles-wrapper .m-lg-9{margin:10rem !important}.editor-styles-wrapper .mt-lg-9,.editor-styles-wrapper .my-lg-9{margin-top:10rem !important}.editor-styles-wrapper .mr-lg-9,.editor-styles-wrapper .mx-lg-9{margin-right:10rem !important}.editor-styles-wrapper .mb-lg-9,.editor-styles-wrapper .my-lg-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-lg-9,.editor-styles-wrapper .mx-lg-9{margin-left:10rem !important}.editor-styles-wrapper .m-lg-10{margin:12rem !important}.editor-styles-wrapper .mt-lg-10,.editor-styles-wrapper .my-lg-10{margin-top:12rem !important}.editor-styles-wrapper .mr-lg-10,.editor-styles-wrapper .mx-lg-10{margin-right:12rem !important}.editor-styles-wrapper .mb-lg-10,.editor-styles-wrapper .my-lg-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-lg-10,.editor-styles-wrapper .mx-lg-10{margin-left:12rem !important}.editor-styles-wrapper .m-lg-11{margin:14rem !important}.editor-styles-wrapper .mt-lg-11,.editor-styles-wrapper .my-lg-11{margin-top:14rem !important}.editor-styles-wrapper .mr-lg-11,.editor-styles-wrapper .mx-lg-11{margin-right:14rem !important}.editor-styles-wrapper .mb-lg-11,.editor-styles-wrapper .my-lg-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-lg-11,.editor-styles-wrapper .mx-lg-11{margin-left:14rem !important}.editor-styles-wrapper .m-lg-12{margin:16rem !important}.editor-styles-wrapper .mt-lg-12,.editor-styles-wrapper .my-lg-12{margin-top:16rem !important}.editor-styles-wrapper .mr-lg-12,.editor-styles-wrapper .mx-lg-12{margin-right:16rem !important}.editor-styles-wrapper .mb-lg-12,.editor-styles-wrapper .my-lg-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-lg-12,.editor-styles-wrapper .mx-lg-12{margin-left:16rem !important}.editor-styles-wrapper .p-lg-0{padding:0 !important}.editor-styles-wrapper .pt-lg-0,.editor-styles-wrapper .py-lg-0{padding-top:0 !important}.editor-styles-wrapper .pr-lg-0,.editor-styles-wrapper .px-lg-0{padding-right:0 !important}.editor-styles-wrapper .pb-lg-0,.editor-styles-wrapper .py-lg-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-lg-0,.editor-styles-wrapper .px-lg-0{padding-left:0 !important}.editor-styles-wrapper .p-lg-1{padding:.25rem !important}.editor-styles-wrapper .pt-lg-1,.editor-styles-wrapper .py-lg-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-lg-1,.editor-styles-wrapper .px-lg-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-lg-1,.editor-styles-wrapper .py-lg-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-lg-1,.editor-styles-wrapper .px-lg-1{padding-left:.25rem !important}.editor-styles-wrapper .p-lg-2{padding:.5rem !important}.editor-styles-wrapper .pt-lg-2,.editor-styles-wrapper .py-lg-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-lg-2,.editor-styles-wrapper .px-lg-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-lg-2,.editor-styles-wrapper .py-lg-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-lg-2,.editor-styles-wrapper .px-lg-2{padding-left:.5rem !important}.editor-styles-wrapper .p-lg-3{padding:1rem !important}.editor-styles-wrapper .pt-lg-3,.editor-styles-wrapper .py-lg-3{padding-top:1rem !important}.editor-styles-wrapper .pr-lg-3,.editor-styles-wrapper .px-lg-3{padding-right:1rem !important}.editor-styles-wrapper .pb-lg-3,.editor-styles-wrapper .py-lg-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-lg-3,.editor-styles-wrapper .px-lg-3{padding-left:1rem !important}.editor-styles-wrapper .p-lg-4{padding:1.5rem !important}.editor-styles-wrapper .pt-lg-4,.editor-styles-wrapper .py-lg-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-lg-4,.editor-styles-wrapper .px-lg-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-lg-4,.editor-styles-wrapper .py-lg-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-lg-4,.editor-styles-wrapper .px-lg-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-lg-5{padding:3rem !important}.editor-styles-wrapper .pt-lg-5,.editor-styles-wrapper .py-lg-5{padding-top:3rem !important}.editor-styles-wrapper .pr-lg-5,.editor-styles-wrapper .px-lg-5{padding-right:3rem !important}.editor-styles-wrapper .pb-lg-5,.editor-styles-wrapper .py-lg-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-lg-5,.editor-styles-wrapper .px-lg-5{padding-left:3rem !important}.editor-styles-wrapper .p-lg-6{padding:4rem !important}.editor-styles-wrapper .pt-lg-6,.editor-styles-wrapper .py-lg-6{padding-top:4rem !important}.editor-styles-wrapper .pr-lg-6,.editor-styles-wrapper .px-lg-6{padding-right:4rem !important}.editor-styles-wrapper .pb-lg-6,.editor-styles-wrapper .py-lg-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-lg-6,.editor-styles-wrapper .px-lg-6{padding-left:4rem !important}.editor-styles-wrapper .p-lg-7{padding:6rem !important}.editor-styles-wrapper .pt-lg-7,.editor-styles-wrapper .py-lg-7{padding-top:6rem !important}.editor-styles-wrapper .pr-lg-7,.editor-styles-wrapper .px-lg-7{padding-right:6rem !important}.editor-styles-wrapper .pb-lg-7,.editor-styles-wrapper .py-lg-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-lg-7,.editor-styles-wrapper .px-lg-7{padding-left:6rem !important}.editor-styles-wrapper .p-lg-8{padding:8rem !important}.editor-styles-wrapper .pt-lg-8,.editor-styles-wrapper .py-lg-8{padding-top:8rem !important}.editor-styles-wrapper .pr-lg-8,.editor-styles-wrapper .px-lg-8{padding-right:8rem !important}.editor-styles-wrapper .pb-lg-8,.editor-styles-wrapper .py-lg-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-lg-8,.editor-styles-wrapper .px-lg-8{padding-left:8rem !important}.editor-styles-wrapper .p-lg-9{padding:10rem !important}.editor-styles-wrapper .pt-lg-9,.editor-styles-wrapper .py-lg-9{padding-top:10rem !important}.editor-styles-wrapper .pr-lg-9,.editor-styles-wrapper .px-lg-9{padding-right:10rem !important}.editor-styles-wrapper .pb-lg-9,.editor-styles-wrapper .py-lg-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-lg-9,.editor-styles-wrapper .px-lg-9{padding-left:10rem !important}.editor-styles-wrapper .p-lg-10{padding:12rem !important}.editor-styles-wrapper .pt-lg-10,.editor-styles-wrapper .py-lg-10{padding-top:12rem !important}.editor-styles-wrapper .pr-lg-10,.editor-styles-wrapper .px-lg-10{padding-right:12rem !important}.editor-styles-wrapper .pb-lg-10,.editor-styles-wrapper .py-lg-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-lg-10,.editor-styles-wrapper .px-lg-10{padding-left:12rem !important}.editor-styles-wrapper .p-lg-11{padding:14rem !important}.editor-styles-wrapper .pt-lg-11,.editor-styles-wrapper .py-lg-11{padding-top:14rem !important}.editor-styles-wrapper .pr-lg-11,.editor-styles-wrapper .px-lg-11{padding-right:14rem !important}.editor-styles-wrapper .pb-lg-11,.editor-styles-wrapper .py-lg-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-lg-11,.editor-styles-wrapper .px-lg-11{padding-left:14rem !important}.editor-styles-wrapper .p-lg-12{padding:16rem !important}.editor-styles-wrapper .pt-lg-12,.editor-styles-wrapper .py-lg-12{padding-top:16rem !important}.editor-styles-wrapper .pr-lg-12,.editor-styles-wrapper .px-lg-12{padding-right:16rem !important}.editor-styles-wrapper .pb-lg-12,.editor-styles-wrapper .py-lg-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-lg-12,.editor-styles-wrapper .px-lg-12{padding-left:16rem !important}.editor-styles-wrapper .m-lg-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-lg-n1,.editor-styles-wrapper .my-lg-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-lg-n1,.editor-styles-wrapper .mx-lg-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-lg-n1,.editor-styles-wrapper .my-lg-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-lg-n1,.editor-styles-wrapper .mx-lg-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-lg-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-lg-n2,.editor-styles-wrapper .my-lg-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-lg-n2,.editor-styles-wrapper .mx-lg-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-lg-n2,.editor-styles-wrapper .my-lg-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-lg-n2,.editor-styles-wrapper .mx-lg-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-lg-n3{margin:-1rem !important}.editor-styles-wrapper .mt-lg-n3,.editor-styles-wrapper .my-lg-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-lg-n3,.editor-styles-wrapper .mx-lg-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-lg-n3,.editor-styles-wrapper .my-lg-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-lg-n3,.editor-styles-wrapper .mx-lg-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-lg-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-lg-n4,.editor-styles-wrapper .my-lg-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-lg-n4,.editor-styles-wrapper .mx-lg-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-lg-n4,.editor-styles-wrapper .my-lg-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-lg-n4,.editor-styles-wrapper .mx-lg-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-lg-n5{margin:-3rem !important}.editor-styles-wrapper .mt-lg-n5,.editor-styles-wrapper .my-lg-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-lg-n5,.editor-styles-wrapper .mx-lg-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-lg-n5,.editor-styles-wrapper .my-lg-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-lg-n5,.editor-styles-wrapper .mx-lg-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-lg-n6{margin:-4rem !important}.editor-styles-wrapper .mt-lg-n6,.editor-styles-wrapper .my-lg-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-lg-n6,.editor-styles-wrapper .mx-lg-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-lg-n6,.editor-styles-wrapper .my-lg-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-lg-n6,.editor-styles-wrapper .mx-lg-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-lg-n7{margin:-6rem !important}.editor-styles-wrapper .mt-lg-n7,.editor-styles-wrapper .my-lg-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-lg-n7,.editor-styles-wrapper .mx-lg-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-lg-n7,.editor-styles-wrapper .my-lg-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-lg-n7,.editor-styles-wrapper .mx-lg-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-lg-n8{margin:-8rem !important}.editor-styles-wrapper .mt-lg-n8,.editor-styles-wrapper .my-lg-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-lg-n8,.editor-styles-wrapper .mx-lg-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-lg-n8,.editor-styles-wrapper .my-lg-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-lg-n8,.editor-styles-wrapper .mx-lg-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-lg-n9{margin:-10rem !important}.editor-styles-wrapper .mt-lg-n9,.editor-styles-wrapper .my-lg-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-lg-n9,.editor-styles-wrapper .mx-lg-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-lg-n9,.editor-styles-wrapper .my-lg-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-lg-n9,.editor-styles-wrapper .mx-lg-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-lg-n10{margin:-12rem !important}.editor-styles-wrapper .mt-lg-n10,.editor-styles-wrapper .my-lg-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-lg-n10,.editor-styles-wrapper .mx-lg-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-lg-n10,.editor-styles-wrapper .my-lg-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-lg-n10,.editor-styles-wrapper .mx-lg-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-lg-n11{margin:-14rem !important}.editor-styles-wrapper .mt-lg-n11,.editor-styles-wrapper .my-lg-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-lg-n11,.editor-styles-wrapper .mx-lg-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-lg-n11,.editor-styles-wrapper .my-lg-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-lg-n11,.editor-styles-wrapper .mx-lg-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-lg-n12{margin:-16rem !important}.editor-styles-wrapper .mt-lg-n12,.editor-styles-wrapper .my-lg-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-lg-n12,.editor-styles-wrapper .mx-lg-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-lg-n12,.editor-styles-wrapper .my-lg-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-lg-n12,.editor-styles-wrapper .mx-lg-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-lg-auto{margin:auto !important}.editor-styles-wrapper .mt-lg-auto,.editor-styles-wrapper .my-lg-auto{margin-top:auto !important}.editor-styles-wrapper .mr-lg-auto,.editor-styles-wrapper .mx-lg-auto{margin-right:auto !important}.editor-styles-wrapper .mb-lg-auto,.editor-styles-wrapper .my-lg-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-lg-auto,.editor-styles-wrapper .mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.editor-styles-wrapper .m-xl-0{margin:0 !important}.editor-styles-wrapper .mt-xl-0,.editor-styles-wrapper .my-xl-0{margin-top:0 !important}.editor-styles-wrapper .mr-xl-0,.editor-styles-wrapper .mx-xl-0{margin-right:0 !important}.editor-styles-wrapper .mb-xl-0,.editor-styles-wrapper .my-xl-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-xl-0,.editor-styles-wrapper .mx-xl-0{margin-left:0 !important}.editor-styles-wrapper .m-xl-1{margin:.25rem !important}.editor-styles-wrapper .mt-xl-1,.editor-styles-wrapper .my-xl-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-xl-1,.editor-styles-wrapper .mx-xl-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-xl-1,.editor-styles-wrapper .my-xl-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-xl-1,.editor-styles-wrapper .mx-xl-1{margin-left:.25rem !important}.editor-styles-wrapper .m-xl-2{margin:.5rem !important}.editor-styles-wrapper .mt-xl-2,.editor-styles-wrapper .my-xl-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-xl-2,.editor-styles-wrapper .mx-xl-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-xl-2,.editor-styles-wrapper .my-xl-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-xl-2,.editor-styles-wrapper .mx-xl-2{margin-left:.5rem !important}.editor-styles-wrapper .m-xl-3{margin:1rem !important}.editor-styles-wrapper .mt-xl-3,.editor-styles-wrapper .my-xl-3{margin-top:1rem !important}.editor-styles-wrapper .mr-xl-3,.editor-styles-wrapper .mx-xl-3{margin-right:1rem !important}.editor-styles-wrapper .mb-xl-3,.editor-styles-wrapper .my-xl-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-xl-3,.editor-styles-wrapper .mx-xl-3{margin-left:1rem !important}.editor-styles-wrapper .m-xl-4{margin:1.5rem !important}.editor-styles-wrapper .mt-xl-4,.editor-styles-wrapper .my-xl-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-xl-4,.editor-styles-wrapper .mx-xl-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-xl-4,.editor-styles-wrapper .my-xl-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-xl-4,.editor-styles-wrapper .mx-xl-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-xl-5{margin:3rem !important}.editor-styles-wrapper .mt-xl-5,.editor-styles-wrapper .my-xl-5{margin-top:3rem !important}.editor-styles-wrapper .mr-xl-5,.editor-styles-wrapper .mx-xl-5{margin-right:3rem !important}.editor-styles-wrapper .mb-xl-5,.editor-styles-wrapper .my-xl-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-xl-5,.editor-styles-wrapper .mx-xl-5{margin-left:3rem !important}.editor-styles-wrapper .m-xl-6{margin:4rem !important}.editor-styles-wrapper .mt-xl-6,.editor-styles-wrapper .my-xl-6{margin-top:4rem !important}.editor-styles-wrapper .mr-xl-6,.editor-styles-wrapper .mx-xl-6{margin-right:4rem !important}.editor-styles-wrapper .mb-xl-6,.editor-styles-wrapper .my-xl-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-xl-6,.editor-styles-wrapper .mx-xl-6{margin-left:4rem !important}.editor-styles-wrapper .m-xl-7{margin:6rem !important}.editor-styles-wrapper .mt-xl-7,.editor-styles-wrapper .my-xl-7{margin-top:6rem !important}.editor-styles-wrapper .mr-xl-7,.editor-styles-wrapper .mx-xl-7{margin-right:6rem !important}.editor-styles-wrapper .mb-xl-7,.editor-styles-wrapper .my-xl-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-xl-7,.editor-styles-wrapper .mx-xl-7{margin-left:6rem !important}.editor-styles-wrapper .m-xl-8{margin:8rem !important}.editor-styles-wrapper .mt-xl-8,.editor-styles-wrapper .my-xl-8{margin-top:8rem !important}.editor-styles-wrapper .mr-xl-8,.editor-styles-wrapper .mx-xl-8{margin-right:8rem !important}.editor-styles-wrapper .mb-xl-8,.editor-styles-wrapper .my-xl-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-xl-8,.editor-styles-wrapper .mx-xl-8{margin-left:8rem !important}.editor-styles-wrapper .m-xl-9{margin:10rem !important}.editor-styles-wrapper .mt-xl-9,.editor-styles-wrapper .my-xl-9{margin-top:10rem !important}.editor-styles-wrapper .mr-xl-9,.editor-styles-wrapper .mx-xl-9{margin-right:10rem !important}.editor-styles-wrapper .mb-xl-9,.editor-styles-wrapper .my-xl-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-xl-9,.editor-styles-wrapper .mx-xl-9{margin-left:10rem !important}.editor-styles-wrapper .m-xl-10{margin:12rem !important}.editor-styles-wrapper .mt-xl-10,.editor-styles-wrapper .my-xl-10{margin-top:12rem !important}.editor-styles-wrapper .mr-xl-10,.editor-styles-wrapper .mx-xl-10{margin-right:12rem !important}.editor-styles-wrapper .mb-xl-10,.editor-styles-wrapper .my-xl-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-xl-10,.editor-styles-wrapper .mx-xl-10{margin-left:12rem !important}.editor-styles-wrapper .m-xl-11{margin:14rem !important}.editor-styles-wrapper .mt-xl-11,.editor-styles-wrapper .my-xl-11{margin-top:14rem !important}.editor-styles-wrapper .mr-xl-11,.editor-styles-wrapper .mx-xl-11{margin-right:14rem !important}.editor-styles-wrapper .mb-xl-11,.editor-styles-wrapper .my-xl-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-xl-11,.editor-styles-wrapper .mx-xl-11{margin-left:14rem !important}.editor-styles-wrapper .m-xl-12{margin:16rem !important}.editor-styles-wrapper .mt-xl-12,.editor-styles-wrapper .my-xl-12{margin-top:16rem !important}.editor-styles-wrapper .mr-xl-12,.editor-styles-wrapper .mx-xl-12{margin-right:16rem !important}.editor-styles-wrapper .mb-xl-12,.editor-styles-wrapper .my-xl-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-xl-12,.editor-styles-wrapper .mx-xl-12{margin-left:16rem !important}.editor-styles-wrapper .p-xl-0{padding:0 !important}.editor-styles-wrapper .pt-xl-0,.editor-styles-wrapper .py-xl-0{padding-top:0 !important}.editor-styles-wrapper .pr-xl-0,.editor-styles-wrapper .px-xl-0{padding-right:0 !important}.editor-styles-wrapper .pb-xl-0,.editor-styles-wrapper .py-xl-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-xl-0,.editor-styles-wrapper .px-xl-0{padding-left:0 !important}.editor-styles-wrapper .p-xl-1{padding:.25rem !important}.editor-styles-wrapper .pt-xl-1,.editor-styles-wrapper .py-xl-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-xl-1,.editor-styles-wrapper .px-xl-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-xl-1,.editor-styles-wrapper .py-xl-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-xl-1,.editor-styles-wrapper .px-xl-1{padding-left:.25rem !important}.editor-styles-wrapper .p-xl-2{padding:.5rem !important}.editor-styles-wrapper .pt-xl-2,.editor-styles-wrapper .py-xl-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-xl-2,.editor-styles-wrapper .px-xl-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-xl-2,.editor-styles-wrapper .py-xl-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-xl-2,.editor-styles-wrapper .px-xl-2{padding-left:.5rem !important}.editor-styles-wrapper .p-xl-3{padding:1rem !important}.editor-styles-wrapper .pt-xl-3,.editor-styles-wrapper .py-xl-3{padding-top:1rem !important}.editor-styles-wrapper .pr-xl-3,.editor-styles-wrapper .px-xl-3{padding-right:1rem !important}.editor-styles-wrapper .pb-xl-3,.editor-styles-wrapper .py-xl-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-xl-3,.editor-styles-wrapper .px-xl-3{padding-left:1rem !important}.editor-styles-wrapper .p-xl-4{padding:1.5rem !important}.editor-styles-wrapper .pt-xl-4,.editor-styles-wrapper .py-xl-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-xl-4,.editor-styles-wrapper .px-xl-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-xl-4,.editor-styles-wrapper .py-xl-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-xl-4,.editor-styles-wrapper .px-xl-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-xl-5{padding:3rem !important}.editor-styles-wrapper .pt-xl-5,.editor-styles-wrapper .py-xl-5{padding-top:3rem !important}.editor-styles-wrapper .pr-xl-5,.editor-styles-wrapper .px-xl-5{padding-right:3rem !important}.editor-styles-wrapper .pb-xl-5,.editor-styles-wrapper .py-xl-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-xl-5,.editor-styles-wrapper .px-xl-5{padding-left:3rem !important}.editor-styles-wrapper .p-xl-6{padding:4rem !important}.editor-styles-wrapper .pt-xl-6,.editor-styles-wrapper .py-xl-6{padding-top:4rem !important}.editor-styles-wrapper .pr-xl-6,.editor-styles-wrapper .px-xl-6{padding-right:4rem !important}.editor-styles-wrapper .pb-xl-6,.editor-styles-wrapper .py-xl-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-xl-6,.editor-styles-wrapper .px-xl-6{padding-left:4rem !important}.editor-styles-wrapper .p-xl-7{padding:6rem !important}.editor-styles-wrapper .pt-xl-7,.editor-styles-wrapper .py-xl-7{padding-top:6rem !important}.editor-styles-wrapper .pr-xl-7,.editor-styles-wrapper .px-xl-7{padding-right:6rem !important}.editor-styles-wrapper .pb-xl-7,.editor-styles-wrapper .py-xl-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-xl-7,.editor-styles-wrapper .px-xl-7{padding-left:6rem !important}.editor-styles-wrapper .p-xl-8{padding:8rem !important}.editor-styles-wrapper .pt-xl-8,.editor-styles-wrapper .py-xl-8{padding-top:8rem !important}.editor-styles-wrapper .pr-xl-8,.editor-styles-wrapper .px-xl-8{padding-right:8rem !important}.editor-styles-wrapper .pb-xl-8,.editor-styles-wrapper .py-xl-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-xl-8,.editor-styles-wrapper .px-xl-8{padding-left:8rem !important}.editor-styles-wrapper .p-xl-9{padding:10rem !important}.editor-styles-wrapper .pt-xl-9,.editor-styles-wrapper .py-xl-9{padding-top:10rem !important}.editor-styles-wrapper .pr-xl-9,.editor-styles-wrapper .px-xl-9{padding-right:10rem !important}.editor-styles-wrapper .pb-xl-9,.editor-styles-wrapper .py-xl-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-xl-9,.editor-styles-wrapper .px-xl-9{padding-left:10rem !important}.editor-styles-wrapper .p-xl-10{padding:12rem !important}.editor-styles-wrapper .pt-xl-10,.editor-styles-wrapper .py-xl-10{padding-top:12rem !important}.editor-styles-wrapper .pr-xl-10,.editor-styles-wrapper .px-xl-10{padding-right:12rem !important}.editor-styles-wrapper .pb-xl-10,.editor-styles-wrapper .py-xl-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-xl-10,.editor-styles-wrapper .px-xl-10{padding-left:12rem !important}.editor-styles-wrapper .p-xl-11{padding:14rem !important}.editor-styles-wrapper .pt-xl-11,.editor-styles-wrapper .py-xl-11{padding-top:14rem !important}.editor-styles-wrapper .pr-xl-11,.editor-styles-wrapper .px-xl-11{padding-right:14rem !important}.editor-styles-wrapper .pb-xl-11,.editor-styles-wrapper .py-xl-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-xl-11,.editor-styles-wrapper .px-xl-11{padding-left:14rem !important}.editor-styles-wrapper .p-xl-12{padding:16rem !important}.editor-styles-wrapper .pt-xl-12,.editor-styles-wrapper .py-xl-12{padding-top:16rem !important}.editor-styles-wrapper .pr-xl-12,.editor-styles-wrapper .px-xl-12{padding-right:16rem !important}.editor-styles-wrapper .pb-xl-12,.editor-styles-wrapper .py-xl-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-xl-12,.editor-styles-wrapper .px-xl-12{padding-left:16rem !important}.editor-styles-wrapper .m-xl-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-xl-n1,.editor-styles-wrapper .my-xl-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-xl-n1,.editor-styles-wrapper .mx-xl-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-xl-n1,.editor-styles-wrapper .my-xl-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-xl-n1,.editor-styles-wrapper .mx-xl-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-xl-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-xl-n2,.editor-styles-wrapper .my-xl-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-xl-n2,.editor-styles-wrapper .mx-xl-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-xl-n2,.editor-styles-wrapper .my-xl-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-xl-n2,.editor-styles-wrapper .mx-xl-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-xl-n3{margin:-1rem !important}.editor-styles-wrapper .mt-xl-n3,.editor-styles-wrapper .my-xl-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-xl-n3,.editor-styles-wrapper .mx-xl-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-xl-n3,.editor-styles-wrapper .my-xl-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-xl-n3,.editor-styles-wrapper .mx-xl-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-xl-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-xl-n4,.editor-styles-wrapper .my-xl-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-xl-n4,.editor-styles-wrapper .mx-xl-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-xl-n4,.editor-styles-wrapper .my-xl-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-xl-n4,.editor-styles-wrapper .mx-xl-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-xl-n5{margin:-3rem !important}.editor-styles-wrapper .mt-xl-n5,.editor-styles-wrapper .my-xl-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-xl-n5,.editor-styles-wrapper .mx-xl-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-xl-n5,.editor-styles-wrapper .my-xl-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-xl-n5,.editor-styles-wrapper .mx-xl-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-xl-n6{margin:-4rem !important}.editor-styles-wrapper .mt-xl-n6,.editor-styles-wrapper .my-xl-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-xl-n6,.editor-styles-wrapper .mx-xl-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-xl-n6,.editor-styles-wrapper .my-xl-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-xl-n6,.editor-styles-wrapper .mx-xl-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-xl-n7{margin:-6rem !important}.editor-styles-wrapper .mt-xl-n7,.editor-styles-wrapper .my-xl-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-xl-n7,.editor-styles-wrapper .mx-xl-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-xl-n7,.editor-styles-wrapper .my-xl-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-xl-n7,.editor-styles-wrapper .mx-xl-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-xl-n8{margin:-8rem !important}.editor-styles-wrapper .mt-xl-n8,.editor-styles-wrapper .my-xl-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-xl-n8,.editor-styles-wrapper .mx-xl-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-xl-n8,.editor-styles-wrapper .my-xl-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-xl-n8,.editor-styles-wrapper .mx-xl-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-xl-n9{margin:-10rem !important}.editor-styles-wrapper .mt-xl-n9,.editor-styles-wrapper .my-xl-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-xl-n9,.editor-styles-wrapper .mx-xl-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-xl-n9,.editor-styles-wrapper .my-xl-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-xl-n9,.editor-styles-wrapper .mx-xl-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-xl-n10{margin:-12rem !important}.editor-styles-wrapper .mt-xl-n10,.editor-styles-wrapper .my-xl-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-xl-n10,.editor-styles-wrapper .mx-xl-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-xl-n10,.editor-styles-wrapper .my-xl-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-xl-n10,.editor-styles-wrapper .mx-xl-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-xl-n11{margin:-14rem !important}.editor-styles-wrapper .mt-xl-n11,.editor-styles-wrapper .my-xl-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-xl-n11,.editor-styles-wrapper .mx-xl-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-xl-n11,.editor-styles-wrapper .my-xl-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-xl-n11,.editor-styles-wrapper .mx-xl-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-xl-n12{margin:-16rem !important}.editor-styles-wrapper .mt-xl-n12,.editor-styles-wrapper .my-xl-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-xl-n12,.editor-styles-wrapper .mx-xl-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-xl-n12,.editor-styles-wrapper .my-xl-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-xl-n12,.editor-styles-wrapper .mx-xl-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-xl-auto{margin:auto !important}.editor-styles-wrapper .mt-xl-auto,.editor-styles-wrapper .my-xl-auto{margin-top:auto !important}.editor-styles-wrapper .mr-xl-auto,.editor-styles-wrapper .mx-xl-auto{margin-right:auto !important}.editor-styles-wrapper .mb-xl-auto,.editor-styles-wrapper .my-xl-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-xl-auto,.editor-styles-wrapper .mx-xl-auto{margin-left:auto !important}}@media (min-width: 1400px){.editor-styles-wrapper .m-xxl-0{margin:0 !important}.editor-styles-wrapper .mt-xxl-0,.editor-styles-wrapper .my-xxl-0{margin-top:0 !important}.editor-styles-wrapper .mr-xxl-0,.editor-styles-wrapper .mx-xxl-0{margin-right:0 !important}.editor-styles-wrapper .mb-xxl-0,.editor-styles-wrapper .my-xxl-0{margin-bottom:0 !important}.editor-styles-wrapper .ml-xxl-0,.editor-styles-wrapper .mx-xxl-0{margin-left:0 !important}.editor-styles-wrapper .m-xxl-1{margin:.25rem !important}.editor-styles-wrapper .mt-xxl-1,.editor-styles-wrapper .my-xxl-1{margin-top:.25rem !important}.editor-styles-wrapper .mr-xxl-1,.editor-styles-wrapper .mx-xxl-1{margin-right:.25rem !important}.editor-styles-wrapper .mb-xxl-1,.editor-styles-wrapper .my-xxl-1{margin-bottom:.25rem !important}.editor-styles-wrapper .ml-xxl-1,.editor-styles-wrapper .mx-xxl-1{margin-left:.25rem !important}.editor-styles-wrapper .m-xxl-2{margin:.5rem !important}.editor-styles-wrapper .mt-xxl-2,.editor-styles-wrapper .my-xxl-2{margin-top:.5rem !important}.editor-styles-wrapper .mr-xxl-2,.editor-styles-wrapper .mx-xxl-2{margin-right:.5rem !important}.editor-styles-wrapper .mb-xxl-2,.editor-styles-wrapper .my-xxl-2{margin-bottom:.5rem !important}.editor-styles-wrapper .ml-xxl-2,.editor-styles-wrapper .mx-xxl-2{margin-left:.5rem !important}.editor-styles-wrapper .m-xxl-3{margin:1rem !important}.editor-styles-wrapper .mt-xxl-3,.editor-styles-wrapper .my-xxl-3{margin-top:1rem !important}.editor-styles-wrapper .mr-xxl-3,.editor-styles-wrapper .mx-xxl-3{margin-right:1rem !important}.editor-styles-wrapper .mb-xxl-3,.editor-styles-wrapper .my-xxl-3{margin-bottom:1rem !important}.editor-styles-wrapper .ml-xxl-3,.editor-styles-wrapper .mx-xxl-3{margin-left:1rem !important}.editor-styles-wrapper .m-xxl-4{margin:1.5rem !important}.editor-styles-wrapper .mt-xxl-4,.editor-styles-wrapper .my-xxl-4{margin-top:1.5rem !important}.editor-styles-wrapper .mr-xxl-4,.editor-styles-wrapper .mx-xxl-4{margin-right:1.5rem !important}.editor-styles-wrapper .mb-xxl-4,.editor-styles-wrapper .my-xxl-4{margin-bottom:1.5rem !important}.editor-styles-wrapper .ml-xxl-4,.editor-styles-wrapper .mx-xxl-4{margin-left:1.5rem !important}.editor-styles-wrapper .m-xxl-5{margin:3rem !important}.editor-styles-wrapper .mt-xxl-5,.editor-styles-wrapper .my-xxl-5{margin-top:3rem !important}.editor-styles-wrapper .mr-xxl-5,.editor-styles-wrapper .mx-xxl-5{margin-right:3rem !important}.editor-styles-wrapper .mb-xxl-5,.editor-styles-wrapper .my-xxl-5{margin-bottom:3rem !important}.editor-styles-wrapper .ml-xxl-5,.editor-styles-wrapper .mx-xxl-5{margin-left:3rem !important}.editor-styles-wrapper .m-xxl-6{margin:4rem !important}.editor-styles-wrapper .mt-xxl-6,.editor-styles-wrapper .my-xxl-6{margin-top:4rem !important}.editor-styles-wrapper .mr-xxl-6,.editor-styles-wrapper .mx-xxl-6{margin-right:4rem !important}.editor-styles-wrapper .mb-xxl-6,.editor-styles-wrapper .my-xxl-6{margin-bottom:4rem !important}.editor-styles-wrapper .ml-xxl-6,.editor-styles-wrapper .mx-xxl-6{margin-left:4rem !important}.editor-styles-wrapper .m-xxl-7{margin:6rem !important}.editor-styles-wrapper .mt-xxl-7,.editor-styles-wrapper .my-xxl-7{margin-top:6rem !important}.editor-styles-wrapper .mr-xxl-7,.editor-styles-wrapper .mx-xxl-7{margin-right:6rem !important}.editor-styles-wrapper .mb-xxl-7,.editor-styles-wrapper .my-xxl-7{margin-bottom:6rem !important}.editor-styles-wrapper .ml-xxl-7,.editor-styles-wrapper .mx-xxl-7{margin-left:6rem !important}.editor-styles-wrapper .m-xxl-8{margin:8rem !important}.editor-styles-wrapper .mt-xxl-8,.editor-styles-wrapper .my-xxl-8{margin-top:8rem !important}.editor-styles-wrapper .mr-xxl-8,.editor-styles-wrapper .mx-xxl-8{margin-right:8rem !important}.editor-styles-wrapper .mb-xxl-8,.editor-styles-wrapper .my-xxl-8{margin-bottom:8rem !important}.editor-styles-wrapper .ml-xxl-8,.editor-styles-wrapper .mx-xxl-8{margin-left:8rem !important}.editor-styles-wrapper .m-xxl-9{margin:10rem !important}.editor-styles-wrapper .mt-xxl-9,.editor-styles-wrapper .my-xxl-9{margin-top:10rem !important}.editor-styles-wrapper .mr-xxl-9,.editor-styles-wrapper .mx-xxl-9{margin-right:10rem !important}.editor-styles-wrapper .mb-xxl-9,.editor-styles-wrapper .my-xxl-9{margin-bottom:10rem !important}.editor-styles-wrapper .ml-xxl-9,.editor-styles-wrapper .mx-xxl-9{margin-left:10rem !important}.editor-styles-wrapper .m-xxl-10{margin:12rem !important}.editor-styles-wrapper .mt-xxl-10,.editor-styles-wrapper .my-xxl-10{margin-top:12rem !important}.editor-styles-wrapper .mr-xxl-10,.editor-styles-wrapper .mx-xxl-10{margin-right:12rem !important}.editor-styles-wrapper .mb-xxl-10,.editor-styles-wrapper .my-xxl-10{margin-bottom:12rem !important}.editor-styles-wrapper .ml-xxl-10,.editor-styles-wrapper .mx-xxl-10{margin-left:12rem !important}.editor-styles-wrapper .m-xxl-11{margin:14rem !important}.editor-styles-wrapper .mt-xxl-11,.editor-styles-wrapper .my-xxl-11{margin-top:14rem !important}.editor-styles-wrapper .mr-xxl-11,.editor-styles-wrapper .mx-xxl-11{margin-right:14rem !important}.editor-styles-wrapper .mb-xxl-11,.editor-styles-wrapper .my-xxl-11{margin-bottom:14rem !important}.editor-styles-wrapper .ml-xxl-11,.editor-styles-wrapper .mx-xxl-11{margin-left:14rem !important}.editor-styles-wrapper .m-xxl-12{margin:16rem !important}.editor-styles-wrapper .mt-xxl-12,.editor-styles-wrapper .my-xxl-12{margin-top:16rem !important}.editor-styles-wrapper .mr-xxl-12,.editor-styles-wrapper .mx-xxl-12{margin-right:16rem !important}.editor-styles-wrapper .mb-xxl-12,.editor-styles-wrapper .my-xxl-12{margin-bottom:16rem !important}.editor-styles-wrapper .ml-xxl-12,.editor-styles-wrapper .mx-xxl-12{margin-left:16rem !important}.editor-styles-wrapper .p-xxl-0{padding:0 !important}.editor-styles-wrapper .pt-xxl-0,.editor-styles-wrapper .py-xxl-0{padding-top:0 !important}.editor-styles-wrapper .pr-xxl-0,.editor-styles-wrapper .px-xxl-0{padding-right:0 !important}.editor-styles-wrapper .pb-xxl-0,.editor-styles-wrapper .py-xxl-0{padding-bottom:0 !important}.editor-styles-wrapper .pl-xxl-0,.editor-styles-wrapper .px-xxl-0{padding-left:0 !important}.editor-styles-wrapper .p-xxl-1{padding:.25rem !important}.editor-styles-wrapper .pt-xxl-1,.editor-styles-wrapper .py-xxl-1{padding-top:.25rem !important}.editor-styles-wrapper .pr-xxl-1,.editor-styles-wrapper .px-xxl-1{padding-right:.25rem !important}.editor-styles-wrapper .pb-xxl-1,.editor-styles-wrapper .py-xxl-1{padding-bottom:.25rem !important}.editor-styles-wrapper .pl-xxl-1,.editor-styles-wrapper .px-xxl-1{padding-left:.25rem !important}.editor-styles-wrapper .p-xxl-2{padding:.5rem !important}.editor-styles-wrapper .pt-xxl-2,.editor-styles-wrapper .py-xxl-2{padding-top:.5rem !important}.editor-styles-wrapper .pr-xxl-2,.editor-styles-wrapper .px-xxl-2{padding-right:.5rem !important}.editor-styles-wrapper .pb-xxl-2,.editor-styles-wrapper .py-xxl-2{padding-bottom:.5rem !important}.editor-styles-wrapper .pl-xxl-2,.editor-styles-wrapper .px-xxl-2{padding-left:.5rem !important}.editor-styles-wrapper .p-xxl-3{padding:1rem !important}.editor-styles-wrapper .pt-xxl-3,.editor-styles-wrapper .py-xxl-3{padding-top:1rem !important}.editor-styles-wrapper .pr-xxl-3,.editor-styles-wrapper .px-xxl-3{padding-right:1rem !important}.editor-styles-wrapper .pb-xxl-3,.editor-styles-wrapper .py-xxl-3{padding-bottom:1rem !important}.editor-styles-wrapper .pl-xxl-3,.editor-styles-wrapper .px-xxl-3{padding-left:1rem !important}.editor-styles-wrapper .p-xxl-4{padding:1.5rem !important}.editor-styles-wrapper .pt-xxl-4,.editor-styles-wrapper .py-xxl-4{padding-top:1.5rem !important}.editor-styles-wrapper .pr-xxl-4,.editor-styles-wrapper .px-xxl-4{padding-right:1.5rem !important}.editor-styles-wrapper .pb-xxl-4,.editor-styles-wrapper .py-xxl-4{padding-bottom:1.5rem !important}.editor-styles-wrapper .pl-xxl-4,.editor-styles-wrapper .px-xxl-4{padding-left:1.5rem !important}.editor-styles-wrapper .p-xxl-5{padding:3rem !important}.editor-styles-wrapper .pt-xxl-5,.editor-styles-wrapper .py-xxl-5{padding-top:3rem !important}.editor-styles-wrapper .pr-xxl-5,.editor-styles-wrapper .px-xxl-5{padding-right:3rem !important}.editor-styles-wrapper .pb-xxl-5,.editor-styles-wrapper .py-xxl-5{padding-bottom:3rem !important}.editor-styles-wrapper .pl-xxl-5,.editor-styles-wrapper .px-xxl-5{padding-left:3rem !important}.editor-styles-wrapper .p-xxl-6{padding:4rem !important}.editor-styles-wrapper .pt-xxl-6,.editor-styles-wrapper .py-xxl-6{padding-top:4rem !important}.editor-styles-wrapper .pr-xxl-6,.editor-styles-wrapper .px-xxl-6{padding-right:4rem !important}.editor-styles-wrapper .pb-xxl-6,.editor-styles-wrapper .py-xxl-6{padding-bottom:4rem !important}.editor-styles-wrapper .pl-xxl-6,.editor-styles-wrapper .px-xxl-6{padding-left:4rem !important}.editor-styles-wrapper .p-xxl-7{padding:6rem !important}.editor-styles-wrapper .pt-xxl-7,.editor-styles-wrapper .py-xxl-7{padding-top:6rem !important}.editor-styles-wrapper .pr-xxl-7,.editor-styles-wrapper .px-xxl-7{padding-right:6rem !important}.editor-styles-wrapper .pb-xxl-7,.editor-styles-wrapper .py-xxl-7{padding-bottom:6rem !important}.editor-styles-wrapper .pl-xxl-7,.editor-styles-wrapper .px-xxl-7{padding-left:6rem !important}.editor-styles-wrapper .p-xxl-8{padding:8rem !important}.editor-styles-wrapper .pt-xxl-8,.editor-styles-wrapper .py-xxl-8{padding-top:8rem !important}.editor-styles-wrapper .pr-xxl-8,.editor-styles-wrapper .px-xxl-8{padding-right:8rem !important}.editor-styles-wrapper .pb-xxl-8,.editor-styles-wrapper .py-xxl-8{padding-bottom:8rem !important}.editor-styles-wrapper .pl-xxl-8,.editor-styles-wrapper .px-xxl-8{padding-left:8rem !important}.editor-styles-wrapper .p-xxl-9{padding:10rem !important}.editor-styles-wrapper .pt-xxl-9,.editor-styles-wrapper .py-xxl-9{padding-top:10rem !important}.editor-styles-wrapper .pr-xxl-9,.editor-styles-wrapper .px-xxl-9{padding-right:10rem !important}.editor-styles-wrapper .pb-xxl-9,.editor-styles-wrapper .py-xxl-9{padding-bottom:10rem !important}.editor-styles-wrapper .pl-xxl-9,.editor-styles-wrapper .px-xxl-9{padding-left:10rem !important}.editor-styles-wrapper .p-xxl-10{padding:12rem !important}.editor-styles-wrapper .pt-xxl-10,.editor-styles-wrapper .py-xxl-10{padding-top:12rem !important}.editor-styles-wrapper .pr-xxl-10,.editor-styles-wrapper .px-xxl-10{padding-right:12rem !important}.editor-styles-wrapper .pb-xxl-10,.editor-styles-wrapper .py-xxl-10{padding-bottom:12rem !important}.editor-styles-wrapper .pl-xxl-10,.editor-styles-wrapper .px-xxl-10{padding-left:12rem !important}.editor-styles-wrapper .p-xxl-11{padding:14rem !important}.editor-styles-wrapper .pt-xxl-11,.editor-styles-wrapper .py-xxl-11{padding-top:14rem !important}.editor-styles-wrapper .pr-xxl-11,.editor-styles-wrapper .px-xxl-11{padding-right:14rem !important}.editor-styles-wrapper .pb-xxl-11,.editor-styles-wrapper .py-xxl-11{padding-bottom:14rem !important}.editor-styles-wrapper .pl-xxl-11,.editor-styles-wrapper .px-xxl-11{padding-left:14rem !important}.editor-styles-wrapper .p-xxl-12{padding:16rem !important}.editor-styles-wrapper .pt-xxl-12,.editor-styles-wrapper .py-xxl-12{padding-top:16rem !important}.editor-styles-wrapper .pr-xxl-12,.editor-styles-wrapper .px-xxl-12{padding-right:16rem !important}.editor-styles-wrapper .pb-xxl-12,.editor-styles-wrapper .py-xxl-12{padding-bottom:16rem !important}.editor-styles-wrapper .pl-xxl-12,.editor-styles-wrapper .px-xxl-12{padding-left:16rem !important}.editor-styles-wrapper .m-xxl-n1{margin:-.25rem !important}.editor-styles-wrapper .mt-xxl-n1,.editor-styles-wrapper .my-xxl-n1{margin-top:-.25rem !important}.editor-styles-wrapper .mr-xxl-n1,.editor-styles-wrapper .mx-xxl-n1{margin-right:-.25rem !important}.editor-styles-wrapper .mb-xxl-n1,.editor-styles-wrapper .my-xxl-n1{margin-bottom:-.25rem !important}.editor-styles-wrapper .ml-xxl-n1,.editor-styles-wrapper .mx-xxl-n1{margin-left:-.25rem !important}.editor-styles-wrapper .m-xxl-n2{margin:-.5rem !important}.editor-styles-wrapper .mt-xxl-n2,.editor-styles-wrapper .my-xxl-n2{margin-top:-.5rem !important}.editor-styles-wrapper .mr-xxl-n2,.editor-styles-wrapper .mx-xxl-n2{margin-right:-.5rem !important}.editor-styles-wrapper .mb-xxl-n2,.editor-styles-wrapper .my-xxl-n2{margin-bottom:-.5rem !important}.editor-styles-wrapper .ml-xxl-n2,.editor-styles-wrapper .mx-xxl-n2{margin-left:-.5rem !important}.editor-styles-wrapper .m-xxl-n3{margin:-1rem !important}.editor-styles-wrapper .mt-xxl-n3,.editor-styles-wrapper .my-xxl-n3{margin-top:-1rem !important}.editor-styles-wrapper .mr-xxl-n3,.editor-styles-wrapper .mx-xxl-n3{margin-right:-1rem !important}.editor-styles-wrapper .mb-xxl-n3,.editor-styles-wrapper .my-xxl-n3{margin-bottom:-1rem !important}.editor-styles-wrapper .ml-xxl-n3,.editor-styles-wrapper .mx-xxl-n3{margin-left:-1rem !important}.editor-styles-wrapper .m-xxl-n4{margin:-1.5rem !important}.editor-styles-wrapper .mt-xxl-n4,.editor-styles-wrapper .my-xxl-n4{margin-top:-1.5rem !important}.editor-styles-wrapper .mr-xxl-n4,.editor-styles-wrapper .mx-xxl-n4{margin-right:-1.5rem !important}.editor-styles-wrapper .mb-xxl-n4,.editor-styles-wrapper .my-xxl-n4{margin-bottom:-1.5rem !important}.editor-styles-wrapper .ml-xxl-n4,.editor-styles-wrapper .mx-xxl-n4{margin-left:-1.5rem !important}.editor-styles-wrapper .m-xxl-n5{margin:-3rem !important}.editor-styles-wrapper .mt-xxl-n5,.editor-styles-wrapper .my-xxl-n5{margin-top:-3rem !important}.editor-styles-wrapper .mr-xxl-n5,.editor-styles-wrapper .mx-xxl-n5{margin-right:-3rem !important}.editor-styles-wrapper .mb-xxl-n5,.editor-styles-wrapper .my-xxl-n5{margin-bottom:-3rem !important}.editor-styles-wrapper .ml-xxl-n5,.editor-styles-wrapper .mx-xxl-n5{margin-left:-3rem !important}.editor-styles-wrapper .m-xxl-n6{margin:-4rem !important}.editor-styles-wrapper .mt-xxl-n6,.editor-styles-wrapper .my-xxl-n6{margin-top:-4rem !important}.editor-styles-wrapper .mr-xxl-n6,.editor-styles-wrapper .mx-xxl-n6{margin-right:-4rem !important}.editor-styles-wrapper .mb-xxl-n6,.editor-styles-wrapper .my-xxl-n6{margin-bottom:-4rem !important}.editor-styles-wrapper .ml-xxl-n6,.editor-styles-wrapper .mx-xxl-n6{margin-left:-4rem !important}.editor-styles-wrapper .m-xxl-n7{margin:-6rem !important}.editor-styles-wrapper .mt-xxl-n7,.editor-styles-wrapper .my-xxl-n7{margin-top:-6rem !important}.editor-styles-wrapper .mr-xxl-n7,.editor-styles-wrapper .mx-xxl-n7{margin-right:-6rem !important}.editor-styles-wrapper .mb-xxl-n7,.editor-styles-wrapper .my-xxl-n7{margin-bottom:-6rem !important}.editor-styles-wrapper .ml-xxl-n7,.editor-styles-wrapper .mx-xxl-n7{margin-left:-6rem !important}.editor-styles-wrapper .m-xxl-n8{margin:-8rem !important}.editor-styles-wrapper .mt-xxl-n8,.editor-styles-wrapper .my-xxl-n8{margin-top:-8rem !important}.editor-styles-wrapper .mr-xxl-n8,.editor-styles-wrapper .mx-xxl-n8{margin-right:-8rem !important}.editor-styles-wrapper .mb-xxl-n8,.editor-styles-wrapper .my-xxl-n8{margin-bottom:-8rem !important}.editor-styles-wrapper .ml-xxl-n8,.editor-styles-wrapper .mx-xxl-n8{margin-left:-8rem !important}.editor-styles-wrapper .m-xxl-n9{margin:-10rem !important}.editor-styles-wrapper .mt-xxl-n9,.editor-styles-wrapper .my-xxl-n9{margin-top:-10rem !important}.editor-styles-wrapper .mr-xxl-n9,.editor-styles-wrapper .mx-xxl-n9{margin-right:-10rem !important}.editor-styles-wrapper .mb-xxl-n9,.editor-styles-wrapper .my-xxl-n9{margin-bottom:-10rem !important}.editor-styles-wrapper .ml-xxl-n9,.editor-styles-wrapper .mx-xxl-n9{margin-left:-10rem !important}.editor-styles-wrapper .m-xxl-n10{margin:-12rem !important}.editor-styles-wrapper .mt-xxl-n10,.editor-styles-wrapper .my-xxl-n10{margin-top:-12rem !important}.editor-styles-wrapper .mr-xxl-n10,.editor-styles-wrapper .mx-xxl-n10{margin-right:-12rem !important}.editor-styles-wrapper .mb-xxl-n10,.editor-styles-wrapper .my-xxl-n10{margin-bottom:-12rem !important}.editor-styles-wrapper .ml-xxl-n10,.editor-styles-wrapper .mx-xxl-n10{margin-left:-12rem !important}.editor-styles-wrapper .m-xxl-n11{margin:-14rem !important}.editor-styles-wrapper .mt-xxl-n11,.editor-styles-wrapper .my-xxl-n11{margin-top:-14rem !important}.editor-styles-wrapper .mr-xxl-n11,.editor-styles-wrapper .mx-xxl-n11{margin-right:-14rem !important}.editor-styles-wrapper .mb-xxl-n11,.editor-styles-wrapper .my-xxl-n11{margin-bottom:-14rem !important}.editor-styles-wrapper .ml-xxl-n11,.editor-styles-wrapper .mx-xxl-n11{margin-left:-14rem !important}.editor-styles-wrapper .m-xxl-n12{margin:-16rem !important}.editor-styles-wrapper .mt-xxl-n12,.editor-styles-wrapper .my-xxl-n12{margin-top:-16rem !important}.editor-styles-wrapper .mr-xxl-n12,.editor-styles-wrapper .mx-xxl-n12{margin-right:-16rem !important}.editor-styles-wrapper .mb-xxl-n12,.editor-styles-wrapper .my-xxl-n12{margin-bottom:-16rem !important}.editor-styles-wrapper .ml-xxl-n12,.editor-styles-wrapper .mx-xxl-n12{margin-left:-16rem !important}.editor-styles-wrapper .m-xxl-auto{margin:auto !important}.editor-styles-wrapper .mt-xxl-auto,.editor-styles-wrapper .my-xxl-auto{margin-top:auto !important}.editor-styles-wrapper .mr-xxl-auto,.editor-styles-wrapper .mx-xxl-auto{margin-right:auto !important}.editor-styles-wrapper .mb-xxl-auto,.editor-styles-wrapper .my-xxl-auto{margin-bottom:auto !important}.editor-styles-wrapper .ml-xxl-auto,.editor-styles-wrapper .mx-xxl-auto{margin-left:auto !important}}.editor-styles-wrapper .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.editor-styles-wrapper .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.editor-styles-wrapper .text-justify{text-align:justify !important}.editor-styles-wrapper .text-wrap{white-space:normal !important}.editor-styles-wrapper .text-nowrap{white-space:nowrap !important}.editor-styles-wrapper .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.editor-styles-wrapper .text-left{text-align:left !important}.editor-styles-wrapper .text-right{text-align:right !important}.editor-styles-wrapper .text-center{text-align:center !important}@media (min-width: 576px){.editor-styles-wrapper .text-sm-left{text-align:left !important}.editor-styles-wrapper .text-sm-right{text-align:right !important}.editor-styles-wrapper .text-sm-center{text-align:center !important}}@media (min-width: 768px){.editor-styles-wrapper .text-md-left{text-align:left !important}.editor-styles-wrapper .text-md-right{text-align:right !important}.editor-styles-wrapper .text-md-center{text-align:center !important}}@media (min-width: 992px){.editor-styles-wrapper .text-lg-left{text-align:left !important}.editor-styles-wrapper .text-lg-right{text-align:right !important}.editor-styles-wrapper .text-lg-center{text-align:center !important}}@media (min-width: 1200px){.editor-styles-wrapper .text-xl-left{text-align:left !important}.editor-styles-wrapper .text-xl-right{text-align:right !important}.editor-styles-wrapper .text-xl-center{text-align:center !important}}@media (min-width: 1400px){.editor-styles-wrapper .text-xxl-left{text-align:left !important}.editor-styles-wrapper .text-xxl-right{text-align:right !important}.editor-styles-wrapper .text-xxl-center{text-align:center !important}}.editor-styles-wrapper .text-lowercase{text-transform:lowercase !important}.editor-styles-wrapper .text-uppercase{text-transform:uppercase !important}.editor-styles-wrapper .text-capitalize{text-transform:capitalize !important}.editor-styles-wrapper .font-weight-light{font-weight:300 !important}.editor-styles-wrapper .font-weight-lighter{font-weight:lighter !important}.editor-styles-wrapper .font-weight-normal{font-weight:400 !important}.editor-styles-wrapper .font-weight-bold{font-weight:700 !important}.editor-styles-wrapper .font-weight-bolder{font-weight:bolder !important}.editor-styles-wrapper .font-italic{font-style:italic !important}.editor-styles-wrapper .text-white{color:#fff !important}.editor-styles-wrapper .text-primary{color:#1e73be !important}.editor-styles-wrapper a.text-primary:hover,.editor-styles-wrapper a.text-primary:focus{color:#144b7c !important}.editor-styles-wrapper .text-secondary{color:#6c757d !important}.editor-styles-wrapper a.text-secondary:hover,.editor-styles-wrapper a.text-secondary:focus{color:#494f54 !important}.editor-styles-wrapper .text-success{color:#44c553 !important}.editor-styles-wrapper a.text-success:hover,.editor-styles-wrapper a.text-success:focus{color:#2d9038 !important}.editor-styles-wrapper .text-info{color:#17a2b8 !important}.editor-styles-wrapper a.text-info:hover,.editor-styles-wrapper a.text-info:focus{color:#0f6674 !important}.editor-styles-wrapper .text-warning{color:#ffc107 !important}.editor-styles-wrapper a.text-warning:hover,.editor-styles-wrapper a.text-warning:focus{color:#ba8b00 !important}.editor-styles-wrapper .text-danger{color:#dc3545 !important}.editor-styles-wrapper a.text-danger:hover,.editor-styles-wrapper a.text-danger:focus{color:#a71d2a !important}.editor-styles-wrapper .text-light{color:#f8f9fa !important}.editor-styles-wrapper a.text-light:hover,.editor-styles-wrapper a.text-light:focus{color:#cbd3da !important}.editor-styles-wrapper .text-dark{color:#343a40 !important}.editor-styles-wrapper a.text-dark:hover,.editor-styles-wrapper a.text-dark:focus{color:#121416 !important}.editor-styles-wrapper .text-white{color:#fff !important}.editor-styles-wrapper a.text-white:hover,.editor-styles-wrapper a.text-white:focus{color:#d9d9d9 !important}.editor-styles-wrapper .text-purple{color:#ad6edd !important}.editor-styles-wrapper a.text-purple:hover,.editor-styles-wrapper a.text-purple:focus{color:#8a30ce !important}.editor-styles-wrapper .text-salmon{color:#ff977a !important}.editor-styles-wrapper a.text-salmon:hover,.editor-styles-wrapper a.text-salmon:focus{color:#ff5b2e !important}.editor-styles-wrapper .text-cyan{color:#35bdff !important}.editor-styles-wrapper a.text-cyan:hover,.editor-styles-wrapper a.text-cyan:focus{color:#009ce8 !important}.editor-styles-wrapper .text-gray{color:#ced4da !important}.editor-styles-wrapper a.text-gray:hover,.editor-styles-wrapper a.text-gray:focus{color:#a2aeb9 !important}.editor-styles-wrapper .text-gray-dark{color:#6c757d !important}.editor-styles-wrapper a.text-gray-dark:hover,.editor-styles-wrapper a.text-gray-dark:focus{color:#494f54 !important}.editor-styles-wrapper .text-indigo{color:#502c6c !important}.editor-styles-wrapper a.text-indigo:hover,.editor-styles-wrapper a.text-indigo:focus{color:#281636 !important}.editor-styles-wrapper .text-orange{color:#fbb500 !important}.editor-styles-wrapper a.text-orange:hover,.editor-styles-wrapper a.text-orange:focus{color:#af7e00 !important}.editor-styles-wrapper .text-body{color:#212529 !important}.editor-styles-wrapper .text-muted{color:#6c757d !important}.editor-styles-wrapper .text-black-50{color:rgba(0,0,0,0.5) !important}.editor-styles-wrapper .text-white-50{color:rgba(255,255,255,0.5) !important}.editor-styles-wrapper .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.editor-styles-wrapper .text-decoration-none{text-decoration:none !important}.editor-styles-wrapper .text-break{word-break:break-word !important;word-wrap:break-word !important}.editor-styles-wrapper .text-reset{color:inherit !important}.editor-styles-wrapper .visible{visibility:visible !important}.editor-styles-wrapper .invisible{visibility:hidden !important}@media print{.editor-styles-wrapper *,.editor-styles-wrapper *::before,.editor-styles-wrapper *::after{text-shadow:none !important;box-shadow:none !important}.editor-styles-wrapper a:not(.btn){text-decoration:underline}.editor-styles-wrapper abbr[title]::after{content:" (" attr(title) ")"}.editor-styles-wrapper pre{white-space:pre-wrap !important}.editor-styles-wrapper pre,.editor-styles-wrapper blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.editor-styles-wrapper tr,.editor-styles-wrapper img{page-break-inside:avoid}.editor-styles-wrapper p,.editor-styles-wrapper h2,.editor-styles-wrapper h3{orphans:3;widows:3}.editor-styles-wrapper h2,.editor-styles-wrapper h3{page-break-after:avoid}@page{.editor-styles-wrapper{size:a3}}.editor-styles-wrapper body{min-width:992px !important}.editor-styles-wrapper .container{min-width:992px !important}.editor-styles-wrapper .navbar{display:none}.editor-styles-wrapper .badge{border:1px solid #000}.editor-styles-wrapper .table{border-collapse:collapse !important}.editor-styles-wrapper .table td,.editor-styles-wrapper .table th{background-color:#fff !important}.editor-styles-wrapper .table-bordered th,.editor-styles-wrapper .table-bordered td{border:1px solid #dee2e6 !important}.editor-styles-wrapper .table-dark{color:inherit}.editor-styles-wrapper .table-dark th,.editor-styles-wrapper .table-dark td,.editor-styles-wrapper .table-dark thead th,.editor-styles-wrapper .table-dark tbody+tbody{border-color:#dee2e6}.editor-styles-wrapper .table .thead-dark th{color:inherit;border-color:#dee2e6}}.editor-styles-wrapper .iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.editor-styles-wrapper .iconpicker-popover.popover.top,.editor-styles-wrapper .iconpicker-popover.popover.topLeftCorner,.editor-styles-wrapper .iconpicker-popover.popover.topLeft,.editor-styles-wrapper .iconpicker-popover.popover.topRight,.editor-styles-wrapper .iconpicker-popover.popover.topRightCorner{margin-top:-10px}.editor-styles-wrapper .iconpicker-popover.popover.right,.editor-styles-wrapper .iconpicker-popover.popover.rightTop,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom{margin-left:10px}.editor-styles-wrapper .iconpicker-popover.popover.bottom,.editor-styles-wrapper .iconpicker-popover.popover.bottomRightCorner,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.editor-styles-wrapper .iconpicker-popover.popover.left,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom,.editor-styles-wrapper .iconpicker-popover.popover.leftTop{margin-left:-10px}.editor-styles-wrapper .iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.editor-styles-wrapper .iconpicker-popover.popover.inline>.arrow{display:none}.editor-styles-wrapper .dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.editor-styles-wrapper .dropdown-menu.iconpicker-container{padding:0}.editor-styles-wrapper .iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.editor-styles-wrapper .iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.editor-styles-wrapper .iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.editor-styles-wrapper .iconpicker-popover.popover .popover-content{padding:0;text-align:center}.editor-styles-wrapper .iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.editor-styles-wrapper .iconpicker-popover .popover-footer:before,.editor-styles-wrapper .iconpicker-popover .popover-footer:after{content:" ";display:table}.editor-styles-wrapper .iconpicker-popover .popover-footer:after{clear:both}.editor-styles-wrapper .iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.editor-styles-wrapper .iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.editor-styles-wrapper .iconpicker-popover.popover>.arrow,.editor-styles-wrapper .iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.editor-styles-wrapper .iconpicker-popover.popover>.arrow{border-width:11px}.editor-styles-wrapper .iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.editor-styles-wrapper .iconpicker-popover.popover.top>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.editor-styles-wrapper .iconpicker-popover.popover.top>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.right>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .iconpicker-popover.popover.right>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.bottom>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.editor-styles-wrapper .iconpicker-popover.popover.bottom>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.editor-styles-wrapper .iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.editor-styles-wrapper .iconpicker-popover.popover.left>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow,.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.editor-styles-wrapper .iconpicker-popover.popover.left>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow:after,.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.editor-styles-wrapper .iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.editor-styles-wrapper .iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.editor-styles-wrapper .iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.editor-styles-wrapper .iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.editor-styles-wrapper .iconpicker:before,.editor-styles-wrapper .iconpicker:after{content:" ";display:table}.editor-styles-wrapper .iconpicker:after{clear:both}.editor-styles-wrapper .iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.editor-styles-wrapper .iconpicker .iconpicker-items:before,.editor-styles-wrapper .iconpicker .iconpicker-items:after{content:" ";display:table}.editor-styles-wrapper .iconpicker .iconpicker-items:after{clear:both}.editor-styles-wrapper .iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.editor-styles-wrapper .iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.editor-styles-wrapper .iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.editor-styles-wrapper .iconpicker-component{cursor:pointer}.editor-styles-wrapper .tofront{position:relative;z-index:1}.editor-styles-wrapper .full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.editor-styles-wrapper .c-pointer:hover{cursor:pointer}.editor-styles-wrapper .c-move:hover{cursor:move}.editor-styles-wrapper .z-index-1{z-index:1}@media (max-width: 991.98px){.editor-styles-wrapper .display-3{font-size:3.5rem}}@media (max-width: 767.98px){.editor-styles-wrapper .display-3{font-size:2rem}}.editor-styles-wrapper .row.gap-y>.col,.editor-styles-wrapper .row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.editor-styles-wrapper .mt-neg5{margin-top:-5rem}.editor-styles-wrapper .ml-neg5{margin-left:-5rem}@media (min-width: 768px){.editor-styles-wrapper .h-md-100-v{height:100vh}.editor-styles-wrapper .h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.editor-styles-wrapper .h-xl-300{height:300px}.editor-styles-wrapper .h-max-380{max-height:380px}}.editor-styles-wrapper .btn-round{border-radius:30px !important}.editor-styles-wrapper .btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.editor-styles-wrapper .btn:hover,.editor-styles-wrapper .btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.editor-styles-wrapper .btn-lg,.editor-styles-wrapper .btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.editor-styles-wrapper .btn-sm,.editor-styles-wrapper .btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.editor-styles-wrapper .btn-link:hover,.editor-styles-wrapper .btn-link:focus{box-shadow:none}.editor-styles-wrapper .btn-link.btn-primary{color:#1e73be;border-color:transparent}.editor-styles-wrapper .btn-link.btn-secondary{color:#6c757d;border-color:transparent}.editor-styles-wrapper .btn-link.btn-success{color:#44c553;border-color:transparent}.editor-styles-wrapper .btn-link.btn-info{color:#17a2b8;border-color:transparent}.editor-styles-wrapper .btn-link.btn-warning{color:#ffc107;border-color:transparent}.editor-styles-wrapper .btn-link.btn-danger{color:#dc3545;border-color:transparent}.editor-styles-wrapper .btn-link.btn-light{color:#f8f9fa;border-color:transparent}.editor-styles-wrapper .btn-link.btn-dark{color:#343a40;border-color:transparent}.editor-styles-wrapper .btn-link.btn-white{color:#fff;border-color:transparent}.editor-styles-wrapper .btn-link.btn-purple{color:#ad6edd;border-color:transparent}.editor-styles-wrapper .btn-link.btn-salmon{color:#ff977a;border-color:transparent}.editor-styles-wrapper .btn-link.btn-cyan{color:#35bdff;border-color:transparent}.editor-styles-wrapper .btn-link.btn-gray{color:#ced4da;border-color:transparent}.editor-styles-wrapper .btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.editor-styles-wrapper .btn-link.btn-indigo{color:#502c6c;border-color:transparent}.editor-styles-wrapper .btn-link.btn-orange{color:#fbb500;border-color:transparent}.editor-styles-wrapper .btn-white{background-color:#fff}.editor-styles-wrapper .input-round{border-radius:30px !important}.editor-styles-wrapper .input-group.input-round input:first-child{border-radius:30px 0 0 30px}.editor-styles-wrapper .input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.editor-styles-wrapper .navbar{font-weight:400}.editor-styles-wrapper .navbar-brand{margin-right:2rem;font-size:1.25rem}.editor-styles-wrapper .dropdown-item{font-weight:300}.editor-styles-wrapper .dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.editor-styles-wrapper .dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.editor-styles-wrapper .dropdown-menu.dropdown-caret-0:before{content:none}.editor-styles-wrapper .navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-brand:hover,.editor-styles-wrapper .navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:hover,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.editor-styles-wrapper .navbar-light .navbar-nav .show>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .active>.nav-link,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.show,.editor-styles-wrapper .navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.editor-styles-wrapper .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.editor-styles-wrapper .navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.editor-styles-wrapper .navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .navbar-light .navbar-text a:hover,.editor-styles-wrapper .navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.editor-styles-wrapper .jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.editor-styles-wrapper .jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.editor-styles-wrapper .jumbotron-lg{padding:10rem 0}.editor-styles-wrapper .jumbotron-xl{padding:15rem 0}.editor-styles-wrapper .jumbotron-xl{min-height:100vh}.editor-styles-wrapper .bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.editor-styles-wrapper .bg-black{background-color:#000}.editor-styles-wrapper .overlay{position:relative}.editor-styles-wrapper .overlay .container{position:relative}.editor-styles-wrapper .overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.editor-styles-wrapper .overlay-black:before{background-color:rgba(0,0,0,0.5)}.editor-styles-wrapper .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.editor-styles-wrapper .overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.editor-styles-wrapper .overlay-blue:before{background-color:rgba(23,29,90,0.5)}.editor-styles-wrapper .bg-primary{fill:#1e73be !important}.editor-styles-wrapper .bg-secondary{fill:#6c757d !important}.editor-styles-wrapper .bg-success{fill:#44c553 !important}.editor-styles-wrapper .bg-info{fill:#17a2b8 !important}.editor-styles-wrapper .bg-warning{fill:#ffc107 !important}.editor-styles-wrapper .bg-danger{fill:#dc3545 !important}.editor-styles-wrapper .bg-light{fill:#f8f9fa !important}.editor-styles-wrapper .bg-dark{fill:#343a40 !important}.editor-styles-wrapper .bg-white{fill:#fff !important}.editor-styles-wrapper .bg-purple{fill:#ad6edd !important}.editor-styles-wrapper .bg-salmon{fill:#ff977a !important}.editor-styles-wrapper .bg-cyan{fill:#35bdff !important}.editor-styles-wrapper .bg-gray{fill:#ced4da !important}.editor-styles-wrapper .bg-gray-dark{fill:#6c757d !important}.editor-styles-wrapper .bg-indigo{fill:#502c6c !important}.editor-styles-wrapper .bg-orange{fill:#fbb500 !important}.editor-styles-wrapper .iconbox{border:1px solid;text-align:center;display:inline-block}.editor-styles-wrapper .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.editor-styles-wrapper .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.editor-styles-wrapper .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.editor-styles-wrapper .alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.editor-styles-wrapper .alert-primary hr{border-top-color:#1b66a8}.editor-styles-wrapper .alert-primary .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-secondary hr{border-top-color:#60686f}.editor-styles-wrapper .alert-secondary .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.editor-styles-wrapper .alert-success hr{border-top-color:#39b747}.editor-styles-wrapper .alert-success .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.editor-styles-wrapper .alert-info hr{border-top-color:#148ea1}.editor-styles-wrapper .alert-info .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.editor-styles-wrapper .alert-warning hr{border-top-color:#edb100}.editor-styles-wrapper .alert-warning .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.editor-styles-wrapper .alert-danger hr{border-top-color:#d32535}.editor-styles-wrapper .alert-danger .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.editor-styles-wrapper .alert-light hr{border-top-color:#e9ecef}.editor-styles-wrapper .alert-light .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.editor-styles-wrapper .alert-dark hr{border-top-color:#292d32}.editor-styles-wrapper .alert-dark .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-white{color:#fff;background-color:#fff;border-color:#fff}.editor-styles-wrapper .alert-white hr{border-top-color:#f2f2f2}.editor-styles-wrapper .alert-white .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.editor-styles-wrapper .alert-purple hr{border-top-color:#a159d8}.editor-styles-wrapper .alert-purple .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.editor-styles-wrapper .alert-salmon hr{border-top-color:#ff8361}.editor-styles-wrapper .alert-salmon .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.editor-styles-wrapper .alert-cyan hr{border-top-color:#1cb5ff}.editor-styles-wrapper .alert-cyan .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.editor-styles-wrapper .alert-gray hr{border-top-color:#bfc7cf}.editor-styles-wrapper .alert-gray .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.editor-styles-wrapper .alert-gray-dark hr{border-top-color:#60686f}.editor-styles-wrapper .alert-gray-dark .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.editor-styles-wrapper .alert-indigo hr{border-top-color:#43255a}.editor-styles-wrapper .alert-indigo .alert-link{color:#e6e6e6}.editor-styles-wrapper .alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.editor-styles-wrapper .alert-orange hr{border-top-color:#e2a300}.editor-styles-wrapper .alert-orange .alert-link{color:#e6e6e6}.editor-styles-wrapper ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.editor-styles-wrapper .loginarea{z-index:1111}}.editor-styles-wrapper .geodir-add-files .moxie-shim{position:initial !important;background:transparent}.editor-styles-wrapper .iconbox{border:1px solid;text-align:center;display:inline-block}.editor-styles-wrapper .iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.editor-styles-wrapper .iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.editor-styles-wrapper .iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.editor-styles-wrapper .btn-round{border-radius:30px !important}.editor-styles-wrapper .btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.editor-styles-wrapper .btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.editor-styles-wrapper .btn-facebook:focus,.editor-styles-wrapper .btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-facebook.disabled,.editor-styles-wrapper .btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.editor-styles-wrapper .btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.editor-styles-wrapper .btn-twitter:focus,.editor-styles-wrapper .btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-twitter.disabled,.editor-styles-wrapper .btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.editor-styles-wrapper .btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.editor-styles-wrapper .btn-instagram:focus,.editor-styles-wrapper .btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-instagram.disabled,.editor-styles-wrapper .btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.editor-styles-wrapper .btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.editor-styles-wrapper .btn-linkedin:focus,.editor-styles-wrapper .btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-linkedin.disabled,.editor-styles-wrapper .btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.editor-styles-wrapper .btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.editor-styles-wrapper .btn-flickr:focus,.editor-styles-wrapper .btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-flickr.disabled,.editor-styles-wrapper .btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-github{color:#fff;background-color:#333;border-color:#fff}.editor-styles-wrapper .btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.editor-styles-wrapper .btn-github:focus,.editor-styles-wrapper .btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-github.disabled,.editor-styles-wrapper .btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-github:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.editor-styles-wrapper .btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.editor-styles-wrapper .btn-youtube:focus,.editor-styles-wrapper .btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-youtube.disabled,.editor-styles-wrapper .btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.editor-styles-wrapper .btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.editor-styles-wrapper .btn-wordpress:focus,.editor-styles-wrapper .btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-wordpress.disabled,.editor-styles-wrapper .btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.editor-styles-wrapper .btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.editor-styles-wrapper .btn-google:focus,.editor-styles-wrapper .btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-google.disabled,.editor-styles-wrapper .btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-google:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.editor-styles-wrapper .btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.editor-styles-wrapper .btn-yahoo:focus,.editor-styles-wrapper .btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-yahoo.disabled,.editor-styles-wrapper .btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.editor-styles-wrapper .btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.editor-styles-wrapper .btn-vkontakte:focus,.editor-styles-wrapper .btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-vkontakte.disabled,.editor-styles-wrapper .btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.editor-styles-wrapper .btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.editor-styles-wrapper .btn-tiktok:focus,.editor-styles-wrapper .btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-tiktok.disabled,.editor-styles-wrapper .btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled):active,.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled).active,.show>.editor-styles-wrapper .btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled):active:focus,.editor-styles-wrapper .btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.editor-styles-wrapper .btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.editor-styles-wrapper .btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.editor-styles-wrapper .btn-circle.btn-sm,.editor-styles-wrapper .btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.editor-styles-wrapper .btn-circle.btn-lg,.editor-styles-wrapper .btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.editor-styles-wrapper .btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.editor-styles-wrapper .btn-square.btn-sm,.editor-styles-wrapper .btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.editor-styles-wrapper .btn-square.btn-lg,.editor-styles-wrapper .btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.editor-styles-wrapper .btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.editor-styles-wrapper .btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.editor-styles-wrapper .btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.editor-styles-wrapper .btn-icon-split.btn-sm .icon,.editor-styles-wrapper .btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.editor-styles-wrapper .btn-icon-split.btn-sm .text,.editor-styles-wrapper .btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.editor-styles-wrapper .btn-icon-split.btn-lg .icon,.editor-styles-wrapper .btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.editor-styles-wrapper .btn-icon-split.btn-lg .text,.editor-styles-wrapper .btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.editor-styles-wrapper .alert a{color:inherit;text-decoration:underline}.editor-styles-wrapper .alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.editor-styles-wrapper .row.row-cols-md-0{display:block}.editor-styles-wrapper .row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.editor-styles-wrapper .row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.editor-styles-wrapper .row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.editor-styles-wrapper .row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.editor-styles-wrapper .row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.editor-styles-wrapper .row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.editor-styles-wrapper .row.row-cols-md-0 .card .card-footer{flex:1 100%}.editor-styles-wrapper .row.row-cols-md-0 .gv-hide-0{display:none}}.editor-styles-wrapper .row-cols-md-2 .gv-hide-2{display:none}.editor-styles-wrapper .row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-3 .gv-hide-2,.editor-styles-wrapper .row-cols-md-3 .gv-hide-3{display:none}.editor-styles-wrapper .row-cols-md-3 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-4 .gv-hide-2,.editor-styles-wrapper .row-cols-md-4 .gv-hide-3,.editor-styles-wrapper .row-cols-md-4 .gv-hide-4{display:none}.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.editor-styles-wrapper .row-cols-md-5 .gv-hide-2,.editor-styles-wrapper .row-cols-md-5 .gv-hide-3,.editor-styles-wrapper .row-cols-md-5 .gv-hide-4,.editor-styles-wrapper .row-cols-md-5 .gv-hide-5{display:none}.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-4 .gv-secondary,.editor-styles-wrapper .row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.editor-styles-wrapper .row .gv-hide-0,.editor-styles-wrapper .row .gv-hide-2,.editor-styles-wrapper .row .gv-hide-3,.editor-styles-wrapper .row .gv-hide-4,.editor-styles-wrapper .row .gv-hide-5{display:none}.editor-styles-wrapper .row .gv-hide-s-2 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-3 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-4 .gv-secondary,.editor-styles-wrapper .row .gv-hide-s-5 .gv-secondary{display:none}}.editor-styles-wrapper .border-width-1{border-width:1px !important}.editor-styles-wrapper .border-width-2{border-width:2px !important}.editor-styles-wrapper .border-width-3{border-width:3px !important}.editor-styles-wrapper .border-width-4{border-width:4px !important}.editor-styles-wrapper .border-width-5{border-width:5px !important}.editor-styles-wrapper .bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.editor-styles-wrapper .bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.editor-styles-wrapper .hover-content{display:none}.editor-styles-wrapper .hover-content.fas{display:none}.editor-styles-wrapper .btn:hover .hover-content,.editor-styles-wrapper .badge:hover .hover-content,.editor-styles-wrapper .hover-swap:hover .hover-content{display:initial}.editor-styles-wrapper .btn:hover .hover-content-original,.editor-styles-wrapper .badge:hover .hover-content-original,.editor-styles-wrapper .hover-swap:hover .hover-content-original{display:none}.editor-styles-wrapper .overflow-visible{overflow:visible}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.editor-styles-wrapper .scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.editor-styles-wrapper .embed-item-cover-xy{object-fit:cover;height:100%}.editor-styles-wrapper .embed-item-cover-x{height:auto !important}.editor-styles-wrapper .embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.editor-styles-wrapper .embed-item-contain{object-fit:contain}.editor-styles-wrapper .embed-has-action{transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action i,.editor-styles-wrapper .embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.editor-styles-wrapper .embed-has-action:hover i,.editor-styles-wrapper .embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.editor-styles-wrapper .flatpickr-month .flatpickr-current-month>*{display:inline-block}.editor-styles-wrapper .custom-select{-webkit-appearance:none;-moz-appearance:none}.editor-styles-wrapper .badge-facebook{color:#fff;background-color:#3b5998}.editor-styles-wrapper a.badge-facebook:hover,.editor-styles-wrapper a.badge-facebook:focus{color:#fff;background-color:#2d4373}.editor-styles-wrapper a.badge-facebook:focus,.editor-styles-wrapper a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.editor-styles-wrapper .badge-twitter{color:#212529;background-color:#55acee}.editor-styles-wrapper a.badge-twitter:hover,.editor-styles-wrapper a.badge-twitter:focus{color:#212529;background-color:#2795e9}.editor-styles-wrapper a.badge-twitter:focus,.editor-styles-wrapper a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.editor-styles-wrapper .badge-instagram{color:#fff;background-color:#125688}.editor-styles-wrapper a.badge-instagram:hover,.editor-styles-wrapper a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.editor-styles-wrapper a.badge-instagram:focus,.editor-styles-wrapper a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.editor-styles-wrapper .badge-linkedin{color:#fff;background-color:#0976b4}.editor-styles-wrapper a.badge-linkedin:hover,.editor-styles-wrapper a.badge-linkedin:focus{color:#fff;background-color:#075683}.editor-styles-wrapper a.badge-linkedin:focus,.editor-styles-wrapper a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.editor-styles-wrapper .badge-flickr{color:#fff;background-color:#f8457e}.editor-styles-wrapper a.badge-flickr:hover,.editor-styles-wrapper a.badge-flickr:focus{color:#fff;background-color:#f6145c}.editor-styles-wrapper a.badge-flickr:focus,.editor-styles-wrapper a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.editor-styles-wrapper .badge-github{color:#fff;background-color:#333}.editor-styles-wrapper a.badge-github:hover,.editor-styles-wrapper a.badge-github:focus{color:#fff;background-color:#1a1a1a}.editor-styles-wrapper a.badge-github:focus,.editor-styles-wrapper a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.editor-styles-wrapper .badge-youtube{color:#fff;background-color:#e52d27}.editor-styles-wrapper a.badge-youtube:hover,.editor-styles-wrapper a.badge-youtube:focus{color:#fff;background-color:#c21d17}.editor-styles-wrapper a.badge-youtube:focus,.editor-styles-wrapper a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.editor-styles-wrapper .badge-wordpress{color:#fff;background-color:#207297}.editor-styles-wrapper a.badge-wordpress:hover,.editor-styles-wrapper a.badge-wordpress:focus{color:#fff;background-color:#17526d}.editor-styles-wrapper a.badge-wordpress:focus,.editor-styles-wrapper a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.editor-styles-wrapper .badge-google{color:#fff;background-color:#ea4335}.editor-styles-wrapper a.badge-google:hover,.editor-styles-wrapper a.badge-google:focus{color:#fff;background-color:#d62516}.editor-styles-wrapper a.badge-google:focus,.editor-styles-wrapper a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.editor-styles-wrapper .badge-yahoo{color:#fff;background-color:#6040d2}.editor-styles-wrapper a.badge-yahoo:hover,.editor-styles-wrapper a.badge-yahoo:focus{color:#fff;background-color:#492bb4}.editor-styles-wrapper a.badge-yahoo:focus,.editor-styles-wrapper a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.editor-styles-wrapper .badge-vkontakte{color:#fff;background-color:#4a76a8}.editor-styles-wrapper a.badge-vkontakte:hover,.editor-styles-wrapper a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}.editor-styles-wrapper a.badge-vkontakte:focus,.editor-styles-wrapper a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.editor-styles-wrapper .badge-tiktok{color:#fff;background-color:#010101}.editor-styles-wrapper a.badge-tiktok:hover,.editor-styles-wrapper a.badge-tiktok:focus{color:#fff;background-color:#000}.editor-styles-wrapper a.badge-tiktok:focus,.editor-styles-wrapper a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.editor-styles-wrapper .badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper a.badge-instagram:hover,.editor-styles-wrapper a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}.editor-styles-wrapper a.badge-instagram:focus,.editor-styles-wrapper a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.editor-styles-wrapper .badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.editor-styles-wrapper .bg-initial{background:initial !important}.editor-styles-wrapper .bg-inherit{background:inherit !important}.editor-styles-wrapper .overlay-white:before{background-color:rgba(255,255,255,0.5)}.editor-styles-wrapper .form-label-group{position:relative;margin-bottom:1rem}.editor-styles-wrapper .form-label-group>input,.editor-styles-wrapper .form-label-group>textarea,.editor-styles-wrapper .form-label-group>label{padding:.45rem 1.2rem}.editor-styles-wrapper .form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.editor-styles-wrapper .form-label-group input::-webkit-input-placeholder,.editor-styles-wrapper .form-label-group input:-ms-input-placeholder,.editor-styles-wrapper .form-label-group input::-ms-input-placeholder,.editor-styles-wrapper .form-label-group input::-moz-placeholder,.editor-styles-wrapper .form-label-group input::placeholder,.editor-styles-wrapper .form-label-group textarea::-webkit-input-placeholder,.editor-styles-wrapper .form-label-group textarea:-ms-input-placeholder,.editor-styles-wrapper .form-label-group textarea::-ms-input-placeholder,.editor-styles-wrapper .form-label-group textarea::-moz-placeholder,.editor-styles-wrapper .form-label-group textarea::placeholder{color:transparent}.editor-styles-wrapper .form-label-group input:not(:placeholder-shown),.editor-styles-wrapper .form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.editor-styles-wrapper .form-label-group input:not(:placeholder-shown) ~ label,.editor-styles-wrapper .form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.editor-styles-wrapper .ab-left,.editor-styles-wrapper .ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.editor-styles-wrapper .ab-left-angle,.editor-styles-wrapper .ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.editor-styles-wrapper .ab-left-angle .badge,.editor-styles-wrapper .ab-top-left-angle .badge{display:block}.editor-styles-wrapper .ab-right,.editor-styles-wrapper .ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.editor-styles-wrapper .ab-right-angle,.editor-styles-wrapper .ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.editor-styles-wrapper .ab-right-angle .badge,.editor-styles-wrapper .ab-top-right-angle .badge{display:block}.editor-styles-wrapper .ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.editor-styles-wrapper .ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.editor-styles-wrapper .ab-bottom-left-angle .badge{display:block}.editor-styles-wrapper .ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.editor-styles-wrapper .ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.editor-styles-wrapper .ab-bottom-right-angle .badge{display:block}.editor-styles-wrapper .sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.editor-styles-wrapper .clear-both{clear:both}.editor-styles-wrapper .navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.editor-styles-wrapper .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.editor-styles-wrapper .hover-zoom{transition:transform .2s}.editor-styles-wrapper .hover-zoom:hover{transform:scale(1.2)}.editor-styles-wrapper .hover-shadow{transition:all ease 0.3s}.editor-styles-wrapper .hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.editor-styles-wrapper .hover-move-up{top:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-up:hover{top:-10px !important}.editor-styles-wrapper .hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-down:hover{bottom:-10px !important}.editor-styles-wrapper .hover-move-left{left:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-left:hover{left:-10px !important}.editor-styles-wrapper .hover-move-right{right:0;position:relative;transition:all ease 0.3s}.editor-styles-wrapper .hover-move-right:hover{right:-10px !important}.editor-styles-wrapper .input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.editor-styles-wrapper .bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"],.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="top"]>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"],.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="right"]>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"],.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="bottom"]>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"],.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.editor-styles-wrapper .bs-popover-auto[x-placement^="left"]>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.5em + .75rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.5em + .75rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.5em + .75rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.5em + .75rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#28a745}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} diff --git a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css index 5773404..09a4d62 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css @@ -13,4 +13,4 @@ * Licensed under the MIT License * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE * - */.iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.iconpicker-popover.popover.top,.iconpicker-popover.popover.topLeftCorner,.iconpicker-popover.popover.topLeft,.iconpicker-popover.popover.topRight,.iconpicker-popover.popover.topRightCorner{margin-top:-10px}.iconpicker-popover.popover.right,.iconpicker-popover.popover.rightTop,.iconpicker-popover.popover.rightBottom{margin-left:10px}.iconpicker-popover.popover.bottom,.iconpicker-popover.popover.bottomRightCorner,.iconpicker-popover.popover.bottomRight,.iconpicker-popover.popover.bottomLeft,.iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.iconpicker-popover.popover.left,.iconpicker-popover.popover.leftBottom,.iconpicker-popover.popover.leftTop{margin-left:-10px}.iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.iconpicker-popover.popover.inline>.arrow{display:none}.dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.dropdown-menu.iconpicker-container{padding:0}.iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.iconpicker-popover.popover .popover-content{padding:0;text-align:center}.iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover .popover-footer:before,.iconpicker-popover .popover-footer:after{content:" ";display:table}.iconpicker-popover .popover-footer:after{clear:both}.iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.iconpicker-popover.popover>.arrow,.iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.iconpicker-popover.popover>.arrow{border-width:11px}.iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.iconpicker-popover.popover.top>.arrow,.iconpicker-popover.popover.topLeft>.arrow,.iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.iconpicker-popover.popover.top>.arrow:after,.iconpicker-popover.popover.topLeft>.arrow:after,.iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.right>.arrow,.iconpicker-popover.popover.rightTop>.arrow,.iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.right>.arrow:after,.iconpicker-popover.popover.rightTop>.arrow:after,.iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.bottom>.arrow,.iconpicker-popover.popover.bottomRight>.arrow,.iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.iconpicker-popover.popover.bottom>.arrow:after,.iconpicker-popover.popover.bottomRight>.arrow:after,.iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.left>.arrow,.iconpicker-popover.popover.leftBottom>.arrow,.iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.left>.arrow:after,.iconpicker-popover.popover.leftBottom>.arrow:after,.iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.iconpicker:before,.iconpicker:after{content:" ";display:table}.iconpicker:after{clear:both}.iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.iconpicker .iconpicker-items:before,.iconpicker .iconpicker-items:after{content:" ";display:table}.iconpicker .iconpicker-items:after{clear:both}.iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.iconpicker-component{cursor:pointer}.tofront{position:relative;z-index:1}.full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.c-pointer:hover{cursor:pointer}.c-move:hover{cursor:move}.z-index-1{z-index:1}@media (max-width: 991.98px){.display-3{font-size:3.5rem}}@media (max-width: 767.98px){.display-3{font-size:2rem}}.row.gap-y>.col,.row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.mt-neg5{margin-top:-5rem}.ml-neg5{margin-left:-5rem}@media (min-width: 768px){.h-md-100-v{height:100vh}.h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.h-xl-300{height:300px}.h-max-380{max-height:380px}}.btn-round{border-radius:30px !important}.btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.btn:hover,.btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.btn-lg,.btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-link:hover,.btn-link:focus{box-shadow:none}.btn-link.btn-primary{color:#1e73be;border-color:transparent}.btn-link.btn-secondary{color:#6c757d;border-color:transparent}.btn-link.btn-success{color:#44c553;border-color:transparent}.btn-link.btn-info{color:#17a2b8;border-color:transparent}.btn-link.btn-warning{color:#ffc107;border-color:transparent}.btn-link.btn-danger{color:#dc3545;border-color:transparent}.btn-link.btn-light{color:#f8f9fa;border-color:transparent}.btn-link.btn-dark{color:#343a40;border-color:transparent}.btn-link.btn-white{color:#fff;border-color:transparent}.btn-link.btn-purple{color:#ad6edd;border-color:transparent}.btn-link.btn-salmon{color:#ff977a;border-color:transparent}.btn-link.btn-cyan{color:#35bdff;border-color:transparent}.btn-link.btn-gray{color:#ced4da;border-color:transparent}.btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.btn-link.btn-indigo{color:#502c6c;border-color:transparent}.btn-link.btn-orange{color:#fbb500;border-color:transparent}.btn-white{background-color:#fff}.input-round{border-radius:30px !important}.input-group.input-round input:first-child{border-radius:30px 0 0 30px}.input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.navbar{font-weight:400}.navbar-brand{margin-right:2rem;font-size:1.25rem}.dropdown-item{font-weight:300}.dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.dropdown-menu.dropdown-caret-0:before{content:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.jumbotron-lg{padding:10rem 0}.jumbotron-xl{padding:15rem 0}.jumbotron-xl{min-height:100vh}.bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bg-black{background-color:#000}.overlay{position:relative}.overlay .container{position:relative}.overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.overlay-black:before{background-color:rgba(0,0,0,0.5)}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bg-primary{fill:#1e73be !important}.bg-secondary{fill:#6c757d !important}.bg-success{fill:#44c553 !important}.bg-info{fill:#17a2b8 !important}.bg-warning{fill:#ffc107 !important}.bg-danger{fill:#dc3545 !important}.bg-light{fill:#f8f9fa !important}.bg-dark{fill:#343a40 !important}.bg-white{fill:#fff !important}.bg-purple{fill:#ad6edd !important}.bg-salmon{fill:#ff977a !important}.bg-cyan{fill:#35bdff !important}.bg-gray{fill:#ced4da !important}.bg-gray-dark{fill:#6c757d !important}.bg-indigo{fill:#502c6c !important}.bg-orange{fill:#fbb500 !important}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.alert-primary hr{border-top-color:#1b66a8}.alert-primary .alert-link{color:#e6e6e6}.alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-secondary hr{border-top-color:#60686f}.alert-secondary .alert-link{color:#e6e6e6}.alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.alert-success hr{border-top-color:#39b747}.alert-success .alert-link{color:#e6e6e6}.alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.alert-info hr{border-top-color:#148ea1}.alert-info .alert-link{color:#e6e6e6}.alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.alert-warning hr{border-top-color:#edb100}.alert-warning .alert-link{color:#e6e6e6}.alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.alert-danger hr{border-top-color:#d32535}.alert-danger .alert-link{color:#e6e6e6}.alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.alert-light hr{border-top-color:#e9ecef}.alert-light .alert-link{color:#e6e6e6}.alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.alert-dark hr{border-top-color:#292d32}.alert-dark .alert-link{color:#e6e6e6}.alert-white{color:#fff;background-color:#fff;border-color:#fff}.alert-white hr{border-top-color:#f2f2f2}.alert-white .alert-link{color:#e6e6e6}.alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.alert-purple hr{border-top-color:#a159d8}.alert-purple .alert-link{color:#e6e6e6}.alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.alert-salmon hr{border-top-color:#ff8361}.alert-salmon .alert-link{color:#e6e6e6}.alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.alert-cyan hr{border-top-color:#1cb5ff}.alert-cyan .alert-link{color:#e6e6e6}.alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.alert-gray hr{border-top-color:#bfc7cf}.alert-gray .alert-link{color:#e6e6e6}.alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-gray-dark hr{border-top-color:#60686f}.alert-gray-dark .alert-link{color:#e6e6e6}.alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.alert-indigo hr{border-top-color:#43255a}.alert-indigo .alert-link{color:#e6e6e6}.alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.alert-orange hr{border-top-color:#e2a300}.alert-orange .alert-link{color:#e6e6e6}ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.loginarea{z-index:1111}}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.btn-round{border-radius:30px !important}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:not(:disabled):not(.disabled):active,.btn-facebook:not(:disabled):not(.disabled).active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.btn-facebook:not(:disabled):not(.disabled):active:focus,.btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-twitter.disabled,.btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.btn-twitter:not(:disabled):not(.disabled):active,.btn-twitter:not(:disabled):not(.disabled).active,.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.btn-twitter:not(:disabled):not(.disabled):active:focus,.btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram.disabled,.btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.btn-instagram:not(:disabled):not(.disabled):active,.btn-instagram:not(:disabled):not(.disabled).active,.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.btn-instagram:not(:disabled):not(.disabled):active:focus,.btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:not(:disabled):not(.disabled):active,.btn-linkedin:not(:disabled):not(.disabled).active,.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.btn-linkedin:not(:disabled):not(.disabled):active:focus,.btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr.disabled,.btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:not(:disabled):not(.disabled):active,.btn-flickr:not(:disabled):not(.disabled).active,.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.btn-flickr:not(:disabled):not(.disabled):active:focus,.btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github{color:#fff;background-color:#333;border-color:#fff}.btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github.disabled,.btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.btn-github:not(:disabled):not(.disabled):active,.btn-github:not(:disabled):not(.disabled).active,.show>.btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.btn-github:not(:disabled):not(.disabled):active:focus,.btn-github:not(:disabled):not(.disabled).active:focus,.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.btn-youtube:focus,.btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube.disabled,.btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:not(:disabled):not(.disabled):active,.btn-youtube:not(:disabled):not(.disabled).active,.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.btn-youtube:not(:disabled):not(.disabled):active:focus,.btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.btn-wordpress:focus,.btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress.disabled,.btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:not(:disabled):not(.disabled):active,.btn-wordpress:not(:disabled):not(.disabled).active,.show>.btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.btn-wordpress:not(:disabled):not(.disabled):active:focus,.btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google.disabled,.btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:not(:disabled):not(.disabled):active,.btn-google:not(:disabled):not(.disabled).active,.show>.btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.btn-google:not(:disabled):not(.disabled):active:focus,.btn-google:not(:disabled):not(.disabled).active:focus,.show>.btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:not(:disabled):not(.disabled):active,.btn-yahoo:not(:disabled):not(.disabled).active,.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.btn-yahoo:not(:disabled):not(.disabled):active:focus,.btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.btn-vkontakte:focus,.btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte.disabled,.btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:not(:disabled):not(.disabled):active,.btn-vkontakte:not(:disabled):not(.disabled).active,.show>.btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.btn-vkontakte:not(:disabled):not(.disabled):active:focus,.btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.btn-tiktok:focus,.btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok.disabled,.btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.btn-tiktok:not(:disabled):not(.disabled):active,.btn-tiktok:not(:disabled):not(.disabled).active,.show>.btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.btn-tiktok:not(:disabled):not(.disabled):active:focus,.btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-square.btn-sm,.btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-square.btn-lg,.btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.btn-icon-split.btn-sm .icon,.btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.btn-icon-split.btn-sm .text,.btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.btn-icon-split.btn-lg .icon,.btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.btn-icon-split.btn-lg .text,.btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.alert a{color:inherit;text-decoration:underline}.alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.row.row-cols-md-0{display:block}.row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.row.row-cols-md-0 .card .card-footer{flex:1 100%}.row.row-cols-md-0 .gv-hide-0{display:none}}.row-cols-md-2 .gv-hide-2{display:none}.row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.row-cols-md-3 .gv-hide-2,.row-cols-md-3 .gv-hide-3{display:none}.row-cols-md-3 .gv-hide-s-2 .gv-secondary,.row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.row-cols-md-4 .gv-hide-2,.row-cols-md-4 .gv-hide-3,.row-cols-md-4 .gv-hide-4{display:none}.row-cols-md-4 .gv-hide-s-2 .gv-secondary,.row-cols-md-4 .gv-hide-s-3 .gv-secondary,.row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.row-cols-md-5 .gv-hide-2,.row-cols-md-5 .gv-hide-3,.row-cols-md-5 .gv-hide-4,.row-cols-md-5 .gv-hide-5{display:none}.row-cols-md-5 .gv-hide-s-2 .gv-secondary,.row-cols-md-5 .gv-hide-s-3 .gv-secondary,.row-cols-md-5 .gv-hide-s-4 .gv-secondary,.row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.row .gv-hide-0,.row .gv-hide-2,.row .gv-hide-3,.row .gv-hide-4,.row .gv-hide-5{display:none}.row .gv-hide-s-2 .gv-secondary,.row .gv-hide-s-3 .gv-secondary,.row .gv-hide-s-4 .gv-secondary,.row .gv-hide-s-5 .gv-secondary{display:none}}.border-width-1{border-width:1px !important}.border-width-2{border-width:2px !important}.border-width-3{border-width:3px !important}.border-width-4{border-width:4px !important}.border-width-5{border-width:5px !important}.bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.hover-content{display:none}.hover-content.fas{display:none}.btn:hover .hover-content,.badge:hover .hover-content,.hover-swap:hover .hover-content{display:initial}.btn:hover .hover-content-original,.badge:hover .hover-content-original,.hover-swap:hover .hover-content-original{display:none}.overflow-visible{overflow:visible}.scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.embed-item-cover-xy{object-fit:cover;height:100%}.embed-item-cover-x{height:auto !important}.embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.embed-item-contain{object-fit:contain}.embed-has-action{transition:all .3s ease-in-out}.embed-has-action i,.embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.embed-has-action:hover i,.embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.flatpickr-month .flatpickr-current-month>*{display:inline-block}.custom-select{-webkit-appearance:none;-moz-appearance:none}.badge-facebook{color:#fff;background-color:#3b5998}a.badge-facebook:hover,a.badge-facebook:focus{color:#fff;background-color:#2d4373}a.badge-facebook:focus,a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.badge-twitter{color:#212529;background-color:#55acee}a.badge-twitter:hover,a.badge-twitter:focus{color:#212529;background-color:#2795e9}a.badge-twitter:focus,a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.badge-instagram{color:#fff;background-color:#125688}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-linkedin{color:#fff;background-color:#0976b4}a.badge-linkedin:hover,a.badge-linkedin:focus{color:#fff;background-color:#075683}a.badge-linkedin:focus,a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.badge-flickr{color:#fff;background-color:#f8457e}a.badge-flickr:hover,a.badge-flickr:focus{color:#fff;background-color:#f6145c}a.badge-flickr:focus,a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.badge-github{color:#fff;background-color:#333}a.badge-github:hover,a.badge-github:focus{color:#fff;background-color:#1a1a1a}a.badge-github:focus,a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.badge-youtube{color:#fff;background-color:#e52d27}a.badge-youtube:hover,a.badge-youtube:focus{color:#fff;background-color:#c21d17}a.badge-youtube:focus,a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.badge-wordpress{color:#fff;background-color:#207297}a.badge-wordpress:hover,a.badge-wordpress:focus{color:#fff;background-color:#17526d}a.badge-wordpress:focus,a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.badge-google{color:#fff;background-color:#ea4335}a.badge-google:hover,a.badge-google:focus{color:#fff;background-color:#d62516}a.badge-google:focus,a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.badge-yahoo{color:#fff;background-color:#6040d2}a.badge-yahoo:hover,a.badge-yahoo:focus{color:#fff;background-color:#492bb4}a.badge-yahoo:focus,a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.badge-vkontakte{color:#fff;background-color:#4a76a8}a.badge-vkontakte:hover,a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}a.badge-vkontakte:focus,a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.badge-tiktok{color:#fff;background-color:#010101}a.badge-tiktok:hover,a.badge-tiktok:focus{color:#fff;background-color:#000}a.badge-tiktok:focus,a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bg-initial{background:initial !important}.bg-inherit{background:inherit !important}.overlay-white:before{background-color:rgba(255,255,255,0.5)}.form-label-group{position:relative;margin-bottom:1rem}.form-label-group>input,.form-label-group>textarea,.form-label-group>label{padding:.45rem 1.2rem}.form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.form-label-group input::-webkit-input-placeholder,.form-label-group input:-ms-input-placeholder,.form-label-group input::-ms-input-placeholder,.form-label-group input::-moz-placeholder,.form-label-group input::placeholder,.form-label-group textarea::-webkit-input-placeholder,.form-label-group textarea:-ms-input-placeholder,.form-label-group textarea::-ms-input-placeholder,.form-label-group textarea::-moz-placeholder,.form-label-group textarea::placeholder{color:transparent}.form-label-group input:not(:placeholder-shown),.form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.form-label-group input:not(:placeholder-shown) ~ label,.form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.ab-left,.ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.ab-left-angle,.ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.ab-left-angle .badge,.ab-top-left-angle .badge{display:block}.ab-right,.ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.ab-right-angle,.ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.ab-right-angle .badge,.ab-top-right-angle .badge{display:block}.ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-left-angle .badge{display:block}.ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-right-angle .badge{display:block}.sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.clear-both{clear:both}.navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.hover-zoom{transition:transform .2s}.hover-zoom:hover{transform:scale(1.2)}.hover-shadow{transition:all ease 0.3s}.hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.hover-move-up{top:0;position:relative;transition:all ease 0.3s}.hover-move-up:hover{top:-10px !important}.hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.hover-move-down:hover{bottom:-10px !important}.hover-move-left{left:0;position:relative;transition:all ease 0.3s}.hover-move-left:hover{left:-10px !important}.hover-move-right{right:0;position:relative;transition:all ease 0.3s}.hover-move-right:hover{right:-10px !important}.input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.6em + .9rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.6em + .9rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.6em + .9rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.6em + .9rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#44c553}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#1e73be;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} + */.iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.iconpicker-popover.popover.top,.iconpicker-popover.popover.topLeftCorner,.iconpicker-popover.popover.topLeft,.iconpicker-popover.popover.topRight,.iconpicker-popover.popover.topRightCorner{margin-top:-10px}.iconpicker-popover.popover.right,.iconpicker-popover.popover.rightTop,.iconpicker-popover.popover.rightBottom{margin-left:10px}.iconpicker-popover.popover.bottom,.iconpicker-popover.popover.bottomRightCorner,.iconpicker-popover.popover.bottomRight,.iconpicker-popover.popover.bottomLeft,.iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.iconpicker-popover.popover.left,.iconpicker-popover.popover.leftBottom,.iconpicker-popover.popover.leftTop{margin-left:-10px}.iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.iconpicker-popover.popover.inline>.arrow{display:none}.dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.dropdown-menu.iconpicker-container{padding:0}.iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.iconpicker-popover.popover .popover-content{padding:0;text-align:center}.iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover .popover-footer:before,.iconpicker-popover .popover-footer:after{content:" ";display:table}.iconpicker-popover .popover-footer:after{clear:both}.iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.iconpicker-popover.popover>.arrow,.iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.iconpicker-popover.popover>.arrow{border-width:11px}.iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.iconpicker-popover.popover.top>.arrow,.iconpicker-popover.popover.topLeft>.arrow,.iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.iconpicker-popover.popover.top>.arrow:after,.iconpicker-popover.popover.topLeft>.arrow:after,.iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.right>.arrow,.iconpicker-popover.popover.rightTop>.arrow,.iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.right>.arrow:after,.iconpicker-popover.popover.rightTop>.arrow:after,.iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.bottom>.arrow,.iconpicker-popover.popover.bottomRight>.arrow,.iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.iconpicker-popover.popover.bottom>.arrow:after,.iconpicker-popover.popover.bottomRight>.arrow:after,.iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.left>.arrow,.iconpicker-popover.popover.leftBottom>.arrow,.iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.left>.arrow:after,.iconpicker-popover.popover.leftBottom>.arrow:after,.iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.iconpicker:before,.iconpicker:after{content:" ";display:table}.iconpicker:after{clear:both}.iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.iconpicker .iconpicker-items:before,.iconpicker .iconpicker-items:after{content:" ";display:table}.iconpicker .iconpicker-items:after{clear:both}.iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.iconpicker-component{cursor:pointer}.tofront{position:relative;z-index:1}.full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.c-pointer:hover{cursor:pointer}.c-move:hover{cursor:move}.z-index-1{z-index:1}@media (max-width: 991.98px){.display-3{font-size:3.5rem}}@media (max-width: 767.98px){.display-3{font-size:2rem}}.row.gap-y>.col,.row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.mt-neg5{margin-top:-5rem}.ml-neg5{margin-left:-5rem}@media (min-width: 768px){.h-md-100-v{height:100vh}.h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.h-xl-300{height:300px}.h-max-380{max-height:380px}}.btn-round{border-radius:30px !important}.btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.btn:hover,.btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.btn-lg,.btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-link:hover,.btn-link:focus{box-shadow:none}.btn-link.btn-primary{color:#1e73be;border-color:transparent}.btn-link.btn-secondary{color:#6c757d;border-color:transparent}.btn-link.btn-success{color:#44c553;border-color:transparent}.btn-link.btn-info{color:#17a2b8;border-color:transparent}.btn-link.btn-warning{color:#ffc107;border-color:transparent}.btn-link.btn-danger{color:#dc3545;border-color:transparent}.btn-link.btn-light{color:#f8f9fa;border-color:transparent}.btn-link.btn-dark{color:#343a40;border-color:transparent}.btn-link.btn-white{color:#fff;border-color:transparent}.btn-link.btn-purple{color:#ad6edd;border-color:transparent}.btn-link.btn-salmon{color:#ff977a;border-color:transparent}.btn-link.btn-cyan{color:#35bdff;border-color:transparent}.btn-link.btn-gray{color:#ced4da;border-color:transparent}.btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.btn-link.btn-indigo{color:#502c6c;border-color:transparent}.btn-link.btn-orange{color:#fbb500;border-color:transparent}.btn-white{background-color:#fff}.input-round{border-radius:30px !important}.input-group.input-round input:first-child{border-radius:30px 0 0 30px}.input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.navbar{font-weight:400}.navbar-brand{margin-right:2rem;font-size:1.25rem}.dropdown-item{font-weight:300}.dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.dropdown-menu.dropdown-caret-0:before{content:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.jumbotron-lg{padding:10rem 0}.jumbotron-xl{padding:15rem 0}.jumbotron-xl{min-height:100vh}.bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bg-black{background-color:#000}.overlay{position:relative}.overlay .container{position:relative}.overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.overlay-black:before{background-color:rgba(0,0,0,0.5)}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bg-primary{fill:#1e73be !important}.bg-secondary{fill:#6c757d !important}.bg-success{fill:#44c553 !important}.bg-info{fill:#17a2b8 !important}.bg-warning{fill:#ffc107 !important}.bg-danger{fill:#dc3545 !important}.bg-light{fill:#f8f9fa !important}.bg-dark{fill:#343a40 !important}.bg-white{fill:#fff !important}.bg-purple{fill:#ad6edd !important}.bg-salmon{fill:#ff977a !important}.bg-cyan{fill:#35bdff !important}.bg-gray{fill:#ced4da !important}.bg-gray-dark{fill:#6c757d !important}.bg-indigo{fill:#502c6c !important}.bg-orange{fill:#fbb500 !important}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.alert-primary hr{border-top-color:#1b66a8}.alert-primary .alert-link{color:#e6e6e6}.alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-secondary hr{border-top-color:#60686f}.alert-secondary .alert-link{color:#e6e6e6}.alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.alert-success hr{border-top-color:#39b747}.alert-success .alert-link{color:#e6e6e6}.alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.alert-info hr{border-top-color:#148ea1}.alert-info .alert-link{color:#e6e6e6}.alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.alert-warning hr{border-top-color:#edb100}.alert-warning .alert-link{color:#e6e6e6}.alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.alert-danger hr{border-top-color:#d32535}.alert-danger .alert-link{color:#e6e6e6}.alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.alert-light hr{border-top-color:#e9ecef}.alert-light .alert-link{color:#e6e6e6}.alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.alert-dark hr{border-top-color:#292d32}.alert-dark .alert-link{color:#e6e6e6}.alert-white{color:#fff;background-color:#fff;border-color:#fff}.alert-white hr{border-top-color:#f2f2f2}.alert-white .alert-link{color:#e6e6e6}.alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.alert-purple hr{border-top-color:#a159d8}.alert-purple .alert-link{color:#e6e6e6}.alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.alert-salmon hr{border-top-color:#ff8361}.alert-salmon .alert-link{color:#e6e6e6}.alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.alert-cyan hr{border-top-color:#1cb5ff}.alert-cyan .alert-link{color:#e6e6e6}.alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.alert-gray hr{border-top-color:#bfc7cf}.alert-gray .alert-link{color:#e6e6e6}.alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-gray-dark hr{border-top-color:#60686f}.alert-gray-dark .alert-link{color:#e6e6e6}.alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.alert-indigo hr{border-top-color:#43255a}.alert-indigo .alert-link{color:#e6e6e6}.alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.alert-orange hr{border-top-color:#e2a300}.alert-orange .alert-link{color:#e6e6e6}ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.loginarea{z-index:1111}}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.btn-round{border-radius:30px !important}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:not(:disabled):not(.disabled):active,.btn-facebook:not(:disabled):not(.disabled).active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.btn-facebook:not(:disabled):not(.disabled):active:focus,.btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-twitter.disabled,.btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.btn-twitter:not(:disabled):not(.disabled):active,.btn-twitter:not(:disabled):not(.disabled).active,.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.btn-twitter:not(:disabled):not(.disabled):active:focus,.btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram.disabled,.btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.btn-instagram:not(:disabled):not(.disabled):active,.btn-instagram:not(:disabled):not(.disabled).active,.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.btn-instagram:not(:disabled):not(.disabled):active:focus,.btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:not(:disabled):not(.disabled):active,.btn-linkedin:not(:disabled):not(.disabled).active,.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.btn-linkedin:not(:disabled):not(.disabled):active:focus,.btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr.disabled,.btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:not(:disabled):not(.disabled):active,.btn-flickr:not(:disabled):not(.disabled).active,.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.btn-flickr:not(:disabled):not(.disabled):active:focus,.btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github{color:#fff;background-color:#333;border-color:#fff}.btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github.disabled,.btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.btn-github:not(:disabled):not(.disabled):active,.btn-github:not(:disabled):not(.disabled).active,.show>.btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.btn-github:not(:disabled):not(.disabled):active:focus,.btn-github:not(:disabled):not(.disabled).active:focus,.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.btn-youtube:focus,.btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube.disabled,.btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:not(:disabled):not(.disabled):active,.btn-youtube:not(:disabled):not(.disabled).active,.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.btn-youtube:not(:disabled):not(.disabled):active:focus,.btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.btn-wordpress:focus,.btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress.disabled,.btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:not(:disabled):not(.disabled):active,.btn-wordpress:not(:disabled):not(.disabled).active,.show>.btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.btn-wordpress:not(:disabled):not(.disabled):active:focus,.btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google.disabled,.btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:not(:disabled):not(.disabled):active,.btn-google:not(:disabled):not(.disabled).active,.show>.btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.btn-google:not(:disabled):not(.disabled):active:focus,.btn-google:not(:disabled):not(.disabled).active:focus,.show>.btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:not(:disabled):not(.disabled):active,.btn-yahoo:not(:disabled):not(.disabled).active,.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.btn-yahoo:not(:disabled):not(.disabled):active:focus,.btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.btn-vkontakte:focus,.btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte.disabled,.btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:not(:disabled):not(.disabled):active,.btn-vkontakte:not(:disabled):not(.disabled).active,.show>.btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.btn-vkontakte:not(:disabled):not(.disabled):active:focus,.btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.btn-tiktok:focus,.btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok.disabled,.btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.btn-tiktok:not(:disabled):not(.disabled):active,.btn-tiktok:not(:disabled):not(.disabled).active,.show>.btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.btn-tiktok:not(:disabled):not(.disabled):active:focus,.btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-square.btn-sm,.btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-square.btn-lg,.btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.btn-icon-split.btn-sm .icon,.btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.btn-icon-split.btn-sm .text,.btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.btn-icon-split.btn-lg .icon,.btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.btn-icon-split.btn-lg .text,.btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.alert a{color:inherit;text-decoration:underline}.alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.row.row-cols-md-0{display:block}.row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.row.row-cols-md-0 .card .card-footer{flex:1 100%}.row.row-cols-md-0 .gv-hide-0{display:none}}.row-cols-md-2 .gv-hide-2{display:none}.row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.row-cols-md-3 .gv-hide-2,.row-cols-md-3 .gv-hide-3{display:none}.row-cols-md-3 .gv-hide-s-2 .gv-secondary,.row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.row-cols-md-4 .gv-hide-2,.row-cols-md-4 .gv-hide-3,.row-cols-md-4 .gv-hide-4{display:none}.row-cols-md-4 .gv-hide-s-2 .gv-secondary,.row-cols-md-4 .gv-hide-s-3 .gv-secondary,.row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.row-cols-md-5 .gv-hide-2,.row-cols-md-5 .gv-hide-3,.row-cols-md-5 .gv-hide-4,.row-cols-md-5 .gv-hide-5{display:none}.row-cols-md-5 .gv-hide-s-2 .gv-secondary,.row-cols-md-5 .gv-hide-s-3 .gv-secondary,.row-cols-md-5 .gv-hide-s-4 .gv-secondary,.row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.row .gv-hide-0,.row .gv-hide-2,.row .gv-hide-3,.row .gv-hide-4,.row .gv-hide-5{display:none}.row .gv-hide-s-2 .gv-secondary,.row .gv-hide-s-3 .gv-secondary,.row .gv-hide-s-4 .gv-secondary,.row .gv-hide-s-5 .gv-secondary{display:none}}.border-width-1{border-width:1px !important}.border-width-2{border-width:2px !important}.border-width-3{border-width:3px !important}.border-width-4{border-width:4px !important}.border-width-5{border-width:5px !important}.bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.hover-content{display:none}.hover-content.fas{display:none}.btn:hover .hover-content,.badge:hover .hover-content,.hover-swap:hover .hover-content{display:initial}.btn:hover .hover-content-original,.badge:hover .hover-content-original,.hover-swap:hover .hover-content-original{display:none}.overflow-visible{overflow:visible}.scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.embed-item-cover-xy{object-fit:cover;height:100%}.embed-item-cover-x{height:auto !important}.embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.embed-item-contain{object-fit:contain}.embed-has-action{transition:all .3s ease-in-out}.embed-has-action i,.embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.embed-has-action:hover i,.embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.flatpickr-month .flatpickr-current-month>*{display:inline-block}.custom-select{-webkit-appearance:none;-moz-appearance:none}.badge-facebook{color:#fff;background-color:#3b5998}a.badge-facebook:hover,a.badge-facebook:focus{color:#fff;background-color:#2d4373}a.badge-facebook:focus,a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.badge-twitter{color:#212529;background-color:#55acee}a.badge-twitter:hover,a.badge-twitter:focus{color:#212529;background-color:#2795e9}a.badge-twitter:focus,a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.badge-instagram{color:#fff;background-color:#125688}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-linkedin{color:#fff;background-color:#0976b4}a.badge-linkedin:hover,a.badge-linkedin:focus{color:#fff;background-color:#075683}a.badge-linkedin:focus,a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.badge-flickr{color:#fff;background-color:#f8457e}a.badge-flickr:hover,a.badge-flickr:focus{color:#fff;background-color:#f6145c}a.badge-flickr:focus,a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.badge-github{color:#fff;background-color:#333}a.badge-github:hover,a.badge-github:focus{color:#fff;background-color:#1a1a1a}a.badge-github:focus,a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.badge-youtube{color:#fff;background-color:#e52d27}a.badge-youtube:hover,a.badge-youtube:focus{color:#fff;background-color:#c21d17}a.badge-youtube:focus,a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.badge-wordpress{color:#fff;background-color:#207297}a.badge-wordpress:hover,a.badge-wordpress:focus{color:#fff;background-color:#17526d}a.badge-wordpress:focus,a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.badge-google{color:#fff;background-color:#ea4335}a.badge-google:hover,a.badge-google:focus{color:#fff;background-color:#d62516}a.badge-google:focus,a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.badge-yahoo{color:#fff;background-color:#6040d2}a.badge-yahoo:hover,a.badge-yahoo:focus{color:#fff;background-color:#492bb4}a.badge-yahoo:focus,a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.badge-vkontakte{color:#fff;background-color:#4a76a8}a.badge-vkontakte:hover,a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}a.badge-vkontakte:focus,a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.badge-tiktok{color:#fff;background-color:#010101}a.badge-tiktok:hover,a.badge-tiktok:focus{color:#fff;background-color:#000}a.badge-tiktok:focus,a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bg-initial{background:initial !important}.bg-inherit{background:inherit !important}.overlay-white:before{background-color:rgba(255,255,255,0.5)}.form-label-group{position:relative;margin-bottom:1rem}.form-label-group>input,.form-label-group>textarea,.form-label-group>label{padding:.45rem 1.2rem}.form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.form-label-group input::-webkit-input-placeholder,.form-label-group input:-ms-input-placeholder,.form-label-group input::-ms-input-placeholder,.form-label-group input::-moz-placeholder,.form-label-group input::placeholder,.form-label-group textarea::-webkit-input-placeholder,.form-label-group textarea:-ms-input-placeholder,.form-label-group textarea::-ms-input-placeholder,.form-label-group textarea::-moz-placeholder,.form-label-group textarea::placeholder{color:transparent}.form-label-group input:not(:placeholder-shown),.form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.form-label-group input:not(:placeholder-shown) ~ label,.form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.ab-left,.ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.ab-left-angle,.ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.ab-left-angle .badge,.ab-top-left-angle .badge{display:block}.ab-right,.ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.ab-right-angle,.ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.ab-right-angle .badge,.ab-top-right-angle .badge{display:block}.ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-left-angle .badge{display:block}.ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-right-angle .badge{display:block}.sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.clear-both{clear:both}.navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.hover-zoom{transition:transform .2s}.hover-zoom:hover{transform:scale(1.2)}.hover-shadow{transition:all ease 0.3s}.hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.hover-move-up{top:0;position:relative;transition:all ease 0.3s}.hover-move-up:hover{top:-10px !important}.hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.hover-move-down:hover{bottom:-10px !important}.hover-move-left{left:0;position:relative;transition:all ease 0.3s}.hover-move-left:hover{left:-10px !important}.hover-move-right{right:0;position:relative;transition:all ease 0.3s}.hover-move-right:hover{right:-10px !important}.input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.6em + .9rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.6em + .9rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.6em + .9rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.6em + .9rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#44c553}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#1e73be;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} diff --git a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui.css b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui.css index 331397d..c271989 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui.css @@ -11,4 +11,4 @@ * Licensed under the MIT License * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE * - */.iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.iconpicker-popover.popover.top,.iconpicker-popover.popover.topLeftCorner,.iconpicker-popover.popover.topLeft,.iconpicker-popover.popover.topRight,.iconpicker-popover.popover.topRightCorner{margin-top:-10px}.iconpicker-popover.popover.right,.iconpicker-popover.popover.rightTop,.iconpicker-popover.popover.rightBottom{margin-left:10px}.iconpicker-popover.popover.bottom,.iconpicker-popover.popover.bottomRightCorner,.iconpicker-popover.popover.bottomRight,.iconpicker-popover.popover.bottomLeft,.iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.iconpicker-popover.popover.left,.iconpicker-popover.popover.leftBottom,.iconpicker-popover.popover.leftTop{margin-left:-10px}.iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.iconpicker-popover.popover.inline>.arrow{display:none}.dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.dropdown-menu.iconpicker-container{padding:0}.iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.iconpicker-popover.popover .popover-content{padding:0;text-align:center}.iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover .popover-footer:before,.iconpicker-popover .popover-footer:after{content:" ";display:table}.iconpicker-popover .popover-footer:after{clear:both}.iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.iconpicker-popover.popover>.arrow,.iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.iconpicker-popover.popover>.arrow{border-width:11px}.iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.iconpicker-popover.popover.top>.arrow,.iconpicker-popover.popover.topLeft>.arrow,.iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.iconpicker-popover.popover.top>.arrow:after,.iconpicker-popover.popover.topLeft>.arrow:after,.iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.right>.arrow,.iconpicker-popover.popover.rightTop>.arrow,.iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.right>.arrow:after,.iconpicker-popover.popover.rightTop>.arrow:after,.iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.bottom>.arrow,.iconpicker-popover.popover.bottomRight>.arrow,.iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.iconpicker-popover.popover.bottom>.arrow:after,.iconpicker-popover.popover.bottomRight>.arrow:after,.iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.left>.arrow,.iconpicker-popover.popover.leftBottom>.arrow,.iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.left>.arrow:after,.iconpicker-popover.popover.leftBottom>.arrow:after,.iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.iconpicker:before,.iconpicker:after{content:" ";display:table}.iconpicker:after{clear:both}.iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.iconpicker .iconpicker-items:before,.iconpicker .iconpicker-items:after{content:" ";display:table}.iconpicker .iconpicker-items:after{clear:both}.iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.iconpicker-component{cursor:pointer}.tofront{position:relative;z-index:1}.full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.c-pointer:hover{cursor:pointer}.c-move:hover{cursor:move}.z-index-1{z-index:1}@media (max-width: 991.98px){.display-3{font-size:3.5rem}}@media (max-width: 767.98px){.display-3{font-size:2rem}}.row.gap-y>.col,.row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.mt-neg5{margin-top:-5rem}.ml-neg5{margin-left:-5rem}@media (min-width: 768px){.h-md-100-v{height:100vh}.h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.h-xl-300{height:300px}.h-max-380{max-height:380px}}.btn-round{border-radius:30px !important}.btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.btn:hover,.btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.btn-lg,.btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-link:hover,.btn-link:focus{box-shadow:none}.btn-link.btn-primary{color:#1e73be;border-color:transparent}.btn-link.btn-secondary{color:#6c757d;border-color:transparent}.btn-link.btn-success{color:#44c553;border-color:transparent}.btn-link.btn-info{color:#17a2b8;border-color:transparent}.btn-link.btn-warning{color:#ffc107;border-color:transparent}.btn-link.btn-danger{color:#dc3545;border-color:transparent}.btn-link.btn-light{color:#f8f9fa;border-color:transparent}.btn-link.btn-dark{color:#343a40;border-color:transparent}.btn-link.btn-white{color:#fff;border-color:transparent}.btn-link.btn-purple{color:#ad6edd;border-color:transparent}.btn-link.btn-salmon{color:#ff977a;border-color:transparent}.btn-link.btn-cyan{color:#35bdff;border-color:transparent}.btn-link.btn-gray{color:#ced4da;border-color:transparent}.btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.btn-link.btn-indigo{color:#502c6c;border-color:transparent}.btn-link.btn-orange{color:#fbb500;border-color:transparent}.btn-white{background-color:#fff}.input-round{border-radius:30px !important}.input-group.input-round input:first-child{border-radius:30px 0 0 30px}.input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.navbar{font-weight:400}.navbar-brand{margin-right:2rem;font-size:1.25rem}.dropdown-item{font-weight:300}.dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.dropdown-menu.dropdown-caret-0:before{content:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.jumbotron-lg{padding:10rem 0}.jumbotron-xl{padding:15rem 0}.jumbotron-xl{min-height:100vh}.bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bg-black{background-color:#000}.overlay{position:relative}.overlay .container{position:relative}.overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.overlay-black:before{background-color:rgba(0,0,0,0.5)}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bg-primary{fill:#1e73be !important}.bg-secondary{fill:#6c757d !important}.bg-success{fill:#44c553 !important}.bg-info{fill:#17a2b8 !important}.bg-warning{fill:#ffc107 !important}.bg-danger{fill:#dc3545 !important}.bg-light{fill:#f8f9fa !important}.bg-dark{fill:#343a40 !important}.bg-white{fill:#fff !important}.bg-purple{fill:#ad6edd !important}.bg-salmon{fill:#ff977a !important}.bg-cyan{fill:#35bdff !important}.bg-gray{fill:#ced4da !important}.bg-gray-dark{fill:#6c757d !important}.bg-indigo{fill:#502c6c !important}.bg-orange{fill:#fbb500 !important}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.alert-primary hr{border-top-color:#1b66a8}.alert-primary .alert-link{color:#e6e6e6}.alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-secondary hr{border-top-color:#60686f}.alert-secondary .alert-link{color:#e6e6e6}.alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.alert-success hr{border-top-color:#39b747}.alert-success .alert-link{color:#e6e6e6}.alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.alert-info hr{border-top-color:#148ea1}.alert-info .alert-link{color:#e6e6e6}.alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.alert-warning hr{border-top-color:#edb100}.alert-warning .alert-link{color:#e6e6e6}.alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.alert-danger hr{border-top-color:#d32535}.alert-danger .alert-link{color:#e6e6e6}.alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.alert-light hr{border-top-color:#e9ecef}.alert-light .alert-link{color:#e6e6e6}.alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.alert-dark hr{border-top-color:#292d32}.alert-dark .alert-link{color:#e6e6e6}.alert-white{color:#fff;background-color:#fff;border-color:#fff}.alert-white hr{border-top-color:#f2f2f2}.alert-white .alert-link{color:#e6e6e6}.alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.alert-purple hr{border-top-color:#a159d8}.alert-purple .alert-link{color:#e6e6e6}.alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.alert-salmon hr{border-top-color:#ff8361}.alert-salmon .alert-link{color:#e6e6e6}.alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.alert-cyan hr{border-top-color:#1cb5ff}.alert-cyan .alert-link{color:#e6e6e6}.alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.alert-gray hr{border-top-color:#bfc7cf}.alert-gray .alert-link{color:#e6e6e6}.alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-gray-dark hr{border-top-color:#60686f}.alert-gray-dark .alert-link{color:#e6e6e6}.alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.alert-indigo hr{border-top-color:#43255a}.alert-indigo .alert-link{color:#e6e6e6}.alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.alert-orange hr{border-top-color:#e2a300}.alert-orange .alert-link{color:#e6e6e6}ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.loginarea{z-index:1111}}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.btn-round{border-radius:30px !important}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:not(:disabled):not(.disabled):active,.btn-facebook:not(:disabled):not(.disabled).active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.btn-facebook:not(:disabled):not(.disabled):active:focus,.btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-twitter.disabled,.btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.btn-twitter:not(:disabled):not(.disabled):active,.btn-twitter:not(:disabled):not(.disabled).active,.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.btn-twitter:not(:disabled):not(.disabled):active:focus,.btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram.disabled,.btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.btn-instagram:not(:disabled):not(.disabled):active,.btn-instagram:not(:disabled):not(.disabled).active,.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.btn-instagram:not(:disabled):not(.disabled):active:focus,.btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:not(:disabled):not(.disabled):active,.btn-linkedin:not(:disabled):not(.disabled).active,.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.btn-linkedin:not(:disabled):not(.disabled):active:focus,.btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr.disabled,.btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:not(:disabled):not(.disabled):active,.btn-flickr:not(:disabled):not(.disabled).active,.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.btn-flickr:not(:disabled):not(.disabled):active:focus,.btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github{color:#fff;background-color:#333;border-color:#fff}.btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github.disabled,.btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.btn-github:not(:disabled):not(.disabled):active,.btn-github:not(:disabled):not(.disabled).active,.show>.btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.btn-github:not(:disabled):not(.disabled):active:focus,.btn-github:not(:disabled):not(.disabled).active:focus,.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.btn-youtube:focus,.btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube.disabled,.btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:not(:disabled):not(.disabled):active,.btn-youtube:not(:disabled):not(.disabled).active,.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.btn-youtube:not(:disabled):not(.disabled):active:focus,.btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.btn-wordpress:focus,.btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress.disabled,.btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:not(:disabled):not(.disabled):active,.btn-wordpress:not(:disabled):not(.disabled).active,.show>.btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.btn-wordpress:not(:disabled):not(.disabled):active:focus,.btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google.disabled,.btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:not(:disabled):not(.disabled):active,.btn-google:not(:disabled):not(.disabled).active,.show>.btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.btn-google:not(:disabled):not(.disabled):active:focus,.btn-google:not(:disabled):not(.disabled).active:focus,.show>.btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:not(:disabled):not(.disabled):active,.btn-yahoo:not(:disabled):not(.disabled).active,.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.btn-yahoo:not(:disabled):not(.disabled):active:focus,.btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.btn-vkontakte:focus,.btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte.disabled,.btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:not(:disabled):not(.disabled):active,.btn-vkontakte:not(:disabled):not(.disabled).active,.show>.btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.btn-vkontakte:not(:disabled):not(.disabled):active:focus,.btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.btn-tiktok:focus,.btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok.disabled,.btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.btn-tiktok:not(:disabled):not(.disabled):active,.btn-tiktok:not(:disabled):not(.disabled).active,.show>.btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.btn-tiktok:not(:disabled):not(.disabled):active:focus,.btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-square.btn-sm,.btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-square.btn-lg,.btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.btn-icon-split.btn-sm .icon,.btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.btn-icon-split.btn-sm .text,.btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.btn-icon-split.btn-lg .icon,.btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.btn-icon-split.btn-lg .text,.btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.alert a{color:inherit;text-decoration:underline}.alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.row.row-cols-md-0{display:block}.row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.row.row-cols-md-0 .card .card-footer{flex:1 100%}.row.row-cols-md-0 .gv-hide-0{display:none}}.row-cols-md-2 .gv-hide-2{display:none}.row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.row-cols-md-3 .gv-hide-2,.row-cols-md-3 .gv-hide-3{display:none}.row-cols-md-3 .gv-hide-s-2 .gv-secondary,.row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.row-cols-md-4 .gv-hide-2,.row-cols-md-4 .gv-hide-3,.row-cols-md-4 .gv-hide-4{display:none}.row-cols-md-4 .gv-hide-s-2 .gv-secondary,.row-cols-md-4 .gv-hide-s-3 .gv-secondary,.row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.row-cols-md-5 .gv-hide-2,.row-cols-md-5 .gv-hide-3,.row-cols-md-5 .gv-hide-4,.row-cols-md-5 .gv-hide-5{display:none}.row-cols-md-5 .gv-hide-s-2 .gv-secondary,.row-cols-md-5 .gv-hide-s-3 .gv-secondary,.row-cols-md-5 .gv-hide-s-4 .gv-secondary,.row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.row .gv-hide-0,.row .gv-hide-2,.row .gv-hide-3,.row .gv-hide-4,.row .gv-hide-5{display:none}.row .gv-hide-s-2 .gv-secondary,.row .gv-hide-s-3 .gv-secondary,.row .gv-hide-s-4 .gv-secondary,.row .gv-hide-s-5 .gv-secondary{display:none}}.border-width-1{border-width:1px !important}.border-width-2{border-width:2px !important}.border-width-3{border-width:3px !important}.border-width-4{border-width:4px !important}.border-width-5{border-width:5px !important}.bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.hover-content{display:none}.hover-content.fas{display:none}.btn:hover .hover-content,.badge:hover .hover-content,.hover-swap:hover .hover-content{display:initial}.btn:hover .hover-content-original,.badge:hover .hover-content-original,.hover-swap:hover .hover-content-original{display:none}.overflow-visible{overflow:visible}.scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.embed-item-cover-xy{object-fit:cover;height:100%}.embed-item-cover-x{height:auto !important}.embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.embed-item-contain{object-fit:contain}.embed-has-action{transition:all .3s ease-in-out}.embed-has-action i,.embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.embed-has-action:hover i,.embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.flatpickr-month .flatpickr-current-month>*{display:inline-block}.custom-select{-webkit-appearance:none;-moz-appearance:none}.badge-facebook{color:#fff;background-color:#3b5998}a.badge-facebook:hover,a.badge-facebook:focus{color:#fff;background-color:#2d4373}a.badge-facebook:focus,a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.badge-twitter{color:#212529;background-color:#55acee}a.badge-twitter:hover,a.badge-twitter:focus{color:#212529;background-color:#2795e9}a.badge-twitter:focus,a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.badge-instagram{color:#fff;background-color:#125688}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-linkedin{color:#fff;background-color:#0976b4}a.badge-linkedin:hover,a.badge-linkedin:focus{color:#fff;background-color:#075683}a.badge-linkedin:focus,a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.badge-flickr{color:#fff;background-color:#f8457e}a.badge-flickr:hover,a.badge-flickr:focus{color:#fff;background-color:#f6145c}a.badge-flickr:focus,a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.badge-github{color:#fff;background-color:#333}a.badge-github:hover,a.badge-github:focus{color:#fff;background-color:#1a1a1a}a.badge-github:focus,a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.badge-youtube{color:#fff;background-color:#e52d27}a.badge-youtube:hover,a.badge-youtube:focus{color:#fff;background-color:#c21d17}a.badge-youtube:focus,a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.badge-wordpress{color:#fff;background-color:#207297}a.badge-wordpress:hover,a.badge-wordpress:focus{color:#fff;background-color:#17526d}a.badge-wordpress:focus,a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.badge-google{color:#fff;background-color:#ea4335}a.badge-google:hover,a.badge-google:focus{color:#fff;background-color:#d62516}a.badge-google:focus,a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.badge-yahoo{color:#fff;background-color:#6040d2}a.badge-yahoo:hover,a.badge-yahoo:focus{color:#fff;background-color:#492bb4}a.badge-yahoo:focus,a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.badge-vkontakte{color:#fff;background-color:#4a76a8}a.badge-vkontakte:hover,a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}a.badge-vkontakte:focus,a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.badge-tiktok{color:#fff;background-color:#010101}a.badge-tiktok:hover,a.badge-tiktok:focus{color:#fff;background-color:#000}a.badge-tiktok:focus,a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bg-initial{background:initial !important}.bg-inherit{background:inherit !important}.overlay-white:before{background-color:rgba(255,255,255,0.5)}.form-label-group{position:relative;margin-bottom:1rem}.form-label-group>input,.form-label-group>textarea,.form-label-group>label{padding:.45rem 1.2rem}.form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.form-label-group input::-webkit-input-placeholder,.form-label-group input:-ms-input-placeholder,.form-label-group input::-ms-input-placeholder,.form-label-group input::-moz-placeholder,.form-label-group input::placeholder,.form-label-group textarea::-webkit-input-placeholder,.form-label-group textarea:-ms-input-placeholder,.form-label-group textarea::-ms-input-placeholder,.form-label-group textarea::-moz-placeholder,.form-label-group textarea::placeholder{color:transparent}.form-label-group input:not(:placeholder-shown),.form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.form-label-group input:not(:placeholder-shown) ~ label,.form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.ab-left,.ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.ab-left-angle,.ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.ab-left-angle .badge,.ab-top-left-angle .badge{display:block}.ab-right,.ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.ab-right-angle,.ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.ab-right-angle .badge,.ab-top-right-angle .badge{display:block}.ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-left-angle .badge{display:block}.ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-right-angle .badge{display:block}.sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.clear-both{clear:both}.navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.hover-zoom{transition:transform .2s}.hover-zoom:hover{transform:scale(1.2)}.hover-shadow{transition:all ease 0.3s}.hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.hover-move-up{top:0;position:relative;transition:all ease 0.3s}.hover-move-up:hover{top:-10px !important}.hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.hover-move-down:hover{bottom:-10px !important}.hover-move-left{left:0;position:relative;transition:all ease 0.3s}.hover-move-left:hover{left:-10px !important}.hover-move-right{right:0;position:relative;transition:all ease 0.3s}.hover-move-right:hover{right:-10px !important}.input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.6em + .9rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.6em + .9rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.6em + .9rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.6em + .9rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#44c553}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#1e73be;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} + */.iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:234px;background:#f7f7f7;z-index:9}.iconpicker-popover.popover.top,.iconpicker-popover.popover.topLeftCorner,.iconpicker-popover.popover.topLeft,.iconpicker-popover.popover.topRight,.iconpicker-popover.popover.topRightCorner{margin-top:-10px}.iconpicker-popover.popover.right,.iconpicker-popover.popover.rightTop,.iconpicker-popover.popover.rightBottom{margin-left:10px}.iconpicker-popover.popover.bottom,.iconpicker-popover.popover.bottomRightCorner,.iconpicker-popover.popover.bottomRight,.iconpicker-popover.popover.bottomLeft,.iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.iconpicker-popover.popover.left,.iconpicker-popover.popover.leftBottom,.iconpicker-popover.popover.leftTop{margin-left:-10px}.iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.iconpicker-popover.popover.inline>.arrow{display:none}.dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.dropdown-menu.iconpicker-container{padding:0}.iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search{margin-top:12px}.iconpicker-popover.popover .popover-content{padding:0;text-align:center}.iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover .popover-footer:before,.iconpicker-popover .popover-footer:after{content:" ";display:table}.iconpicker-popover .popover-footer:after{clear:both}.iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.iconpicker-popover.popover>.arrow,.iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.iconpicker-popover.popover>.arrow{border-width:11px}.iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.iconpicker-popover.popover.top>.arrow,.iconpicker-popover.popover.topLeft>.arrow,.iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.iconpicker-popover.popover.top>.arrow:after,.iconpicker-popover.popover.topLeft>.arrow:after,.iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff}.iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.right>.arrow,.iconpicker-popover.popover.rightTop>.arrow,.iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.right>.arrow:after,.iconpicker-popover.popover.rightTop>.arrow:after,.iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff}.iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.bottom>.arrow,.iconpicker-popover.popover.bottomRight>.arrow,.iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.iconpicker-popover.popover.bottom>.arrow:after,.iconpicker-popover.popover.bottomRight>.arrow:after,.iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff}.iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.left>.arrow,.iconpicker-popover.popover.leftBottom>.arrow,.iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.left>.arrow:after,.iconpicker-popover.popover.leftBottom>.arrow:after,.iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px}.iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.iconpicker:before,.iconpicker:after{content:" ";display:table}.iconpicker:after{clear:both}.iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.iconpicker .iconpicker-items:before,.iconpicker .iconpicker-items:after{content:" ";display:table}.iconpicker .iconpicker-items:after{clear:both}.iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #dddddd;color:inherit}.iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eeeeee}.iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff;background:#000}.iconpicker-component{cursor:pointer}.tofront{position:relative;z-index:1}.full-width{width:100vw;position:relative;margin-left:-50vw;left:50%}.c-pointer:hover{cursor:pointer}.c-move:hover{cursor:move}.z-index-1{z-index:1}@media (max-width: 991.98px){.display-3{font-size:3.5rem}}@media (max-width: 767.98px){.display-3{font-size:2rem}}.row.gap-y>.col,.row.gap-y>[class*="col-"]{padding-top:15px;padding-bottom:15px}.mt-neg5{margin-top:-5rem}.ml-neg5{margin-left:-5rem}@media (min-width: 768px){.h-md-100-v{height:100vh}.h-md-100{height:100vh}}@media (min-width: 1200px) and (max-width: 1399.98px){.h-xl-300{height:300px}.h-max-380{max-height:380px}}.btn-round{border-radius:30px !important}.btn{padding:.45rem 1.2rem;font-size:1rem;line-height:1.6;border-radius:.25rem;position:relative}.btn:hover,.btn:focus{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15);outline:0 !important}.btn-lg,.btn-group-lg>.btn{padding:.65rem 2rem;font-size:1.15rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem 1rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-link:hover,.btn-link:focus{box-shadow:none}.btn-link.btn-primary{color:#1e73be;border-color:transparent}.btn-link.btn-secondary{color:#6c757d;border-color:transparent}.btn-link.btn-success{color:#44c553;border-color:transparent}.btn-link.btn-info{color:#17a2b8;border-color:transparent}.btn-link.btn-warning{color:#ffc107;border-color:transparent}.btn-link.btn-danger{color:#dc3545;border-color:transparent}.btn-link.btn-light{color:#f8f9fa;border-color:transparent}.btn-link.btn-dark{color:#343a40;border-color:transparent}.btn-link.btn-white{color:#fff;border-color:transparent}.btn-link.btn-purple{color:#ad6edd;border-color:transparent}.btn-link.btn-salmon{color:#ff977a;border-color:transparent}.btn-link.btn-cyan{color:#35bdff;border-color:transparent}.btn-link.btn-gray{color:#ced4da;border-color:transparent}.btn-link.btn-gray-dark{color:#6c757d;border-color:transparent}.btn-link.btn-indigo{color:#502c6c;border-color:transparent}.btn-link.btn-orange{color:#fbb500;border-color:transparent}.btn-white{background-color:#fff}.input-round{border-radius:30px !important}.input-group.input-round input:first-child{border-radius:30px 0 0 30px}.input-group.input-round input:last-child{border-radius:0px 30px 30px 0px}.navbar{font-weight:400}.navbar-brand{margin-right:2rem;font-size:1.25rem}.dropdown-item{font-weight:300}.dropdown-menu{border:0;text-transform:none;box-shadow:0 10px 25px 0 rgba(0,0,0,0.3)}@media (min-width: 768px){.dropdown-menu:before{content:'';top:-8px;position:absolute;left:50px;border-top:16px solid #fff;border-left:16px solid #fff;transform:rotate(45deg);z-index:-1}}@media (min-width: 768px){.dropdown-menu.dropdown-menu-right:before{left:unset;right:50px}}.dropdown-menu.dropdown-caret-0:before{content:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.jumbotron{background-size:cover;padding:7rem 1rem}@media (min-width: 992px){.jumbotron-lg-withnav{padding-bottom:calc(10rem - 70px)}.jumbotron-lg{padding:10rem 0}.jumbotron-xl{padding:15rem 0}.jumbotron-xl{min-height:100vh}.bottom-align-text-absolute{position:absolute;bottom:30px;margin:auto;left:0;right:0}}.bg-black{background-color:#000}.overlay{position:relative}.overlay .container{position:relative}.overlay:before{content:"";display:block;height:100%;left:0;top:0;position:absolute;width:100%}.overlay-black:before{background-color:rgba(0,0,0,0.5)}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.overlay-red:before{background:linear-gradient(0deg, rgba(44,44,44,0.2), rgba(224,23,3,0.6))}.overlay-blue:before{background-color:rgba(23,29,90,0.5)}.bg-primary{fill:#1e73be !important}.bg-secondary{fill:#6c757d !important}.bg-success{fill:#44c553 !important}.bg-info{fill:#17a2b8 !important}.bg-warning{fill:#ffc107 !important}.bg-danger{fill:#dc3545 !important}.bg-light{fill:#f8f9fa !important}.bg-dark{fill:#343a40 !important}.bg-white{fill:#fff !important}.bg-purple{fill:#ad6edd !important}.bg-salmon{fill:#ff977a !important}.bg-cyan{fill:#35bdff !important}.bg-gray{fill:#ced4da !important}.bg-gray-dark{fill:#6c757d !important}.bg-indigo{fill:#502c6c !important}.bg-orange{fill:#fbb500 !important}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.alert-primary{color:#fff;background-color:#1e73be;border-color:#1e73be}.alert-primary hr{border-top-color:#1b66a8}.alert-primary .alert-link{color:#e6e6e6}.alert-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-secondary hr{border-top-color:#60686f}.alert-secondary .alert-link{color:#e6e6e6}.alert-success{color:#fff;background-color:#44c553;border-color:#44c553}.alert-success hr{border-top-color:#39b747}.alert-success .alert-link{color:#e6e6e6}.alert-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.alert-info hr{border-top-color:#148ea1}.alert-info .alert-link{color:#e6e6e6}.alert-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.alert-warning hr{border-top-color:#edb100}.alert-warning .alert-link{color:#e6e6e6}.alert-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.alert-danger hr{border-top-color:#d32535}.alert-danger .alert-link{color:#e6e6e6}.alert-light{color:#fff;background-color:#f8f9fa;border-color:#f8f9fa}.alert-light hr{border-top-color:#e9ecef}.alert-light .alert-link{color:#e6e6e6}.alert-dark{color:#fff;background-color:#343a40;border-color:#343a40}.alert-dark hr{border-top-color:#292d32}.alert-dark .alert-link{color:#e6e6e6}.alert-white{color:#fff;background-color:#fff;border-color:#fff}.alert-white hr{border-top-color:#f2f2f2}.alert-white .alert-link{color:#e6e6e6}.alert-purple{color:#fff;background-color:#ad6edd;border-color:#ad6edd}.alert-purple hr{border-top-color:#a159d8}.alert-purple .alert-link{color:#e6e6e6}.alert-salmon{color:#fff;background-color:#ff977a;border-color:#ff977a}.alert-salmon hr{border-top-color:#ff8361}.alert-salmon .alert-link{color:#e6e6e6}.alert-cyan{color:#fff;background-color:#35bdff;border-color:#35bdff}.alert-cyan hr{border-top-color:#1cb5ff}.alert-cyan .alert-link{color:#e6e6e6}.alert-gray{color:#fff;background-color:#ced4da;border-color:#ced4da}.alert-gray hr{border-top-color:#bfc7cf}.alert-gray .alert-link{color:#e6e6e6}.alert-gray-dark{color:#fff;background-color:#6c757d;border-color:#6c757d}.alert-gray-dark hr{border-top-color:#60686f}.alert-gray-dark .alert-link{color:#e6e6e6}.alert-indigo{color:#fff;background-color:#502c6c;border-color:#502c6c}.alert-indigo hr{border-top-color:#43255a}.alert-indigo .alert-link{color:#e6e6e6}.alert-orange{color:#fff;background-color:#fbb500;border-color:#fbb500}.alert-orange hr{border-top-color:#e2a300}.alert-orange .alert-link{color:#e6e6e6}ul.list-unstyled li{margin-bottom:1rem}@media (min-width: 768px){.loginarea{z-index:1111}}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}.iconbox{border:1px solid;text-align:center;display:inline-block}.iconbox.iconsmall{width:40px;height:40px;line-height:40px;font-size:1rem}.iconbox.iconmedium{width:60px;height:60px;line-height:60px;font-size:1.8rem}.iconbox.iconlarge{width:80px;height:80px;line-height:80px;font-size:2.2rem}.btn-round{border-radius:30px !important}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#e6e6e6}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#fff}.btn-facebook:not(:disabled):not(.disabled):active,.btn-facebook:not(:disabled):not(.disabled).active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#dfdfdf}.btn-facebook:not(:disabled):not(.disabled):active:focus,.btn-facebook:not(:disabled):not(.disabled).active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-twitter{color:#212529;background-color:#55acee;border-color:#fff;color:#fff}.btn-twitter:hover{color:#fff;background-color:#329beb;border-color:#e6e6e6}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#329beb;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-twitter.disabled,.btn-twitter:disabled{color:#212529;background-color:#55acee;border-color:#fff}.btn-twitter:not(:disabled):not(.disabled):active,.btn-twitter:not(:disabled):not(.disabled).active,.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#2795e9;border-color:#dfdfdf}.btn-twitter:not(:disabled):not(.disabled):active:focus,.btn-twitter:not(:disabled):not(.disabled).active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,222,223,0.5)}.btn-instagram{color:#fff;background-color:#125688;border-color:#fff;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-instagram:hover{color:#fff;background-color:#0e4166;border-color:#e6e6e6}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#0e4166;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram.disabled,.btn-instagram:disabled{color:#fff;background-color:#125688;border-color:#fff}.btn-instagram:not(:disabled):not(.disabled):active,.btn-instagram:not(:disabled):not(.disabled).active,.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#0c3a5b;border-color:#dfdfdf}.btn-instagram:not(:disabled):not(.disabled):active:focus,.btn-instagram:not(:disabled):not(.disabled).active:focus,.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.btn-linkedin{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:hover{color:#fff;background-color:#075e90;border-color:#e6e6e6}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#075e90;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#fff;background-color:#0976b4;border-color:#fff}.btn-linkedin:not(:disabled):not(.disabled):active,.btn-linkedin:not(:disabled):not(.disabled).active,.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#075683;border-color:#dfdfdf}.btn-linkedin:not(:disabled):not(.disabled):active:focus,.btn-linkedin:not(:disabled):not(.disabled).active:focus,.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:hover{color:#fff;background-color:#f72064;border-color:#e6e6e6}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#f72064;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-flickr.disabled,.btn-flickr:disabled{color:#fff;background-color:#f8457e;border-color:#fff}.btn-flickr:not(:disabled):not(.disabled):active,.btn-flickr:not(:disabled):not(.disabled).active,.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#f6145c;border-color:#dfdfdf}.btn-flickr:not(:disabled):not(.disabled):active:focus,.btn-flickr:not(:disabled):not(.disabled).active:focus,.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github{color:#fff;background-color:#333;border-color:#fff}.btn-github:hover{color:#fff;background-color:#202020;border-color:#e6e6e6}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#202020;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-github.disabled,.btn-github:disabled{color:#fff;background-color:#333;border-color:#fff}.btn-github:not(:disabled):not(.disabled):active,.btn-github:not(:disabled):not(.disabled).active,.show>.btn-github.dropdown-toggle{color:#fff;background-color:#1a1a1a;border-color:#dfdfdf}.btn-github:not(:disabled):not(.disabled):active:focus,.btn-github:not(:disabled):not(.disabled).active:focus,.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:hover{color:#fff;background-color:#cd1e19;border-color:#e6e6e6}.btn-youtube:focus,.btn-youtube.focus{color:#fff;background-color:#cd1e19;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-youtube.disabled,.btn-youtube:disabled{color:#fff;background-color:#e52d27;border-color:#fff}.btn-youtube:not(:disabled):not(.disabled):active,.btn-youtube:not(:disabled):not(.disabled).active,.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#c21d17;border-color:#dfdfdf}.btn-youtube:not(:disabled):not(.disabled):active:focus,.btn-youtube:not(:disabled):not(.disabled).active:focus,.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:hover{color:#fff;background-color:#195a77;border-color:#e6e6e6}.btn-wordpress:focus,.btn-wordpress.focus{color:#fff;background-color:#195a77;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-wordpress.disabled,.btn-wordpress:disabled{color:#fff;background-color:#207297;border-color:#fff}.btn-wordpress:not(:disabled):not(.disabled):active,.btn-wordpress:not(:disabled):not(.disabled).active,.show>.btn-wordpress.dropdown-toggle{color:#fff;background-color:#17526d;border-color:#dfdfdf}.btn-wordpress:not(:disabled):not(.disabled):active:focus,.btn-wordpress:not(:disabled):not(.disabled).active:focus,.show>.btn-wordpress.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:hover{color:#fff;background-color:#e12717;border-color:#e6e6e6}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#e12717;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-google.disabled,.btn-google:disabled{color:#fff;background-color:#ea4335;border-color:#fff}.btn-google:not(:disabled):not(.disabled):active,.btn-google:not(:disabled):not(.disabled).active,.show>.btn-google.dropdown-toggle{color:#fff;background-color:#d62516;border-color:#dfdfdf}.btn-google:not(:disabled):not(.disabled):active:focus,.btn-google:not(:disabled):not(.disabled).active:focus,.show>.btn-google.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:hover{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#4d2dbf;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#fff;background-color:#6040d2;border-color:#fff}.btn-yahoo:not(:disabled):not(.disabled):active,.btn-yahoo:not(:disabled):not(.disabled).active,.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#492bb4;border-color:#dfdfdf}.btn-yahoo:not(:disabled):not(.disabled):active:focus,.btn-yahoo:not(:disabled):not(.disabled).active:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:hover{color:#fff;background-color:#3e638d;border-color:#e6e6e6}.btn-vkontakte:focus,.btn-vkontakte.focus{color:#fff;background-color:#3e638d;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-vkontakte.disabled,.btn-vkontakte:disabled{color:#fff;background-color:#4a76a8;border-color:#fff}.btn-vkontakte:not(:disabled):not(.disabled):active,.btn-vkontakte:not(:disabled):not(.disabled).active,.show>.btn-vkontakte.dropdown-toggle{color:#fff;background-color:#3a5d85;border-color:#dfdfdf}.btn-vkontakte:not(:disabled):not(.disabled):active:focus,.btn-vkontakte:not(:disabled):not(.disabled).active:focus,.show>.btn-vkontakte.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok{color:#fff;background-color:#010101;border-color:#fff;color:#fff}.btn-tiktok:hover{color:#fff;background-color:#000;border-color:#e6e6e6}.btn-tiktok:focus,.btn-tiktok.focus{color:#fff;background-color:#000;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-tiktok.disabled,.btn-tiktok:disabled{color:#fff;background-color:#010101;border-color:#fff}.btn-tiktok:not(:disabled):not(.disabled):active,.btn-tiktok:not(:disabled):not(.disabled).active,.show>.btn-tiktok.dropdown-toggle{color:#fff;background-color:#000;border-color:#dfdfdf}.btn-tiktok:not(:disabled):not(.disabled):active:focus,.btn-tiktok:not(:disabled):not(.disabled).active:focus,.show>.btn-tiktok.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-circle{border-radius:100%;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-square{border-radius:0;height:2.5rem;width:2.5rem;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;padding:0}.btn-square.btn-sm,.btn-group-sm>.btn-square.btn{height:1.8rem;width:1.8rem;font-size:0.75rem}.btn-square.btn-lg,.btn-group-lg>.btn-square.btn{height:3.5rem;width:3.5rem;font-size:1.35rem}.btn-icon-split{padding:0;overflow:hidden;display:inline-flex;align-items:stretch;justify-content:center}.btn-icon-split .icon{background:rgba(0,0,0,0.15);display:inline-block;padding:.45rem 1.2rem}.btn-icon-split .text{display:inline-block;padding:.45rem 1.2rem}.btn-icon-split.btn-sm .icon,.btn-group-sm>.btn-icon-split.btn .icon{padding:.25rem 1rem}.btn-icon-split.btn-sm .text,.btn-group-sm>.btn-icon-split.btn .text{padding:.25rem 1rem}.btn-icon-split.btn-lg .icon,.btn-group-lg>.btn-icon-split.btn .icon{padding:.65rem 2rem}.btn-icon-split.btn-lg .text,.btn-group-lg>.btn-icon-split.btn .text{padding:.65rem 2rem}.alert a{color:inherit;text-decoration:underline}.alert a:hover{color:inherit;text-decoration:underline;opacity:0.9}@media (min-width: 576px){.row.row-cols-md-0{display:block}.row.row-cols-md-0>*{flex:0 0 100%;max-width:100%}.row.row-cols-md-0 .card{width:100%;display:inline-flex;flex-flow:row wrap}.row.row-cols-md-0 .card .embed-responsive{max-width:30%;display:inline-block}.row.row-cols-md-0 .card .embed-responsive img{border-top-right-radius:unset;object-fit:cover}.row.row-cols-md-0 .card .card-img-top{max-width:30%;height:100%;display:inline-block}.row.row-cols-md-0 .card .card-img-top .embed-responsive{max-width:none}.row.row-cols-md-0 .card .card-img-top .embed-responsive:before{padding-top:100%}.row.row-cols-md-0 .card .card-body{display:inline-block;vertical-align:top;max-width:69%}.row.row-cols-md-0 .card .card-footer{flex:1 100%}.row.row-cols-md-0 .gv-hide-0{display:none}}.row-cols-md-2 .gv-hide-2{display:none}.row-cols-md-2 .gv-hide-s-2 .gv-secondary{display:none}.row-cols-md-3 .gv-hide-2,.row-cols-md-3 .gv-hide-3{display:none}.row-cols-md-3 .gv-hide-s-2 .gv-secondary,.row-cols-md-3 .gv-hide-s-3 .gv-secondary{display:none}.row-cols-md-4 .gv-hide-2,.row-cols-md-4 .gv-hide-3,.row-cols-md-4 .gv-hide-4{display:none}.row-cols-md-4 .gv-hide-s-2 .gv-secondary,.row-cols-md-4 .gv-hide-s-3 .gv-secondary,.row-cols-md-4 .gv-hide-s-4 .gv-secondary{display:none}.row-cols-md-5 .gv-hide-2,.row-cols-md-5 .gv-hide-3,.row-cols-md-5 .gv-hide-4,.row-cols-md-5 .gv-hide-5{display:none}.row-cols-md-5 .gv-hide-s-2 .gv-secondary,.row-cols-md-5 .gv-hide-s-3 .gv-secondary,.row-cols-md-5 .gv-hide-s-4 .gv-secondary,.row-cols-md-5 .gv-hide-s-5 .gv-secondary{display:none}@media (max-width: 576px){.row .gv-hide-0,.row .gv-hide-2,.row .gv-hide-3,.row .gv-hide-4,.row .gv-hide-5{display:none}.row .gv-hide-s-2 .gv-secondary,.row .gv-hide-s-3 .gv-secondary,.row .gv-hide-s-4 .gv-secondary,.row .gv-hide-s-5 .gv-secondary{display:none}}.border-width-1{border-width:1px !important}.border-width-2{border-width:2px !important}.border-width-3{border-width:3px !important}.border-width-4{border-width:4px !important}.border-width-5{border-width:5px !important}.bg-shadow-bottom{background:linear-gradient(0deg, rgba(0,0,0,0.6012780112) 0%, rgba(255,255,255,0) 30%) !important}@-webkit-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@-moz-keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}@keyframes bsui_shimmer{0%{background-position:-400px}100%{background-position:400px}}.bg-loading{background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;display:inline-block;position:relative;-webkit-animation:bsui_shimmer 1s linear infinite forwards;-moz-animation:bsui_shimmer 1s linear infinite forwards;animation:bsui_shimmer 1s linear infinite forwards}.hover-content{display:none}.hover-content.fas{display:none}.btn:hover .hover-content,.badge:hover .hover-content,.hover-swap:hover .hover-content{display:initial}.btn:hover .hover-content-original,.badge:hover .hover-content-original,.hover-swap:hover .hover-content-original{display:none}.overflow-visible{overflow:visible}.scrollbars-ios::-webkit-scrollbar{width:5px;height:5px}.scrollbars-ios::-webkit-scrollbar-track{background:rgba(128,128,128,0.1)}.scrollbars-ios::-webkit-scrollbar-thumb{background:rgba(128,128,128,0.5);border-radius:2px}.embed-item-cover-xy{object-fit:cover;height:100%}.embed-item-cover-x{height:auto !important}.embed-item-cover-y{object-fit:contain;height:100%;width:auto;max-width:none}.embed-item-contain{object-fit:contain}.embed-has-action{transition:all .3s ease-in-out}.embed-has-action i,.embed-has-action svg.svg-inline--fa{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.3);color:#fff;font-size:1.5em;opacity:0;transition:all .3s ease-in-out}.embed-has-action img{filter:brightness(100%);transition:all .3s ease-in-out}.embed-has-action:hover img{filter:brightness(75%);transition:all .3s ease-in-out}.embed-has-action:hover i,.embed-has-action:hover svg.svg-inline--fa{opacity:0.8;transform:translate(-50%, -50%) scale(1);transition:all .3s ease-in-out}.flatpickr-month .flatpickr-current-month>*{display:inline-block}.custom-select{-webkit-appearance:none;-moz-appearance:none}.badge-facebook{color:#fff;background-color:#3b5998}a.badge-facebook:hover,a.badge-facebook:focus{color:#fff;background-color:#2d4373}a.badge-facebook:focus,a.badge-facebook.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,89,152,0.5)}.badge-twitter{color:#212529;background-color:#55acee}a.badge-twitter:hover,a.badge-twitter:focus{color:#212529;background-color:#2795e9}a.badge-twitter:focus,a.badge-twitter.focus{outline:0;box-shadow:0 0 0 .2rem rgba(85,172,238,0.5)}.badge-instagram{color:#fff;background-color:#125688}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-linkedin{color:#fff;background-color:#0976b4}a.badge-linkedin:hover,a.badge-linkedin:focus{color:#fff;background-color:#075683}a.badge-linkedin:focus,a.badge-linkedin.focus{outline:0;box-shadow:0 0 0 .2rem rgba(9,118,180,0.5)}.badge-flickr{color:#fff;background-color:#f8457e}a.badge-flickr:hover,a.badge-flickr:focus{color:#fff;background-color:#f6145c}a.badge-flickr:focus,a.badge-flickr.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,69,126,0.5)}.badge-github{color:#fff;background-color:#333}a.badge-github:hover,a.badge-github:focus{color:#fff;background-color:#1a1a1a}a.badge-github:focus,a.badge-github.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,51,51,0.5)}.badge-youtube{color:#fff;background-color:#e52d27}a.badge-youtube:hover,a.badge-youtube:focus{color:#fff;background-color:#c21d17}a.badge-youtube:focus,a.badge-youtube.focus{outline:0;box-shadow:0 0 0 .2rem rgba(229,45,39,0.5)}.badge-wordpress{color:#fff;background-color:#207297}a.badge-wordpress:hover,a.badge-wordpress:focus{color:#fff;background-color:#17526d}a.badge-wordpress:focus,a.badge-wordpress.focus{outline:0;box-shadow:0 0 0 .2rem rgba(32,114,151,0.5)}.badge-google{color:#fff;background-color:#ea4335}a.badge-google:hover,a.badge-google:focus{color:#fff;background-color:#d62516}a.badge-google:focus,a.badge-google.focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,67,53,0.5)}.badge-yahoo{color:#fff;background-color:#6040d2}a.badge-yahoo:hover,a.badge-yahoo:focus{color:#fff;background-color:#492bb4}a.badge-yahoo:focus,a.badge-yahoo.focus{outline:0;box-shadow:0 0 0 .2rem rgba(96,64,210,0.5)}.badge-vkontakte{color:#fff;background-color:#4a76a8}a.badge-vkontakte:hover,a.badge-vkontakte:focus{color:#fff;background-color:#3a5d85}a.badge-vkontakte:focus,a.badge-vkontakte.focus{outline:0;box-shadow:0 0 0 .2rem rgba(74,118,168,0.5)}.badge-tiktok{color:#fff;background-color:#010101}a.badge-tiktok:hover,a.badge-tiktok:focus{color:#fff;background-color:#000}a.badge-tiktok:focus,a.badge-tiktok.focus{outline:0;box-shadow:0 0 0 .2rem rgba(1,1,1,0.5)}.badge-instagram{color:#fff;background-color:#125688;background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}a.badge-instagram:hover,a.badge-instagram:focus{color:#fff;background-color:#0c3a5b}a.badge-instagram:focus,a.badge-instagram.focus{outline:0;box-shadow:0 0 0 .2rem rgba(18,86,136,0.5)}.badge-instagram:hover{background:radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.bg-initial{background:initial !important}.bg-inherit{background:inherit !important}.overlay-white:before{background-color:rgba(255,255,255,0.5)}.form-label-group{position:relative;margin-bottom:1rem}.form-label-group>input,.form-label-group>textarea,.form-label-group>label{padding:.45rem 1.2rem}.form-label-group>label{position:absolute;top:0;left:0;display:block;width:100%;margin-bottom:0;line-height:1.5;color:#989898;border:1px solid transparent;border-radius:.25rem;transition:all .1s ease-in-out;font-weight:normal;cursor:text;pointer-events:none}.form-label-group input::-webkit-input-placeholder,.form-label-group input:-ms-input-placeholder,.form-label-group input::-ms-input-placeholder,.form-label-group input::-moz-placeholder,.form-label-group input::placeholder,.form-label-group textarea::-webkit-input-placeholder,.form-label-group textarea:-ms-input-placeholder,.form-label-group textarea::-ms-input-placeholder,.form-label-group textarea::-moz-placeholder,.form-label-group textarea::placeholder{color:transparent}.form-label-group input:not(:placeholder-shown),.form-label-group textarea:not(:placeholder-shown){padding-top:.75rem;padding-bottom:.15rem;font-weight:400}.form-label-group input:not(:placeholder-shown) ~ label,.form-label-group textarea:not(:placeholder-shown) ~ label{padding-top:.15rem;padding-bottom:.15rem;font-size:12px;color:#777}.ab-left,.ab-top-left{position:absolute;z-index:1;top:2px;left:2px;margin:0}.ab-left-angle,.ab-top-left-angle{position:absolute;z-index:1;top:13px;left:-15px;margin:0;transform:rotate(-45deg);transform-origin:bottom;width:100px;text-align:center}.ab-left-angle .badge,.ab-top-left-angle .badge{display:block}.ab-right,.ab-top-right{position:absolute;z-index:1;top:2px;right:2px;margin:0}.ab-right-angle,.ab-top-right-angle{position:absolute;z-index:1;top:13px;right:-15px;margin:0;transform:rotate(45deg);transform-origin:bottom;width:100px;text-align:center}.ab-right-angle .badge,.ab-top-right-angle .badge{display:block}.ab-bottom-left{position:absolute;z-index:1;bottom:6px;left:2px;margin:0}.ab-bottom-left-angle{position:absolute;z-index:1;bottom:13px;left:-15px;margin:0;transform:rotate(45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-left-angle .badge{display:block}.ab-bottom-right{position:absolute;z-index:1;bottom:6px;right:2px;margin:0}.ab-bottom-right-angle{position:absolute;z-index:1;bottom:13px;right:-15px;margin:0;transform:rotate(-45deg);transform-origin:top;width:100px;text-align:center}.ab-bottom-right-angle .badge{display:block}.sticky-scroll{position:-webkit-sticky;position:sticky;top:0}.clear-both{clear:both}.navbar-multi-sub-menus .dropdown-toggle.active-dropdown::after{transform:rotate(-180deg)}.custom-switch.custom-switch-sm .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-sm .custom-control-label::before{height:1rem;width:calc(1rem + 0.75rem);border-radius:2rem}.custom-switch.custom-switch-sm .custom-control-label::after{width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:calc(1rem - (1rem / 2))}.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1rem - 0.25rem))}.custom-switch.custom-switch-md .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-md .custom-control-label::before{height:1.3rem;width:calc(1.6rem + 0.75rem);border-radius:2.6rem}.custom-switch.custom-switch-md .custom-control-label::after{width:calc(1.3rem - 4px);height:calc(1.3rem - 4px);border-radius:calc(1.6rem - (1.3rem / 2))}.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.3rem - 0.25rem))}.custom-switch.custom-switch-lg .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-lg .custom-control-label::before{height:1.5rem;width:calc(2rem + 0.75rem);border-radius:3rem}.custom-switch.custom-switch-lg .custom-control-label::after{width:calc(1.5rem - 4px);height:calc(1.5rem - 4px);border-radius:calc(2rem - (1.5rem / 2))}.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(1.5rem - 0.25rem))}.custom-switch.custom-switch-xl .custom-control-label{padding-left:1rem;line-height:1.8rem}.custom-switch.custom-switch-xl .custom-control-label::before{height:2rem;width:calc(3rem + 0.75rem);border-radius:4rem}.custom-switch.custom-switch-xl .custom-control-label::after{width:calc(2rem - 4px);height:calc(2rem - 4px);border-radius:calc(3rem - (2rem / 2))}.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after{transform:translateX(calc(2rem - 0.25rem))}.hover-zoom{transition:transform .2s}.hover-zoom:hover{transform:scale(1.2)}.hover-shadow{transition:all ease 0.3s}.hover-shadow:hover{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.hover-move-up{top:0;position:relative;transition:all ease 0.3s}.hover-move-up:hover{top:-10px !important}.hover-move-down{bottom:0;position:relative;transition:all ease 0.3s}.hover-move-down:hover{bottom:-10px !important}.hover-move-left{left:0;position:relative;transition:all ease 0.3s}.hover-move-left:hover{left:-10px !important}.hover-move-right{right:0;position:relative;transition:all ease 0.3s}.hover-move-right:hover{right:-10px !important}.input-group-inside input:not(:placeholder-shown)+div.input-group-append .aui-clear-input{display:block !important}figure.wp-block-gallery{display:flex}body.admin-bar .fixed-top{margin-top:32px}@media (max-width: 782px){body.admin-bar .fixed-top{margin-top:46px}}@media (max-width: 600px){html:not([data-scroll='0']) body.admin-bar .fixed-top{margin-top:0;transition:all 0.2s ease}}.bg-transparent-until-scroll{transition:all 0.2s ease}html[data-scroll='0'] body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body:not(.block-editor-iframe__body) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}html[data-scroll='0'] body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open),html:not([data-scroll]) body.block-editor-iframe__body .wp-block-template-part:not(.has-child-selected) .bg-transparent-until-scroll:not(.nav-menu-open){background:transparent !important;box-shadow:none !important}.navbar.bg-transparent.nav-menu-open.navbar-dark{background:#343a40 !important}.navbar.bg-transparent.nav-menu-open.navbar-light{background:#f8f9fa !important}.editor-styles-wrapper .tab-pane.is-selected,.editor-styles-wrapper .tab-pane.has-child-selected{display:block !important;opacity:1 !important}.editor-styles-wrapper .dropdown-menu.is-selected,.editor-styles-wrapper .dropdown-menu.has-child-selected{display:block}body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block}.geodir-add-files .moxie-shim{position:initial !important;background:transparent}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-selection--single{height:calc(1.6em + .9rem + 2px) !important}.select2-selection--single .select2-selection__placeholder{color:#757575;line-height:calc(1.6em + .9rem)}.select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-selection--single .select2-selection__rendered{line-height:calc(1.6em + .9rem)}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-selection--multiple{min-height:calc(1.6em + .9rem + 2px) !important}.select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0;padding-right:5px;cursor:pointer;float:left;margin-top:0.3em;margin-right:5px}.select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:bold;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container *:focus{outline:0}.input-group .select2-container{flex-grow:1}.input-group-prepend ~ .select2-container .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;width:100%}@media (prefers-reduced-motion: reduce){.select2-container .select2-selection{transition:none}}.select2-container.select2-container--focus .select2-selection{border-color:#73b1e9;box-shadow:0 0 0 .2rem rgba(30,115,190,0.25)}.select2-container.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container.select2-container--disabled .select2-selection,.select2-container.select2-container--disabled.select2-container--focus .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container.select2-container--disabled .select2-search__field,.select2-container.select2-container--disabled.select2-container--focus .select2-search__field{background-color:transparent}select.is-invalid ~ .select2-container .select2-selection,form.was-validated select:invalid ~ .select2-container .select2-selection{border-color:#dc3545}select.is-valid ~ .select2-container .select2-selection,form.was-validated select:valid ~ .select2-container .select2-selection{border-color:#44c553}.select2-container .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container .select2-results__option--highlighted,.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#1e73be;color:#f8f9fa}.select2-container .select2-results__option[role=group]{padding:0}.select2-container .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:0.3em;margin-top:0.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:0.3em}.select2-container .select2-selection__clear:hover{background-color:#343a40} diff --git a/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.js b/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.js index 7a163f7..d3ac4a9 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.js +++ b/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.js @@ -677,129 +677,129 @@ return this.popover.pos(a.extend({}, d, b)); } switch (b) { - case "inline": + case "inline": { d = false; } - break; + break; - case "topLeftCorner": + case "topLeftCorner": { d.my = "right bottom"; d.at = "left top"; } - break; + break; - case "topLeft": + case "topLeft": { d.my = "left bottom"; d.at = "left top"; } - break; + break; - case "top": + case "top": { d.my = "center bottom"; d.at = "center top"; } - break; + break; - case "topRight": + case "topRight": { d.my = "right bottom"; d.at = "right top"; } - break; + break; - case "topRightCorner": + case "topRightCorner": { d.my = "left bottom"; d.at = "right top"; } - break; + break; - case "rightTop": + case "rightTop": { d.my = "left bottom"; d.at = "right center"; } - break; + break; - case "right": + case "right": { d.my = "left center"; d.at = "right center"; } - break; + break; - case "rightBottom": + case "rightBottom": { d.my = "left top"; d.at = "right center"; } - break; + break; - case "bottomRightCorner": + case "bottomRightCorner": { d.my = "left top"; d.at = "right bottom"; } - break; + break; - case "bottomRight": + case "bottomRight": { d.my = "right top"; d.at = "right bottom"; } - break; + break; - case "bottom": + case "bottom": { d.my = "center top"; d.at = "center bottom"; } - break; + break; - case "bottomLeft": + case "bottomLeft": { d.my = "left top"; d.at = "left bottom"; } - break; + break; - case "bottomLeftCorner": + case "bottomLeftCorner": { d.my = "right top"; d.at = "left bottom"; } - break; + break; - case "leftBottom": + case "leftBottom": { d.my = "right top"; d.at = "left center"; } - break; + break; - case "left": + case "left": { d.my = "right center"; d.at = "left center"; } - break; + break; - case "leftTop": + case "leftTop": { d.my = "right bottom"; d.at = "left center"; } - break; + break; - default: + default: { return false; } - break; + break; } this.popover.css({ display: this.options.placement === "inline" ? "" : "block" @@ -1069,2844 +1069,7 @@ }); }; c.defaultOptions = a.extend(c.defaultOptions, { - icons: [ { - title: "fab fa-500px", - searchTerms: [] - }, { - title: "fab fa-accessible-icon", - searchTerms: [ "accessibility", "wheelchair", "handicap", "person", "wheelchair-alt" ] - }, { - title: "fab fa-accusoft", - searchTerms: [] - }, { - title: "fas fa-address-book", - searchTerms: [] - }, { - title: "far fa-address-book", - searchTerms: [] - }, { - title: "fas fa-address-card", - searchTerms: [] - }, { - title: "far fa-address-card", - searchTerms: [] - }, { - title: "fas fa-adjust", - searchTerms: [ "contrast" ] - }, { - title: "fab fa-adn", - searchTerms: [] - }, { - title: "fab fa-adversal", - searchTerms: [] - }, { - title: "fab fa-affiliatetheme", - searchTerms: [] - }, { - title: "fab fa-algolia", - searchTerms: [] - }, { - title: "fas fa-align-center", - searchTerms: [ "middle", "text" ] - }, { - title: "fas fa-align-justify", - searchTerms: [ "text" ] - }, { - title: "fas fa-align-left", - searchTerms: [ "text" ] - }, { - title: "fas fa-align-right", - searchTerms: [ "text" ] - }, { - title: "fab fa-amazon", - searchTerms: [] - }, { - title: "fab fa-amazon-pay", - searchTerms: [] - }, { - title: "fas fa-ambulance", - searchTerms: [ "vehicle", "support", "help" ] - }, { - title: "fas fa-american-sign-language-interpreting", - searchTerms: [] - }, { - title: "fab fa-amilia", - searchTerms: [] - }, { - title: "fas fa-anchor", - searchTerms: [ "link" ] - }, { - title: "fab fa-android", - searchTerms: [ "robot" ] - }, { - title: "fab fa-angellist", - searchTerms: [] - }, { - title: "fas fa-angle-double-down", - searchTerms: [ "arrows" ] - }, { - title: "fas fa-angle-double-left", - searchTerms: [ "laquo", "quote", "previous", "back", "arrows" ] - }, { - title: "fas fa-angle-double-right", - searchTerms: [ "raquo", "quote", "next", "forward", "arrows" ] - }, { - title: "fas fa-angle-double-up", - searchTerms: [ "arrows" ] - }, { - title: "fas fa-angle-down", - searchTerms: [ "arrow" ] - }, { - title: "fas fa-angle-left", - searchTerms: [ "previous", "back", "arrow" ] - }, { - title: "fas fa-angle-right", - searchTerms: [ "next", "forward", "arrow" ] - }, { - title: "fas fa-angle-up", - searchTerms: [ "arrow" ] - }, { - title: "fab fa-angrycreative", - searchTerms: [] - }, { - title: "fab fa-angular", - searchTerms: [] - }, { - title: "fab fa-app-store", - searchTerms: [] - }, { - title: "fab fa-app-store-ios", - searchTerms: [] - }, { - title: "fab fa-apper", - searchTerms: [] - }, { - title: "fab fa-apple", - searchTerms: [ "osx", "food" ] - }, { - title: "fab fa-apple-pay", - searchTerms: [] - }, { - title: "fas fa-archive", - searchTerms: [ "box", "storage", "package" ] - }, { - title: "fas fa-arrow-alt-circle-down", - searchTerms: [ "download", "arrow-circle-o-down" ] - }, { - title: "far fa-arrow-alt-circle-down", - searchTerms: [ "download", "arrow-circle-o-down" ] - }, { - title: "fas fa-arrow-alt-circle-left", - searchTerms: [ "previous", "back", "arrow-circle-o-left" ] - }, { - title: "far fa-arrow-alt-circle-left", - searchTerms: [ "previous", "back", "arrow-circle-o-left" ] - }, { - title: "fas fa-arrow-alt-circle-right", - searchTerms: [ "next", "forward", "arrow-circle-o-right" ] - }, { - title: "far fa-arrow-alt-circle-right", - searchTerms: [ "next", "forward", "arrow-circle-o-right" ] - }, { - title: "fas fa-arrow-alt-circle-up", - searchTerms: [ "arrow-circle-o-up" ] - }, { - title: "far fa-arrow-alt-circle-up", - searchTerms: [ "arrow-circle-o-up" ] - }, { - title: "fas fa-arrow-circle-down", - searchTerms: [ "download" ] - }, { - title: "fas fa-arrow-circle-left", - searchTerms: [ "previous", "back" ] - }, { - title: "fas fa-arrow-circle-right", - searchTerms: [ "next", "forward" ] - }, { - title: "fas fa-arrow-circle-up", - searchTerms: [] - }, { - title: "fas fa-arrow-down", - searchTerms: [ "download" ] - }, { - title: "fas fa-arrow-left", - searchTerms: [ "previous", "back" ] - }, { - title: "fas fa-arrow-right", - searchTerms: [ "next", "forward" ] - }, { - title: "fas fa-arrow-up", - searchTerms: [] - }, { - title: "fas fa-arrows-alt", - searchTerms: [ "expand", "enlarge", "fullscreen", "bigger", "move", "reorder", "resize", "arrow", "arrows" ] - }, { - title: "fas fa-arrows-alt-h", - searchTerms: [ "resize", "arrows-h" ] - }, { - title: "fas fa-arrows-alt-v", - searchTerms: [ "resize", "arrows-v" ] - }, { - title: "fas fa-assistive-listening-systems", - searchTerms: [] - }, { - title: "fas fa-asterisk", - searchTerms: [ "details" ] - }, { - title: "fab fa-asymmetrik", - searchTerms: [] - }, { - title: "fas fa-at", - searchTerms: [ "email", "e-mail" ] - }, { - title: "fab fa-audible", - searchTerms: [] - }, { - title: "fas fa-audio-description", - searchTerms: [] - }, { - title: "fab fa-autoprefixer", - searchTerms: [] - }, { - title: "fab fa-avianex", - searchTerms: [] - }, { - title: "fab fa-aviato", - searchTerms: [] - }, { - title: "fab fa-aws", - searchTerms: [] - }, { - title: "fas fa-backward", - searchTerms: [ "rewind", "previous" ] - }, { - title: "fas fa-balance-scale", - searchTerms: [] - }, { - title: "fas fa-ban", - searchTerms: [ "delete", "remove", "trash", "hide", "block", "stop", "abort", "cancel", "ban", "prohibit" ] - }, { - title: "fas fa-band-aid", - searchTerms: [ "bandage", "ouch", "boo boo" ] - }, { - title: "fab fa-bandcamp", - searchTerms: [] - }, { - title: "fas fa-barcode", - searchTerms: [ "scan" ] - }, { - title: "fas fa-bars", - searchTerms: [ "menu", "drag", "reorder", "settings", "list", "ul", "ol", "checklist", "todo", "list", "hamburger" ] - }, { - title: "fas fa-baseball-ball", - searchTerms: [] - }, { - title: "fas fa-basketball-ball", - searchTerms: [] - }, { - title: "fas fa-bath", - searchTerms: [] - }, { - title: "fas fa-battery-empty", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-full", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-half", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-quarter", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-three-quarters", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-bed", - searchTerms: [ "travel" ] - }, { - title: "fas fa-beer", - searchTerms: [ "alcohol", "stein", "drink", "mug", "bar", "liquor" ] - }, { - title: "fab fa-behance", - searchTerms: [] - }, { - title: "fab fa-behance-square", - searchTerms: [] - }, { - title: "fas fa-bell", - searchTerms: [ "alert", "reminder", "notification" ] - }, { - title: "far fa-bell", - searchTerms: [ "alert", "reminder", "notification" ] - }, { - title: "fas fa-bell-slash", - searchTerms: [] - }, { - title: "far fa-bell-slash", - searchTerms: [] - }, { - title: "fas fa-bicycle", - searchTerms: [ "vehicle", "bike", "gears" ] - }, { - title: "fab fa-bimobject", - searchTerms: [] - }, { - title: "fas fa-binoculars", - searchTerms: [] - }, { - title: "fas fa-birthday-cake", - searchTerms: [] - }, { - title: "fab fa-bitbucket", - searchTerms: [ "git", "bitbucket-square" ] - }, { - title: "fab fa-bitcoin", - searchTerms: [] - }, { - title: "fab fa-bity", - searchTerms: [] - }, { - title: "fab fa-black-tie", - searchTerms: [] - }, { - title: "fab fa-blackberry", - searchTerms: [] - }, { - title: "fas fa-blind", - searchTerms: [] - }, { - title: "fab fa-blogger", - searchTerms: [] - }, { - title: "fab fa-blogger-b", - searchTerms: [] - }, { - title: "fab fa-bluetooth", - searchTerms: [] - }, { - title: "fab fa-bluetooth-b", - searchTerms: [] - }, { - title: "fas fa-bold", - searchTerms: [] - }, { - title: "fas fa-bolt", - searchTerms: [ "lightning", "weather" ] - }, { - title: "fas fa-bomb", - searchTerms: [] - }, { - title: "fas fa-book", - searchTerms: [ "read", "documentation" ] - }, { - title: "fas fa-bookmark", - searchTerms: [ "save" ] - }, { - title: "far fa-bookmark", - searchTerms: [ "save" ] - }, { - title: "fas fa-bowling-ball", - searchTerms: [] - }, { - title: "fas fa-box", - searchTerms: [] - }, { - title: "fas fa-boxes", - searchTerms: [] - }, { - title: "fas fa-braille", - searchTerms: [] - }, { - title: "fas fa-briefcase", - searchTerms: [ "work", "business", "office", "luggage", "bag" ] - }, { - title: "fab fa-btc", - searchTerms: [] - }, { - title: "fas fa-bug", - searchTerms: [ "report", "insect" ] - }, { - title: "fas fa-building", - searchTerms: [ "work", "business", "apartment", "office", "company" ] - }, { - title: "far fa-building", - searchTerms: [ "work", "business", "apartment", "office", "company" ] - }, { - title: "fas fa-bullhorn", - searchTerms: [ "announcement", "share", "broadcast", "louder", "megaphone" ] - }, { - title: "fas fa-bullseye", - searchTerms: [ "target" ] - }, { - title: "fab fa-buromobelexperte", - searchTerms: [] - }, { - title: "fas fa-bus", - searchTerms: [ "vehicle" ] - }, { - title: "fab fa-buysellads", - searchTerms: [] - }, { - title: "fas fa-calculator", - searchTerms: [] - }, { - title: "fas fa-calendar", - searchTerms: [ "date", "time", "when", "event", "calendar-o" ] - }, { - title: "far fa-calendar", - searchTerms: [ "date", "time", "when", "event", "calendar-o" ] - }, { - title: "fas fa-calendar-alt", - searchTerms: [ "date", "time", "when", "event", "calendar" ] - }, { - title: "far fa-calendar-alt", - searchTerms: [ "date", "time", "when", "event", "calendar" ] - }, { - title: "fas fa-calendar-check", - searchTerms: [ "ok" ] - }, { - title: "far fa-calendar-check", - searchTerms: [ "ok" ] - }, { - title: "fas fa-calendar-minus", - searchTerms: [] - }, { - title: "far fa-calendar-minus", - searchTerms: [] - }, { - title: "fas fa-calendar-plus", - searchTerms: [] - }, { - title: "far fa-calendar-plus", - searchTerms: [] - }, { - title: "fas fa-calendar-times", - searchTerms: [] - }, { - title: "far fa-calendar-times", - searchTerms: [] - }, { - title: "fas fa-camera", - searchTerms: [ "photo", "picture", "record" ] - }, { - title: "fas fa-camera-retro", - searchTerms: [ "photo", "picture", "record" ] - }, { - title: "fas fa-car", - searchTerms: [ "vehicle" ] - }, { - title: "fas fa-caret-down", - searchTerms: [ "more", "dropdown", "menu", "triangle down", "arrow" ] - }, { - title: "fas fa-caret-left", - searchTerms: [ "previous", "back", "triangle left", "arrow" ] - }, { - title: "fas fa-caret-right", - searchTerms: [ "next", "forward", "triangle right", "arrow" ] - }, { - title: "fas fa-caret-square-down", - searchTerms: [ "more", "dropdown", "menu", "caret-square-o-down" ] - }, { - title: "far fa-caret-square-down", - searchTerms: [ "more", "dropdown", "menu", "caret-square-o-down" ] - }, { - title: "fas fa-caret-square-left", - searchTerms: [ "previous", "back", "caret-square-o-left" ] - }, { - title: "far fa-caret-square-left", - searchTerms: [ "previous", "back", "caret-square-o-left" ] - }, { - title: "fas fa-caret-square-right", - searchTerms: [ "next", "forward", "caret-square-o-right" ] - }, { - title: "far fa-caret-square-right", - searchTerms: [ "next", "forward", "caret-square-o-right" ] - }, { - title: "fas fa-caret-square-up", - searchTerms: [ "caret-square-o-up" ] - }, { - title: "far fa-caret-square-up", - searchTerms: [ "caret-square-o-up" ] - }, { - title: "fas fa-caret-up", - searchTerms: [ "triangle up", "arrow" ] - }, { - title: "fas fa-cart-arrow-down", - searchTerms: [ "shopping" ] - }, { - title: "fas fa-cart-plus", - searchTerms: [ "add", "shopping" ] - }, { - title: "fab fa-cc-amazon-pay", - searchTerms: [] - }, { - title: "fab fa-cc-amex", - searchTerms: [ "amex" ] - }, { - title: "fab fa-cc-apple-pay", - searchTerms: [] - }, { - title: "fab fa-cc-diners-club", - searchTerms: [] - }, { - title: "fab fa-cc-discover", - searchTerms: [] - }, { - title: "fab fa-cc-jcb", - searchTerms: [] - }, { - title: "fab fa-cc-mastercard", - searchTerms: [] - }, { - title: "fab fa-cc-paypal", - searchTerms: [] - }, { - title: "fab fa-cc-stripe", - searchTerms: [] - }, { - title: "fab fa-cc-visa", - searchTerms: [] - }, { - title: "fab fa-centercode", - searchTerms: [] - }, { - title: "fas fa-certificate", - searchTerms: [ "badge", "star" ] - }, { - title: "fas fa-chart-area", - searchTerms: [ "graph", "analytics", "area-chart" ] - }, { - title: "fas fa-chart-bar", - searchTerms: [ "graph", "analytics", "bar-chart" ] - }, { - title: "far fa-chart-bar", - searchTerms: [ "graph", "analytics", "bar-chart" ] - }, { - title: "fas fa-chart-line", - searchTerms: [ "graph", "analytics", "line-chart", "dashboard" ] - }, { - title: "fas fa-chart-pie", - searchTerms: [ "graph", "analytics", "pie-chart" ] - }, { - title: "fas fa-check", - searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "tick", "ok", "select" ] - }, { - title: "fas fa-check-circle", - searchTerms: [ "todo", "done", "agree", "accept", "confirm", "ok", "select" ] - }, { - title: "far fa-check-circle", - searchTerms: [ "todo", "done", "agree", "accept", "confirm", "ok", "select" ] - }, { - title: "fas fa-check-square", - searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select" ] - }, { - title: "far fa-check-square", - searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select" ] - }, { - title: "fas fa-chess", - searchTerms: [] - }, { - title: "fas fa-chess-bishop", - searchTerms: [] - }, { - title: "fas fa-chess-board", - searchTerms: [] - }, { - title: "fas fa-chess-king", - searchTerms: [] - }, { - title: "fas fa-chess-knight", - searchTerms: [] - }, { - title: "fas fa-chess-pawn", - searchTerms: [] - }, { - title: "fas fa-chess-queen", - searchTerms: [] - }, { - title: "fas fa-chess-rook", - searchTerms: [] - }, { - title: "fas fa-chevron-circle-down", - searchTerms: [ "more", "dropdown", "menu", "arrow" ] - }, { - title: "fas fa-chevron-circle-left", - searchTerms: [ "previous", "back", "arrow" ] - }, { - title: "fas fa-chevron-circle-right", - searchTerms: [ "next", "forward", "arrow" ] - }, { - title: "fas fa-chevron-circle-up", - searchTerms: [ "arrow" ] - }, { - title: "fas fa-chevron-down", - searchTerms: [] - }, { - title: "fas fa-chevron-left", - searchTerms: [ "bracket", "previous", "back" ] - }, { - title: "fas fa-chevron-right", - searchTerms: [ "bracket", "next", "forward" ] - }, { - title: "fas fa-chevron-up", - searchTerms: [] - }, { - title: "fas fa-child", - searchTerms: [] - }, { - title: "fab fa-chrome", - searchTerms: [ "browser" ] - }, { - title: "fas fa-circle", - searchTerms: [ "dot", "notification", "circle-thin" ] - }, { - title: "far fa-circle", - searchTerms: [ "dot", "notification", "circle-thin" ] - }, { - title: "fas fa-circle-notch", - searchTerms: [ "circle-o-notch" ] - }, { - title: "fas fa-clipboard", - searchTerms: [ "paste" ] - }, { - title: "far fa-clipboard", - searchTerms: [ "paste" ] - }, { - title: "fas fa-clipboard-check", - searchTerms: [] - }, { - title: "fas fa-clipboard-list", - searchTerms: [] - }, { - title: "fas fa-clock", - searchTerms: [ "watch", "timer", "late", "timestamp", "date" ] - }, { - title: "far fa-clock", - searchTerms: [ "watch", "timer", "late", "timestamp", "date" ] - }, { - title: "fas fa-clone", - searchTerms: [ "copy" ] - }, { - title: "far fa-clone", - searchTerms: [ "copy" ] - }, { - title: "fas fa-closed-captioning", - searchTerms: [ "cc" ] - }, { - title: "far fa-closed-captioning", - searchTerms: [ "cc" ] - }, { - title: "fas fa-cloud", - searchTerms: [ "save" ] - }, { - title: "fas fa-cloud-download-alt", - searchTerms: [ "cloud-download" ] - }, { - title: "fas fa-cloud-upload-alt", - searchTerms: [ "cloud-upload" ] - }, { - title: "fab fa-cloudscale", - searchTerms: [] - }, { - title: "fab fa-cloudsmith", - searchTerms: [] - }, { - title: "fab fa-cloudversify", - searchTerms: [] - }, { - title: "fas fa-code", - searchTerms: [ "html", "brackets" ] - }, { - title: "fas fa-code-branch", - searchTerms: [ "git", "fork", "vcs", "svn", "github", "rebase", "version", "branch", "code-fork" ] - }, { - title: "fab fa-codepen", - searchTerms: [] - }, { - title: "fab fa-codiepie", - searchTerms: [] - }, { - title: "fas fa-coffee", - searchTerms: [ "morning", "mug", "breakfast", "tea", "drink", "cafe" ] - }, { - title: "fas fa-cog", - searchTerms: [ "settings" ] - }, { - title: "fas fa-cogs", - searchTerms: [ "settings", "gears" ] - }, { - title: "fas fa-columns", - searchTerms: [ "split", "panes", "dashboard" ] - }, { - title: "fas fa-comment", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ] - }, { - title: "far fa-comment", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ] - }, { - title: "fas fa-comment-alt", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting" ] - }, { - title: "far fa-comment-alt", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting" ] - }, { - title: "fas fa-comments", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ] - }, { - title: "far fa-comments", - searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ] - }, { - title: "fas fa-compass", - searchTerms: [ "safari", "directory", "menu", "location" ] - }, { - title: "far fa-compass", - searchTerms: [ "safari", "directory", "menu", "location" ] - }, { - title: "fas fa-compress", - searchTerms: [ "collapse", "combine", "contract", "merge", "smaller" ] - }, { - title: "fab fa-connectdevelop", - searchTerms: [] - }, { - title: "fab fa-contao", - searchTerms: [] - }, { - title: "fas fa-copy", - searchTerms: [ "duplicate", "clone", "file", "files-o" ] - }, { - title: "far fa-copy", - searchTerms: [ "duplicate", "clone", "file", "files-o" ] - }, { - title: "fas fa-copyright", - searchTerms: [] - }, { - title: "far fa-copyright", - searchTerms: [] - }, { - title: "fab fa-cpanel", - searchTerms: [] - }, { - title: "fab fa-creative-commons", - searchTerms: [] - }, { - title: "fas fa-credit-card", - searchTerms: [ "money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt" ] - }, { - title: "far fa-credit-card", - searchTerms: [ "money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt" ] - }, { - title: "fas fa-crop", - searchTerms: [ "design" ] - }, { - title: "fas fa-crosshairs", - searchTerms: [ "picker", "gpd" ] - }, { - title: "fab fa-css3", - searchTerms: [ "code" ] - }, { - title: "fab fa-css3-alt", - searchTerms: [] - }, { - title: "fas fa-cube", - searchTerms: [ "package" ] - }, { - title: "fas fa-cubes", - searchTerms: [ "packages" ] - }, { - title: "fas fa-cut", - searchTerms: [ "scissors", "scissors" ] - }, { - title: "fab fa-cuttlefish", - searchTerms: [] - }, { - title: "fab fa-d-and-d", - searchTerms: [] - }, { - title: "fab fa-dashcube", - searchTerms: [] - }, { - title: "fas fa-database", - searchTerms: [] - }, { - title: "fas fa-deaf", - searchTerms: [] - }, { - title: "fab fa-delicious", - searchTerms: [] - }, { - title: "fab fa-deploydog", - searchTerms: [] - }, { - title: "fab fa-deskpro", - searchTerms: [] - }, { - title: "fas fa-desktop", - searchTerms: [ "monitor", "screen", "desktop", "computer", "demo", "device", "pc" ] - }, { - title: "fab fa-deviantart", - searchTerms: [] - }, { - title: "fab fa-digg", - searchTerms: [] - }, { - title: "fab fa-digital-ocean", - searchTerms: [] - }, { - title: "fab fa-discord", - searchTerms: [] - }, { - title: "fab fa-discourse", - searchTerms: [] - }, { - title: "fas fa-dna", - searchTerms: [ "double helix", "helix" ] - }, { - title: "fab fa-dochub", - searchTerms: [] - }, { - title: "fab fa-docker", - searchTerms: [] - }, { - title: "fas fa-dollar-sign", - searchTerms: [ "usd", "price" ] - }, { - title: "fas fa-dolly", - searchTerms: [] - }, { - title: "fas fa-dolly-flatbed", - searchTerms: [] - }, { - title: "fas fa-dot-circle", - searchTerms: [ "target", "bullseye", "notification" ] - }, { - title: "far fa-dot-circle", - searchTerms: [ "target", "bullseye", "notification" ] - }, { - title: "fas fa-download", - searchTerms: [ "import" ] - }, { - title: "fab fa-draft2digital", - searchTerms: [] - }, { - title: "fab fa-dribbble", - searchTerms: [] - }, { - title: "fab fa-dribbble-square", - searchTerms: [] - }, { - title: "fab fa-dropbox", - searchTerms: [] - }, { - title: "fab fa-drupal", - searchTerms: [] - }, { - title: "fab fa-dyalog", - searchTerms: [] - }, { - title: "fab fa-earlybirds", - searchTerms: [] - }, { - title: "fab fa-edge", - searchTerms: [ "browser", "ie" ] - }, { - title: "fas fa-edit", - searchTerms: [ "write", "edit", "update", "pencil", "pen" ] - }, { - title: "far fa-edit", - searchTerms: [ "write", "edit", "update", "pencil", "pen" ] - }, { - title: "fas fa-eject", - searchTerms: [] - }, { - title: "fab fa-elementor", - searchTerms: [] - }, { - title: "fas fa-ellipsis-h", - searchTerms: [ "dots" ] - }, { - title: "fas fa-ellipsis-v", - searchTerms: [ "dots" ] - }, { - title: "fab fa-ember", - searchTerms: [] - }, { - title: "fab fa-empire", - searchTerms: [] - }, { - title: "fas fa-envelope", - searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ] - }, { - title: "far fa-envelope", - searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ] - }, { - title: "fas fa-envelope-open", - searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ] - }, { - title: "far fa-envelope-open", - searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ] - }, { - title: "fas fa-envelope-square", - searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ] - }, { - title: "fab fa-envira", - searchTerms: [ "leaf" ] - }, { - title: "fas fa-eraser", - searchTerms: [ "remove", "delete" ] - }, { - title: "fab fa-erlang", - searchTerms: [] - }, { - title: "fab fa-ethereum", - searchTerms: [] - }, { - title: "fab fa-etsy", - searchTerms: [] - }, { - title: "fas fa-euro-sign", - searchTerms: [ "eur", "eur" ] - }, { - title: "fas fa-exchange-alt", - searchTerms: [ "transfer", "arrows", "arrow", "exchange", "swap" ] - }, { - title: "fas fa-exclamation", - searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ] - }, { - title: "fas fa-exclamation-circle", - searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ] - }, { - title: "fas fa-exclamation-triangle", - searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ] - }, { - title: "fas fa-expand", - searchTerms: [ "enlarge", "bigger", "resize" ] - }, { - title: "fas fa-expand-arrows-alt", - searchTerms: [ "enlarge", "bigger", "resize", "move", "arrows-alt" ] - }, { - title: "fab fa-expeditedssl", - searchTerms: [] - }, { - title: "fas fa-external-link-alt", - searchTerms: [ "open", "new", "external-link" ] - }, { - title: "fas fa-external-link-square-alt", - searchTerms: [ "open", "new", "external-link-square" ] - }, { - title: "fas fa-eye", - searchTerms: [ "show", "visible", "views" ] - }, { - title: "fas fa-eye-dropper", - searchTerms: [ "eyedropper" ] - }, { - title: "fas fa-eye-slash", - searchTerms: [ "toggle", "show", "hide", "visible", "visiblity", "views" ] - }, { - title: "far fa-eye-slash", - searchTerms: [ "toggle", "show", "hide", "visible", "visiblity", "views" ] - }, { - title: "fab fa-facebook", - searchTerms: [ "social network", "facebook-official" ] - }, { - title: "fab fa-facebook-f", - searchTerms: [ "facebook" ] - }, { - title: "fab fa-facebook-messenger", - searchTerms: [] - }, { - title: "fab fa-facebook-square", - searchTerms: [ "social network" ] - }, { - title: "fas fa-fast-backward", - searchTerms: [ "rewind", "previous", "beginning", "start", "first" ] - }, { - title: "fas fa-fast-forward", - searchTerms: [ "next", "end", "last" ] - }, { - title: "fas fa-fax", - searchTerms: [] - }, { - title: "fas fa-female", - searchTerms: [ "woman", "human", "user", "person", "profile" ] - }, { - title: "fas fa-fighter-jet", - searchTerms: [ "fly", "plane", "airplane", "quick", "fast", "travel" ] - }, { - title: "fas fa-file", - searchTerms: [ "new", "page", "pdf", "document" ] - }, { - title: "far fa-file", - searchTerms: [ "new", "page", "pdf", "document" ] - }, { - title: "fas fa-file-alt", - searchTerms: [ "new", "page", "pdf", "document", "file-text" ] - }, { - title: "far fa-file-alt", - searchTerms: [ "new", "page", "pdf", "document", "file-text" ] - }, { - title: "fas fa-file-archive", - searchTerms: [] - }, { - title: "far fa-file-archive", - searchTerms: [] - }, { - title: "fas fa-file-audio", - searchTerms: [] - }, { - title: "far fa-file-audio", - searchTerms: [] - }, { - title: "fas fa-file-code", - searchTerms: [] - }, { - title: "far fa-file-code", - searchTerms: [] - }, { - title: "fas fa-file-excel", - searchTerms: [] - }, { - title: "far fa-file-excel", - searchTerms: [] - }, { - title: "fas fa-file-image", - searchTerms: [] - }, { - title: "far fa-file-image", - searchTerms: [] - }, { - title: "fas fa-file-pdf", - searchTerms: [] - }, { - title: "far fa-file-pdf", - searchTerms: [] - }, { - title: "fas fa-file-powerpoint", - searchTerms: [] - }, { - title: "far fa-file-powerpoint", - searchTerms: [] - }, { - title: "fas fa-file-video", - searchTerms: [] - }, { - title: "far fa-file-video", - searchTerms: [] - }, { - title: "fas fa-file-word", - searchTerms: [] - }, { - title: "far fa-file-word", - searchTerms: [] - }, { - title: "fas fa-film", - searchTerms: [ "movie" ] - }, { - title: "fas fa-filter", - searchTerms: [ "funnel", "options" ] - }, { - title: "fas fa-fire", - searchTerms: [ "flame", "hot", "popular" ] - }, { - title: "fas fa-fire-extinguisher", - searchTerms: [] - }, { - title: "fab fa-firefox", - searchTerms: [ "browser" ] - }, { - title: "fas fa-first-aid", - searchTerms: [] - }, { - title: "fab fa-first-order", - searchTerms: [] - }, { - title: "fab fa-firstdraft", - searchTerms: [] - }, { - title: "fas fa-flag", - searchTerms: [ "report", "notification", "notify" ] - }, { - title: "far fa-flag", - searchTerms: [ "report", "notification", "notify" ] - }, { - title: "fas fa-flag-checkered", - searchTerms: [ "report", "notification", "notify" ] - }, { - title: "fas fa-flask", - searchTerms: [ "science", "beaker", "experimental", "labs" ] - }, { - title: "fab fa-flickr", - searchTerms: [] - }, { - title: "fab fa-flipboard", - searchTerms: [] - }, { - title: "fab fa-fly", - searchTerms: [] - }, { - title: "fas fa-folder", - searchTerms: [] - }, { - title: "far fa-folder", - searchTerms: [] - }, { - title: "fas fa-folder-open", - searchTerms: [] - }, { - title: "far fa-folder-open", - searchTerms: [] - }, { - title: "fas fa-font", - searchTerms: [ "text" ] - }, { - title: "fab fa-font-awesome", - searchTerms: [ "meanpath" ] - }, { - title: "fab fa-font-awesome-alt", - searchTerms: [] - }, { - title: "fab fa-font-awesome-flag", - searchTerms: [] - }, { - title: "fab fa-fonticons", - searchTerms: [] - }, { - title: "fab fa-fonticons-fi", - searchTerms: [] - }, { - title: "fas fa-football-ball", - searchTerms: [] - }, { - title: "fab fa-fort-awesome", - searchTerms: [ "castle" ] - }, { - title: "fab fa-fort-awesome-alt", - searchTerms: [ "castle" ] - }, { - title: "fab fa-forumbee", - searchTerms: [] - }, { - title: "fas fa-forward", - searchTerms: [ "forward", "next" ] - }, { - title: "fab fa-foursquare", - searchTerms: [] - }, { - title: "fab fa-free-code-camp", - searchTerms: [] - }, { - title: "fab fa-freebsd", - searchTerms: [] - }, { - title: "fas fa-frown", - searchTerms: [ "face", "emoticon", "sad", "disapprove", "rating" ] - }, { - title: "far fa-frown", - searchTerms: [ "face", "emoticon", "sad", "disapprove", "rating" ] - }, { - title: "fas fa-futbol", - searchTerms: [] - }, { - title: "far fa-futbol", - searchTerms: [] - }, { - title: "fas fa-gamepad", - searchTerms: [ "controller" ] - }, { - title: "fas fa-gavel", - searchTerms: [ "judge", "lawyer", "opinion", "hammer" ] - }, { - title: "fas fa-gem", - searchTerms: [ "diamond" ] - }, { - title: "far fa-gem", - searchTerms: [ "diamond" ] - }, { - title: "fas fa-genderless", - searchTerms: [] - }, { - title: "fab fa-get-pocket", - searchTerms: [] - }, { - title: "fab fa-gg", - searchTerms: [] - }, { - title: "fab fa-gg-circle", - searchTerms: [] - }, { - title: "fas fa-gift", - searchTerms: [ "present" ] - }, { - title: "fab fa-git", - searchTerms: [] - }, { - title: "fab fa-git-square", - searchTerms: [] - }, { - title: "fab fa-github", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-github-alt", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-github-square", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-gitkraken", - searchTerms: [] - }, { - title: "fab fa-gitlab", - searchTerms: [ "Axosoft" ] - }, { - title: "fab fa-gitter", - searchTerms: [] - }, { - title: "fas fa-glass-martini", - searchTerms: [ "martini", "drink", "bar", "alcohol", "liquor", "glass" ] - }, { - title: "fab fa-glide", - searchTerms: [] - }, { - title: "fab fa-glide-g", - searchTerms: [] - }, { - title: "fas fa-globe", - searchTerms: [ "world", "planet", "map", "place", "travel", "earth", "global", "translate", "all", "language", "localize", "location", "coordinates", "country", "gps" ] - }, { - title: "fab fa-gofore", - searchTerms: [] - }, { - title: "fas fa-golf-ball", - searchTerms: [] - }, { - title: "fab fa-goodreads", - searchTerms: [] - }, { - title: "fab fa-goodreads-g", - searchTerms: [] - }, { - title: "fab fa-google", - searchTerms: [] - }, { - title: "fab fa-google-drive", - searchTerms: [] - }, { - title: "fab fa-google-play", - searchTerms: [] - }, { - title: "fab fa-google-plus", - searchTerms: [ "google-plus-circle", "google-plus-official" ] - }, { - title: "fab fa-google-plus-g", - searchTerms: [ "social network", "google-plus" ] - }, { - title: "fab fa-google-plus-square", - searchTerms: [ "social network" ] - }, { - title: "fab fa-google-wallet", - searchTerms: [] - }, { - title: "fas fa-graduation-cap", - searchTerms: [ "learning", "school", "student" ] - }, { - title: "fab fa-gratipay", - searchTerms: [ "heart", "like", "favorite", "love" ] - }, { - title: "fab fa-grav", - searchTerms: [] - }, { - title: "fab fa-gripfire", - searchTerms: [] - }, { - title: "fab fa-grunt", - searchTerms: [] - }, { - title: "fab fa-gulp", - searchTerms: [] - }, { - title: "fas fa-h-square", - searchTerms: [ "hospital", "hotel" ] - }, { - title: "fab fa-hacker-news", - searchTerms: [] - }, { - title: "fab fa-hacker-news-square", - searchTerms: [] - }, { - title: "fas fa-hand-lizard", - searchTerms: [] - }, { - title: "far fa-hand-lizard", - searchTerms: [] - }, { - title: "fas fa-hand-paper", - searchTerms: [ "stop" ] - }, { - title: "far fa-hand-paper", - searchTerms: [ "stop" ] - }, { - title: "fas fa-hand-peace", - searchTerms: [] - }, { - title: "far fa-hand-peace", - searchTerms: [] - }, { - title: "fas fa-hand-point-down", - searchTerms: [ "point", "finger", "hand-o-down" ] - }, { - title: "far fa-hand-point-down", - searchTerms: [ "point", "finger", "hand-o-down" ] - }, { - title: "fas fa-hand-point-left", - searchTerms: [ "point", "left", "previous", "back", "finger", "hand-o-left" ] - }, { - title: "far fa-hand-point-left", - searchTerms: [ "point", "left", "previous", "back", "finger", "hand-o-left" ] - }, { - title: "fas fa-hand-point-right", - searchTerms: [ "point", "right", "next", "forward", "finger", "hand-o-right" ] - }, { - title: "far fa-hand-point-right", - searchTerms: [ "point", "right", "next", "forward", "finger", "hand-o-right" ] - }, { - title: "fas fa-hand-point-up", - searchTerms: [ "point", "finger", "hand-o-up" ] - }, { - title: "far fa-hand-point-up", - searchTerms: [ "point", "finger", "hand-o-up" ] - }, { - title: "fas fa-hand-pointer", - searchTerms: [ "select" ] - }, { - title: "far fa-hand-pointer", - searchTerms: [ "select" ] - }, { - title: "fas fa-hand-rock", - searchTerms: [] - }, { - title: "far fa-hand-rock", - searchTerms: [] - }, { - title: "fas fa-hand-scissors", - searchTerms: [] - }, { - title: "far fa-hand-scissors", - searchTerms: [] - }, { - title: "fas fa-hand-spock", - searchTerms: [] - }, { - title: "far fa-hand-spock", - searchTerms: [] - }, { - title: "fas fa-handshake", - searchTerms: [] - }, { - title: "far fa-handshake", - searchTerms: [] - }, { - title: "fas fa-hashtag", - searchTerms: [] - }, { - title: "fas fa-hdd", - searchTerms: [ "harddrive", "hard drive", "storage", "save" ] - }, { - title: "far fa-hdd", - searchTerms: [ "harddrive", "hard drive", "storage", "save" ] - }, { - title: "fas fa-heading", - searchTerms: [ "header", "header" ] - }, { - title: "fas fa-headphones", - searchTerms: [ "sound", "listen", "music", "audio" ] - }, { - title: "fas fa-heart", - searchTerms: [ "love", "like", "favorite" ] - }, { - title: "far fa-heart", - searchTerms: [ "love", "like", "favorite" ] - }, { - title: "fas fa-heartbeat", - searchTerms: [ "ekg", "vital signs" ] - }, { - title: "fab fa-hips", - searchTerms: [] - }, { - title: "fab fa-hire-a-helper", - searchTerms: [] - }, { - title: "fas fa-history", - searchTerms: [] - }, { - title: "fas fa-hockey-puck", - searchTerms: [] - }, { - title: "fas fa-home", - searchTerms: [ "main", "house" ] - }, { - title: "fab fa-hooli", - searchTerms: [] - }, { - title: "fas fa-hospital", - searchTerms: [ "building", "medical center", "emergency room" ] - }, { - title: "far fa-hospital", - searchTerms: [ "building", "medical center", "emergency room" ] - }, { - title: "fas fa-hospital-symbol", - searchTerms: [] - }, { - title: "fab fa-hotjar", - searchTerms: [] - }, { - title: "fas fa-hourglass", - searchTerms: [] - }, { - title: "far fa-hourglass", - searchTerms: [] - }, { - title: "fas fa-hourglass-end", - searchTerms: [] - }, { - title: "fas fa-hourglass-half", - searchTerms: [] - }, { - title: "fas fa-hourglass-start", - searchTerms: [] - }, { - title: "fab fa-houzz", - searchTerms: [] - }, { - title: "fab fa-html5", - searchTerms: [] - }, { - title: "fab fa-hubspot", - searchTerms: [] - }, { - title: "fas fa-i-cursor", - searchTerms: [] - }, { - title: "fas fa-id-badge", - searchTerms: [] - }, { - title: "far fa-id-badge", - searchTerms: [] - }, { - title: "fas fa-id-card", - searchTerms: [] - }, { - title: "far fa-id-card", - searchTerms: [] - }, { - title: "fas fa-image", - searchTerms: [ "photo", "album", "picture", "picture" ] - }, { - title: "far fa-image", - searchTerms: [ "photo", "album", "picture", "picture" ] - }, { - title: "fas fa-images", - searchTerms: [ "photo", "album", "picture" ] - }, { - title: "far fa-images", - searchTerms: [ "photo", "album", "picture" ] - }, { - title: "fab fa-imdb", - searchTerms: [] - }, { - title: "fas fa-inbox", - searchTerms: [] - }, { - title: "fas fa-indent", - searchTerms: [] - }, { - title: "fas fa-industry", - searchTerms: [ "factory" ] - }, { - title: "fas fa-info", - searchTerms: [ "help", "information", "more", "details" ] - }, { - title: "fas fa-info-circle", - searchTerms: [ "help", "information", "more", "details" ] - }, { - title: "fab fa-instagram", - searchTerms: [] - }, { - title: "fab fa-internet-explorer", - searchTerms: [ "browser", "ie" ] - }, { - title: "fab fa-ioxhost", - searchTerms: [] - }, { - title: "fas fa-italic", - searchTerms: [ "italics" ] - }, { - title: "fab fa-itunes", - searchTerms: [] - }, { - title: "fab fa-itunes-note", - searchTerms: [] - }, { - title: "fab fa-jenkins", - searchTerms: [] - }, { - title: "fab fa-joget", - searchTerms: [] - }, { - title: "fab fa-joomla", - searchTerms: [] - }, { - title: "fab fa-js", - searchTerms: [] - }, { - title: "fab fa-js-square", - searchTerms: [] - }, { - title: "fab fa-jsfiddle", - searchTerms: [] - }, { - title: "fas fa-key", - searchTerms: [ "unlock", "password" ] - }, { - title: "fas fa-keyboard", - searchTerms: [ "type", "input" ] - }, { - title: "far fa-keyboard", - searchTerms: [ "type", "input" ] - }, { - title: "fab fa-keycdn", - searchTerms: [] - }, { - title: "fab fa-kickstarter", - searchTerms: [] - }, { - title: "fab fa-kickstarter-k", - searchTerms: [] - }, { - title: "fab fa-korvue", - searchTerms: [] - }, { - title: "fas fa-language", - searchTerms: [] - }, { - title: "fas fa-laptop", - searchTerms: [ "demo", "computer", "device", "pc" ] - }, { - title: "fab fa-laravel", - searchTerms: [] - }, { - title: "fab fa-lastfm", - searchTerms: [] - }, { - title: "fab fa-lastfm-square", - searchTerms: [] - }, { - title: "fas fa-leaf", - searchTerms: [ "eco", "nature", "plant" ] - }, { - title: "fab fa-leanpub", - searchTerms: [] - }, { - title: "fas fa-lemon", - searchTerms: [ "food" ] - }, { - title: "far fa-lemon", - searchTerms: [ "food" ] - }, { - title: "fab fa-less", - searchTerms: [] - }, { - title: "fas fa-level-down-alt", - searchTerms: [ "level-down" ] - }, { - title: "fas fa-level-up-alt", - searchTerms: [ "level-up" ] - }, { - title: "fas fa-life-ring", - searchTerms: [ "support" ] - }, { - title: "far fa-life-ring", - searchTerms: [ "support" ] - }, { - title: "fas fa-lightbulb", - searchTerms: [ "idea", "inspiration" ] - }, { - title: "far fa-lightbulb", - searchTerms: [ "idea", "inspiration" ] - }, { - title: "fab fa-line", - searchTerms: [] - }, { - title: "fas fa-link", - searchTerms: [ "chain" ] - }, { - title: "fab fa-linkedin", - searchTerms: [ "linkedin-square" ] - }, { - title: "fab fa-linkedin-in", - searchTerms: [ "linkedin" ] - }, { - title: "fab fa-linode", - searchTerms: [] - }, { - title: "fab fa-linux", - searchTerms: [ "tux" ] - }, { - title: "fas fa-lira-sign", - searchTerms: [ "try", "turkish", "try" ] - }, { - title: "fas fa-list", - searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ] - }, { - title: "fas fa-list-alt", - searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ] - }, { - title: "far fa-list-alt", - searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ] - }, { - title: "fas fa-list-ol", - searchTerms: [ "ul", "ol", "checklist", "list", "todo", "list", "numbers" ] - }, { - title: "fas fa-list-ul", - searchTerms: [ "ul", "ol", "checklist", "todo", "list" ] - }, { - title: "fas fa-location-arrow", - searchTerms: [ "map", "coordinates", "location", "address", "place", "where", "gps" ] - }, { - title: "fas fa-lock", - searchTerms: [ "protect", "admin", "security" ] - }, { - title: "fas fa-lock-open", - searchTerms: [ "protect", "admin", "password", "lock", "open" ] - }, { - title: "fas fa-long-arrow-alt-down", - searchTerms: [ "long-arrow-down" ] - }, { - title: "fas fa-long-arrow-alt-left", - searchTerms: [ "previous", "back", "long-arrow-left" ] - }, { - title: "fas fa-long-arrow-alt-right", - searchTerms: [ "long-arrow-right" ] - }, { - title: "fas fa-long-arrow-alt-up", - searchTerms: [ "long-arrow-up" ] - }, { - title: "fas fa-low-vision", - searchTerms: [] - }, { - title: "fab fa-lyft", - searchTerms: [] - }, { - title: "fab fa-magento", - searchTerms: [] - }, { - title: "fas fa-magic", - searchTerms: [ "wizard", "automatic", "autocomplete" ] - }, { - title: "fas fa-magnet", - searchTerms: [] - }, { - title: "fas fa-male", - searchTerms: [ "man", "human", "user", "person", "profile" ] - }, { - title: "fas fa-map", - searchTerms: [] - }, { - title: "far fa-map", - searchTerms: [] - }, { - title: "fas fa-map-marker", - searchTerms: [ "map", "pin", "location", "coordinates", "localize", "address", "travel", "where", "place", "gps" ] - }, { - title: "fas fa-map-marker-alt", - searchTerms: [ "map-marker", "gps" ] - }, { - title: "fas fa-map-pin", - searchTerms: [] - }, { - title: "fas fa-map-signs", - searchTerms: [] - }, { - title: "fas fa-mars", - searchTerms: [ "male" ] - }, { - title: "fas fa-mars-double", - searchTerms: [] - }, { - title: "fas fa-mars-stroke", - searchTerms: [] - }, { - title: "fas fa-mars-stroke-h", - searchTerms: [] - }, { - title: "fas fa-mars-stroke-v", - searchTerms: [] - }, { - title: "fab fa-maxcdn", - searchTerms: [] - }, { - title: "fab fa-medapps", - searchTerms: [] - }, { - title: "fab fa-medium", - searchTerms: [] - }, { - title: "fab fa-medium-m", - searchTerms: [] - }, { - title: "fas fa-medkit", - searchTerms: [ "first aid", "firstaid", "help", "support", "health" ] - }, { - title: "fab fa-medrt", - searchTerms: [] - }, { - title: "fab fa-meetup", - searchTerms: [] - }, { - title: "fas fa-meh", - searchTerms: [ "face", "emoticon", "rating", "neutral" ] - }, { - title: "far fa-meh", - searchTerms: [ "face", "emoticon", "rating", "neutral" ] - }, { - title: "fas fa-mercury", - searchTerms: [ "transgender" ] - }, { - title: "fas fa-microchip", - searchTerms: [] - }, { - title: "fas fa-microphone", - searchTerms: [ "record", "voice", "sound" ] - }, { - title: "fas fa-microphone-slash", - searchTerms: [ "record", "voice", "sound", "mute" ] - }, { - title: "fab fa-microsoft", - searchTerms: [] - }, { - title: "fas fa-minus", - searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ] - }, { - title: "fas fa-minus-circle", - searchTerms: [ "delete", "remove", "trash", "hide" ] - }, { - title: "fas fa-minus-square", - searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ] - }, { - title: "far fa-minus-square", - searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ] - }, { - title: "fab fa-mix", - searchTerms: [] - }, { - title: "fab fa-mixcloud", - searchTerms: [] - }, { - title: "fab fa-mizuni", - searchTerms: [] - }, { - title: "fas fa-mobile", - searchTerms: [ "cell phone", "cellphone", "text", "call", "iphone", "number", "telephone" ] - }, { - title: "fas fa-mobile-alt", - searchTerms: [ "mobile" ] - }, { - title: "fab fa-modx", - searchTerms: [] - }, { - title: "fab fa-monero", - searchTerms: [] - }, { - title: "fas fa-money-bill-alt", - searchTerms: [ "cash", "money", "buy", "checkout", "purchase", "payment", "price" ] - }, { - title: "far fa-money-bill-alt", - searchTerms: [ "cash", "money", "buy", "checkout", "purchase", "payment", "price" ] - }, { - title: "fas fa-moon", - searchTerms: [ "night", "darker", "contrast" ] - }, { - title: "far fa-moon", - searchTerms: [ "night", "darker", "contrast" ] - }, { - title: "fas fa-motorcycle", - searchTerms: [ "vehicle", "bike" ] - }, { - title: "fas fa-mouse-pointer", - searchTerms: [ "select" ] - }, { - title: "fas fa-music", - searchTerms: [ "note", "sound" ] - }, { - title: "fab fa-napster", - searchTerms: [] - }, { - title: "fas fa-neuter", - searchTerms: [] - }, { - title: "fas fa-newspaper", - searchTerms: [ "press", "article" ] - }, { - title: "far fa-newspaper", - searchTerms: [ "press", "article" ] - }, { - title: "fab fa-nintendo-switch", - searchTerms: [] - }, { - title: "fab fa-node", - searchTerms: [] - }, { - title: "fab fa-node-js", - searchTerms: [] - }, { - title: "fab fa-npm", - searchTerms: [] - }, { - title: "fab fa-ns8", - searchTerms: [] - }, { - title: "fab fa-nutritionix", - searchTerms: [] - }, { - title: "fas fa-object-group", - searchTerms: [ "design" ] - }, { - title: "far fa-object-group", - searchTerms: [ "design" ] - }, { - title: "fas fa-object-ungroup", - searchTerms: [ "design" ] - }, { - title: "far fa-object-ungroup", - searchTerms: [ "design" ] - }, { - title: "fab fa-odnoklassniki", - searchTerms: [] - }, { - title: "fab fa-odnoklassniki-square", - searchTerms: [] - }, { - title: "fab fa-opencart", - searchTerms: [] - }, { - title: "fab fa-openid", - searchTerms: [] - }, { - title: "fab fa-opera", - searchTerms: [] - }, { - title: "fab fa-optin-monster", - searchTerms: [] - }, { - title: "fab fa-osi", - searchTerms: [] - }, { - title: "fas fa-outdent", - searchTerms: [] - }, { - title: "fab fa-page4", - searchTerms: [] - }, { - title: "fab fa-pagelines", - searchTerms: [ "leaf", "leaves", "tree", "plant", "eco", "nature" ] - }, { - title: "fas fa-paint-brush", - searchTerms: [] - }, { - title: "fab fa-palfed", - searchTerms: [] - }, { - title: "fas fa-pallet", - searchTerms: [] - }, { - title: "fas fa-paper-plane", - searchTerms: [] - }, { - title: "far fa-paper-plane", - searchTerms: [] - }, { - title: "fas fa-paperclip", - searchTerms: [ "attachment" ] - }, { - title: "fas fa-paragraph", - searchTerms: [] - }, { - title: "fas fa-paste", - searchTerms: [ "copy", "clipboard" ] - }, { - title: "fab fa-patreon", - searchTerms: [] - }, { - title: "fas fa-pause", - searchTerms: [ "wait" ] - }, { - title: "fas fa-pause-circle", - searchTerms: [] - }, { - title: "far fa-pause-circle", - searchTerms: [] - }, { - title: "fas fa-paw", - searchTerms: [ "pet" ] - }, { - title: "fab fa-paypal", - searchTerms: [] - }, { - title: "fas fa-pen-square", - searchTerms: [ "write", "edit", "update", "pencil-square" ] - }, { - title: "fas fa-pencil-alt", - searchTerms: [ "write", "edit", "update", "pencil", "design" ] - }, { - title: "fas fa-percent", - searchTerms: [] - }, { - title: "fab fa-periscope", - searchTerms: [] - }, { - title: "fab fa-phabricator", - searchTerms: [] - }, { - title: "fab fa-phoenix-framework", - searchTerms: [] - }, { - title: "fas fa-phone", - searchTerms: [ "call", "voice", "number", "support", "earphone", "telephone" ] - }, { - title: "fas fa-phone-square", - searchTerms: [ "call", "voice", "number", "support", "telephone" ] - }, { - title: "fas fa-phone-volume", - searchTerms: [ "telephone", "volume-control-phone" ] - }, { - title: "fab fa-php", - searchTerms: [] - }, { - title: "fab fa-pied-piper", - searchTerms: [] - }, { - title: "fab fa-pied-piper-alt", - searchTerms: [] - }, { - title: "fab fa-pied-piper-pp", - searchTerms: [] - }, { - title: "fas fa-pills", - searchTerms: [ "medicine", "drugs" ] - }, { - title: "fab fa-pinterest", - searchTerms: [] - }, { - title: "fab fa-pinterest-p", - searchTerms: [] - }, { - title: "fab fa-pinterest-square", - searchTerms: [] - }, { - title: "fas fa-plane", - searchTerms: [ "travel", "trip", "location", "destination", "airplane", "fly", "mode" ] - }, { - title: "fas fa-play", - searchTerms: [ "start", "playing", "music", "sound" ] - }, { - title: "fas fa-play-circle", - searchTerms: [ "start", "playing" ] - }, { - title: "far fa-play-circle", - searchTerms: [ "start", "playing" ] - }, { - title: "fab fa-playstation", - searchTerms: [] - }, { - title: "fas fa-plug", - searchTerms: [ "power", "connect" ] - }, { - title: "fas fa-plus", - searchTerms: [ "add", "new", "create", "expand" ] - }, { - title: "fas fa-plus-circle", - searchTerms: [ "add", "new", "create", "expand" ] - }, { - title: "fas fa-plus-square", - searchTerms: [ "add", "new", "create", "expand" ] - }, { - title: "far fa-plus-square", - searchTerms: [ "add", "new", "create", "expand" ] - }, { - title: "fas fa-podcast", - searchTerms: [] - }, { - title: "fas fa-pound-sign", - searchTerms: [ "gbp", "gbp" ] - }, { - title: "fas fa-power-off", - searchTerms: [ "on" ] - }, { - title: "fas fa-print", - searchTerms: [] - }, { - title: "fab fa-product-hunt", - searchTerms: [] - }, { - title: "fab fa-pushed", - searchTerms: [] - }, { - title: "fas fa-puzzle-piece", - searchTerms: [ "addon", "add-on", "section" ] - }, { - title: "fab fa-python", - searchTerms: [] - }, { - title: "fab fa-qq", - searchTerms: [] - }, { - title: "fas fa-qrcode", - searchTerms: [ "scan" ] - }, { - title: "fas fa-question", - searchTerms: [ "help", "information", "unknown", "support" ] - }, { - title: "fas fa-question-circle", - searchTerms: [ "help", "information", "unknown", "support" ] - }, { - title: "far fa-question-circle", - searchTerms: [ "help", "information", "unknown", "support" ] - }, { - title: "fas fa-quidditch", - searchTerms: [] - }, { - title: "fab fa-quinscape", - searchTerms: [] - }, { - title: "fab fa-quora", - searchTerms: [] - }, { - title: "fas fa-quote-left", - searchTerms: [] - }, { - title: "fas fa-quote-right", - searchTerms: [] - }, { - title: "fas fa-random", - searchTerms: [ "sort", "shuffle" ] - }, { - title: "fab fa-ravelry", - searchTerms: [] - }, { - title: "fab fa-react", - searchTerms: [] - }, { - title: "fab fa-rebel", - searchTerms: [] - }, { - title: "fas fa-recycle", - searchTerms: [] - }, { - title: "fab fa-red-river", - searchTerms: [] - }, { - title: "fab fa-reddit", - searchTerms: [] - }, { - title: "fab fa-reddit-alien", - searchTerms: [] - }, { - title: "fab fa-reddit-square", - searchTerms: [] - }, { - title: "fas fa-redo", - searchTerms: [ "forward", "repeat", "repeat" ] - }, { - title: "fas fa-redo-alt", - searchTerms: [ "forward", "repeat" ] - }, { - title: "fas fa-registered", - searchTerms: [] - }, { - title: "far fa-registered", - searchTerms: [] - }, { - title: "fab fa-rendact", - searchTerms: [] - }, { - title: "fab fa-renren", - searchTerms: [] - }, { - title: "fas fa-reply", - searchTerms: [] - }, { - title: "fas fa-reply-all", - searchTerms: [] - }, { - title: "fab fa-replyd", - searchTerms: [] - }, { - title: "fab fa-resolving", - searchTerms: [] - }, { - title: "fas fa-retweet", - searchTerms: [ "refresh", "reload", "share", "swap" ] - }, { - title: "fas fa-road", - searchTerms: [ "street" ] - }, { - title: "fas fa-rocket", - searchTerms: [ "app" ] - }, { - title: "fab fa-rocketchat", - searchTerms: [] - }, { - title: "fab fa-rockrms", - searchTerms: [] - }, { - title: "fas fa-rss", - searchTerms: [ "blog" ] - }, { - title: "fas fa-rss-square", - searchTerms: [ "feed", "blog" ] - }, { - title: "fas fa-ruble-sign", - searchTerms: [ "rub", "rub" ] - }, { - title: "fas fa-rupee-sign", - searchTerms: [ "indian", "inr" ] - }, { - title: "fab fa-safari", - searchTerms: [ "browser" ] - }, { - title: "fab fa-sass", - searchTerms: [] - }, { - title: "fas fa-save", - searchTerms: [ "floppy", "floppy-o" ] - }, { - title: "far fa-save", - searchTerms: [ "floppy", "floppy-o" ] - }, { - title: "fab fa-schlix", - searchTerms: [] - }, { - title: "fab fa-scribd", - searchTerms: [] - }, { - title: "fas fa-search", - searchTerms: [ "magnify", "zoom", "enlarge", "bigger" ] - }, { - title: "fas fa-search-minus", - searchTerms: [ "magnify", "minify", "zoom", "smaller" ] - }, { - title: "fas fa-search-plus", - searchTerms: [ "magnify", "zoom", "enlarge", "bigger" ] - }, { - title: "fab fa-searchengin", - searchTerms: [] - }, { - title: "fab fa-sellcast", - searchTerms: [ "eercast" ] - }, { - title: "fab fa-sellsy", - searchTerms: [] - }, { - title: "fas fa-server", - searchTerms: [] - }, { - title: "fab fa-servicestack", - searchTerms: [] - }, { - title: "fas fa-share", - searchTerms: [] - }, { - title: "fas fa-share-alt", - searchTerms: [] - }, { - title: "fas fa-share-alt-square", - searchTerms: [] - }, { - title: "fas fa-share-square", - searchTerms: [ "social", "send" ] - }, { - title: "far fa-share-square", - searchTerms: [ "social", "send" ] - }, { - title: "fas fa-shekel-sign", - searchTerms: [ "ils", "ils" ] - }, { - title: "fas fa-shield-alt", - searchTerms: [ "shield" ] - }, { - title: "fas fa-ship", - searchTerms: [ "boat", "sea" ] - }, { - title: "fas fa-shipping-fast", - searchTerms: [] - }, { - title: "fab fa-shirtsinbulk", - searchTerms: [] - }, { - title: "fas fa-shopping-bag", - searchTerms: [] - }, { - title: "fas fa-shopping-basket", - searchTerms: [] - }, { - title: "fas fa-shopping-cart", - searchTerms: [ "checkout", "buy", "purchase", "payment" ] - }, { - title: "fas fa-shower", - searchTerms: [] - }, { - title: "fas fa-sign-in-alt", - searchTerms: [ "enter", "join", "log in", "login", "sign up", "sign in", "signin", "signup", "arrow", "sign-in" ] - }, { - title: "fas fa-sign-language", - searchTerms: [] - }, { - title: "fas fa-sign-out-alt", - searchTerms: [ "log out", "logout", "leave", "exit", "arrow", "sign-out" ] - }, { - title: "fas fa-signal", - searchTerms: [ "graph", "bars", "status" ] - }, { - title: "fab fa-simplybuilt", - searchTerms: [] - }, { - title: "fab fa-sistrix", - searchTerms: [] - }, { - title: "fas fa-sitemap", - searchTerms: [ "directory", "hierarchy", "organization" ] - }, { - title: "fab fa-skyatlas", - searchTerms: [] - }, { - title: "fab fa-skype", - searchTerms: [] - }, { - title: "fab fa-slack", - searchTerms: [ "hashtag", "anchor", "hash" ] - }, { - title: "fab fa-slack-hash", - searchTerms: [ "hashtag", "anchor", "hash" ] - }, { - title: "fas fa-sliders-h", - searchTerms: [ "settings", "sliders" ] - }, { - title: "fab fa-slideshare", - searchTerms: [] - }, { - title: "fas fa-smile", - searchTerms: [ "face", "emoticon", "happy", "approve", "satisfied", "rating" ] - }, { - title: "far fa-smile", - searchTerms: [ "face", "emoticon", "happy", "approve", "satisfied", "rating" ] - }, { - title: "fab fa-snapchat", - searchTerms: [] - }, { - title: "fab fa-snapchat-ghost", - searchTerms: [] - }, { - title: "fab fa-snapchat-square", - searchTerms: [] - }, { - title: "fas fa-snowflake", - searchTerms: [] - }, { - title: "far fa-snowflake", - searchTerms: [] - }, { - title: "fas fa-sort", - searchTerms: [ "order" ] - }, { - title: "fas fa-sort-alpha-down", - searchTerms: [ "sort-alpha-asc" ] - }, { - title: "fas fa-sort-alpha-up", - searchTerms: [ "sort-alpha-desc" ] - }, { - title: "fas fa-sort-amount-down", - searchTerms: [ "sort-amount-asc" ] - }, { - title: "fas fa-sort-amount-up", - searchTerms: [ "sort-amount-desc" ] - }, { - title: "fas fa-sort-down", - searchTerms: [ "arrow", "descending", "sort-desc" ] - }, { - title: "fas fa-sort-numeric-down", - searchTerms: [ "numbers", "sort-numeric-asc" ] - }, { - title: "fas fa-sort-numeric-up", - searchTerms: [ "numbers", "sort-numeric-desc" ] - }, { - title: "fas fa-sort-up", - searchTerms: [ "arrow", "ascending", "sort-asc" ] - }, { - title: "fab fa-soundcloud", - searchTerms: [] - }, { - title: "fas fa-space-shuttle", - searchTerms: [] - }, { - title: "fab fa-speakap", - searchTerms: [] - }, { - title: "fas fa-spinner", - searchTerms: [ "loading", "progress" ] - }, { - title: "fab fa-spotify", - searchTerms: [] - }, { - title: "fas fa-square", - searchTerms: [ "block", "box" ] - }, { - title: "far fa-square", - searchTerms: [ "block", "box" ] - }, { - title: "fas fa-square-full", - searchTerms: [] - }, { - title: "fab fa-stack-exchange", - searchTerms: [] - }, { - title: "fab fa-stack-overflow", - searchTerms: [] - }, { - title: "fas fa-star", - searchTerms: [ "award", "achievement", "night", "rating", "score", "favorite" ] - }, { - title: "far fa-star", - searchTerms: [ "award", "achievement", "night", "rating", "score", "favorite" ] - }, { - title: "fas fa-star-half", - searchTerms: [ "award", "achievement", "rating", "score", "star-half-empty", "star-half-full" ] - }, { - title: "far fa-star-half", - searchTerms: [ "award", "achievement", "rating", "score", "star-half-empty", "star-half-full" ] - }, { - title: "fab fa-staylinked", - searchTerms: [] - }, { - title: "fab fa-steam", - searchTerms: [] - }, { - title: "fab fa-steam-square", - searchTerms: [] - }, { - title: "fab fa-steam-symbol", - searchTerms: [] - }, { - title: "fas fa-step-backward", - searchTerms: [ "rewind", "previous", "beginning", "start", "first" ] - }, { - title: "fas fa-step-forward", - searchTerms: [ "next", "end", "last" ] - }, { - title: "fas fa-stethoscope", - searchTerms: [] - }, { - title: "fab fa-sticker-mule", - searchTerms: [] - }, { - title: "fas fa-sticky-note", - searchTerms: [] - }, { - title: "far fa-sticky-note", - searchTerms: [] - }, { - title: "fas fa-stop", - searchTerms: [ "block", "box", "square" ] - }, { - title: "fas fa-stop-circle", - searchTerms: [] - }, { - title: "far fa-stop-circle", - searchTerms: [] - }, { - title: "fas fa-stopwatch", - searchTerms: [ "time" ] - }, { - title: "fab fa-strava", - searchTerms: [] - }, { - title: "fas fa-street-view", - searchTerms: [ "map" ] - }, { - title: "fas fa-strikethrough", - searchTerms: [] - }, { - title: "fab fa-stripe", - searchTerms: [] - }, { - title: "fab fa-stripe-s", - searchTerms: [] - }, { - title: "fab fa-studiovinari", - searchTerms: [] - }, { - title: "fab fa-stumbleupon", - searchTerms: [] - }, { - title: "fab fa-stumbleupon-circle", - searchTerms: [] - }, { - title: "fas fa-subscript", - searchTerms: [] - }, { - title: "fas fa-subway", - searchTerms: [] - }, { - title: "fas fa-suitcase", - searchTerms: [ "trip", "luggage", "travel", "move", "baggage" ] - }, { - title: "fas fa-sun", - searchTerms: [ "weather", "contrast", "lighter", "brighten", "day" ] - }, { - title: "far fa-sun", - searchTerms: [ "weather", "contrast", "lighter", "brighten", "day" ] - }, { - title: "fab fa-superpowers", - searchTerms: [] - }, { - title: "fas fa-superscript", - searchTerms: [ "exponential" ] - }, { - title: "fab fa-supple", - searchTerms: [] - }, { - title: "fas fa-sync", - searchTerms: [ "reload", "refresh", "refresh" ] - }, { - title: "fas fa-sync-alt", - searchTerms: [ "reload", "refresh" ] - }, { - title: "fas fa-syringe", - searchTerms: [ "immunizations", "needle" ] - }, { - title: "fas fa-table", - searchTerms: [ "data", "excel", "spreadsheet" ] - }, { - title: "fas fa-table-tennis", - searchTerms: [] - }, { - title: "fas fa-tablet", - searchTerms: [ "ipad", "device" ] - }, { - title: "fas fa-tablet-alt", - searchTerms: [ "tablet" ] - }, { - title: "fas fa-tachometer-alt", - searchTerms: [ "tachometer", "dashboard" ] - }, { - title: "fas fa-tag", - searchTerms: [ "label" ] - }, { - title: "fas fa-tags", - searchTerms: [ "labels" ] - }, { - title: "fas fa-tasks", - searchTerms: [ "progress", "loading", "downloading", "downloads", "settings" ] - }, { - title: "fas fa-taxi", - searchTerms: [ "vehicle" ] - }, { - title: "fab fa-telegram", - searchTerms: [] - }, { - title: "fab fa-telegram-plane", - searchTerms: [] - }, { - title: "fab fa-tencent-weibo", - searchTerms: [] - }, { - title: "fas fa-terminal", - searchTerms: [ "command", "prompt", "code" ] - }, { - title: "fas fa-text-height", - searchTerms: [] - }, { - title: "fas fa-text-width", - searchTerms: [] - }, { - title: "fas fa-th", - searchTerms: [ "blocks", "squares", "boxes", "grid" ] - }, { - title: "fas fa-th-large", - searchTerms: [ "blocks", "squares", "boxes", "grid" ] - }, { - title: "fas fa-th-list", - searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ] - }, { - title: "fab fa-themeisle", - searchTerms: [] - }, { - title: "fas fa-thermometer", - searchTerms: [ "temperature", "fever" ] - }, { - title: "fas fa-thermometer-empty", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-full", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-half", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-quarter", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-three-quarters", - searchTerms: [ "status" ] - }, { - title: "fas fa-thumbs-down", - searchTerms: [ "dislike", "disapprove", "disagree", "hand", "thumbs-o-down" ] - }, { - title: "far fa-thumbs-down", - searchTerms: [ "dislike", "disapprove", "disagree", "hand", "thumbs-o-down" ] - }, { - title: "fas fa-thumbs-up", - searchTerms: [ "like", "favorite", "approve", "agree", "hand", "thumbs-o-up" ] - }, { - title: "far fa-thumbs-up", - searchTerms: [ "like", "favorite", "approve", "agree", "hand", "thumbs-o-up" ] - }, { - title: "fas fa-thumbtack", - searchTerms: [ "marker", "pin", "location", "coordinates", "thumb-tack" ] - }, { - title: "fas fa-ticket-alt", - searchTerms: [ "ticket" ] - }, { - title: "fas fa-times", - searchTerms: [ "close", "exit", "x", "cross" ] - }, { - title: "fas fa-times-circle", - searchTerms: [ "close", "exit", "x" ] - }, { - title: "far fa-times-circle", - searchTerms: [ "close", "exit", "x" ] - }, { - title: "fas fa-tint", - searchTerms: [ "raindrop", "waterdrop", "drop", "droplet" ] - }, { - title: "fas fa-toggle-off", - searchTerms: [ "switch" ] - }, { - title: "fas fa-toggle-on", - searchTerms: [ "switch" ] - }, { - title: "fas fa-trademark", - searchTerms: [] - }, { - title: "fas fa-train", - searchTerms: [] - }, { - title: "fas fa-transgender", - searchTerms: [ "intersex" ] - }, { - title: "fas fa-transgender-alt", - searchTerms: [] - }, { - title: "fas fa-trash", - searchTerms: [ "garbage", "delete", "remove", "hide" ] - }, { - title: "fas fa-trash-alt", - searchTerms: [ "garbage", "delete", "remove", "hide", "trash", "trash-o" ] - }, { - title: "far fa-trash-alt", - searchTerms: [ "garbage", "delete", "remove", "hide", "trash", "trash-o" ] - }, { - title: "fas fa-tree", - searchTerms: [] - }, { - title: "fab fa-trello", - searchTerms: [] - }, { - title: "fab fa-tripadvisor", - searchTerms: [] - }, { - title: "fas fa-trophy", - searchTerms: [ "award", "achievement", "cup", "winner", "game" ] - }, { - title: "fas fa-truck", - searchTerms: [ "shipping" ] - }, { - title: "fas fa-tty", - searchTerms: [] - }, { - title: "fab fa-tumblr", - searchTerms: [] - }, { - title: "fab fa-tumblr-square", - searchTerms: [] - }, { - title: "fas fa-tv", - searchTerms: [ "display", "computer", "monitor", "television" ] - }, { - title: "fab fa-twitch", - searchTerms: [] - }, { - title: "fab fa-twitter", - searchTerms: [ "tweet", "social network" ] - }, { - title: "fab fa-twitter-square", - searchTerms: [ "tweet", "social network" ] - }, { - title: "fab fa-typo3", - searchTerms: [] - }, { - title: "fab fa-uber", - searchTerms: [] - }, { - title: "fab fa-uikit", - searchTerms: [] - }, { - title: "fas fa-umbrella", - searchTerms: [] - }, { - title: "fas fa-underline", - searchTerms: [] - }, { - title: "fas fa-undo", - searchTerms: [ "back" ] - }, { - title: "fas fa-undo-alt", - searchTerms: [ "back" ] - }, { - title: "fab fa-uniregistry", - searchTerms: [] - }, { - title: "fas fa-universal-access", - searchTerms: [] - }, { - title: "fas fa-university", - searchTerms: [ "bank", "institution" ] - }, { - title: "fas fa-unlink", - searchTerms: [ "remove", "chain", "chain-broken" ] - }, { - title: "fas fa-unlock", - searchTerms: [ "protect", "admin", "password", "lock" ] - }, { - title: "fas fa-unlock-alt", - searchTerms: [ "protect", "admin", "password", "lock" ] - }, { - title: "fab fa-untappd", - searchTerms: [] - }, { - title: "fas fa-upload", - searchTerms: [ "import" ] - }, { - title: "fab fa-usb", - searchTerms: [] - }, { - title: "fas fa-user", - searchTerms: [ "person", "man", "head", "profile", "account" ] - }, { - title: "far fa-user", - searchTerms: [ "person", "man", "head", "profile", "account" ] - }, { - title: "fas fa-user-circle", - searchTerms: [ "person", "man", "head", "profile", "account" ] - }, { - title: "far fa-user-circle", - searchTerms: [ "person", "man", "head", "profile", "account" ] - }, { - title: "fas fa-user-md", - searchTerms: [ "doctor", "profile", "medical", "nurse", "job", "occupation" ] - }, { - title: "fas fa-user-plus", - searchTerms: [ "sign up", "signup" ] - }, { - title: "fas fa-user-secret", - searchTerms: [ "whisper", "spy", "incognito", "privacy" ] - }, { - title: "fas fa-user-times", - searchTerms: [] - }, { - title: "fas fa-users", - searchTerms: [ "people", "profiles", "persons" ] - }, { - title: "fab fa-ussunnah", - searchTerms: [] - }, { - title: "fas fa-utensil-spoon", - searchTerms: [ "spoon" ] - }, { - title: "fas fa-utensils", - searchTerms: [ "food", "restaurant", "spoon", "knife", "dinner", "eat", "cutlery" ] - }, { - title: "fab fa-vaadin", - searchTerms: [] - }, { - title: "fas fa-venus", - searchTerms: [ "female" ] - }, { - title: "fas fa-venus-double", - searchTerms: [] - }, { - title: "fas fa-venus-mars", - searchTerms: [] - }, { - title: "fab fa-viacoin", - searchTerms: [] - }, { - title: "fab fa-viadeo", - searchTerms: [] - }, { - title: "fab fa-viadeo-square", - searchTerms: [] - }, { - title: "fab fa-viber", - searchTerms: [] - }, { - title: "fas fa-video", - searchTerms: [ "film", "movie", "record", "camera", "video-camera" ] - }, { - title: "fab fa-vimeo", - searchTerms: [] - }, { - title: "fab fa-vimeo-square", - searchTerms: [] - }, { - title: "fab fa-vimeo-v", - searchTerms: [ "vimeo" ] - }, { - title: "fab fa-vine", - searchTerms: [] - }, { - title: "fab fa-vk", - searchTerms: [] - }, { - title: "fab fa-vnv", - searchTerms: [] - }, { - title: "fas fa-volleyball-ball", - searchTerms: [] - }, { - title: "fas fa-volume-down", - searchTerms: [ "audio", "lower", "quieter", "sound", "music" ] - }, { - title: "fas fa-volume-off", - searchTerms: [ "audio", "mute", "sound", "music" ] - }, { - title: "fas fa-volume-up", - searchTerms: [ "audio", "higher", "louder", "sound", "music" ] - }, { - title: "fab fa-vuejs", - searchTerms: [] - }, { - title: "fas fa-warehouse", - searchTerms: [] - }, { - title: "fab fa-weibo", - searchTerms: [] - }, { - title: "fas fa-weight", - searchTerms: [ "scale" ] - }, { - title: "fab fa-weixin", - searchTerms: [] - }, { - title: "fab fa-whatsapp", - searchTerms: [] - }, { - title: "fab fa-whatsapp-square", - searchTerms: [] - }, { - title: "fas fa-wheelchair", - searchTerms: [ "handicap", "person" ] - }, { - title: "fab fa-whmcs", - searchTerms: [] - }, { - title: "fas fa-wifi", - searchTerms: [] - }, { - title: "fab fa-wikipedia-w", - searchTerms: [] - }, { - title: "fas fa-window-close", - searchTerms: [] - }, { - title: "far fa-window-close", - searchTerms: [] - }, { - title: "fas fa-window-maximize", - searchTerms: [] - }, { - title: "far fa-window-maximize", - searchTerms: [] - }, { - title: "fas fa-window-minimize", - searchTerms: [] - }, { - title: "far fa-window-minimize", - searchTerms: [] - }, { - title: "fas fa-window-restore", - searchTerms: [] - }, { - title: "far fa-window-restore", - searchTerms: [] - }, { - title: "fab fa-windows", - searchTerms: [ "microsoft" ] - }, { - title: "fas fa-won-sign", - searchTerms: [ "krw", "krw" ] - }, { - title: "fab fa-wordpress", - searchTerms: [] - }, { - title: "fab fa-wordpress-simple", - searchTerms: [] - }, { - title: "fab fa-wpbeginner", - searchTerms: [] - }, { - title: "fab fa-wpexplorer", - searchTerms: [] - }, { - title: "fab fa-wpforms", - searchTerms: [] - }, { - title: "fas fa-wrench", - searchTerms: [ "settings", "fix", "update", "spanner", "tool" ] - }, { - title: "fab fa-xbox", - searchTerms: [] - }, { - title: "fab fa-xing", - searchTerms: [] - }, { - title: "fab fa-xing-square", - searchTerms: [] - }, { - title: "fab fa-y-combinator", - searchTerms: [] - }, { - title: "fab fa-yahoo", - searchTerms: [] - }, { - title: "fab fa-yandex", - searchTerms: [] - }, { - title: "fab fa-yandex-international", - searchTerms: [] - }, { - title: "fab fa-yelp", - searchTerms: [] - }, { - title: "fas fa-yen-sign", - searchTerms: [ "jpy", "jpy" ] - }, { - title: "fab fa-yoast", - searchTerms: [] - }, { - title: "fab fa-youtube", - searchTerms: [ "video", "film", "youtube-play", "youtube-square" ] - }, { - title: "fab fa-youtube-square", - searchTerms: [] - } ] + icons: + [{"title":"fab fa-500px","searchTerms":[]},{"title":"fab fa-accessible-icon","searchTerms":["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{"title":"fab fa-accusoft","searchTerms":[]},{"title":"fab fa-acquisitions-incorporated","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-ad","searchTerms":["advertisement","media","newspaper","promotion","publicity"]},{"title":"fas fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"far fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"fas fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile"]},{"title":"far fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile"]},{"title":"fas fa-adjust","searchTerms":["contrast","dark","light","saturation"]},{"title":"fab fa-adn","searchTerms":[]},{"title":"fab fa-adversal","searchTerms":[]},{"title":"fab fa-affiliatetheme","searchTerms":[]},{"title":"fas fa-air-freshener","searchTerms":["car","deodorize","fresh","pine","scent"]},{"title":"fab fa-airbnb","searchTerms":[]},{"title":"fab fa-algolia","searchTerms":[]},{"title":"fas fa-align-center","searchTerms":["format","middle","paragraph","text"]},{"title":"fas fa-align-justify","searchTerms":["format","paragraph","text"]},{"title":"fas fa-align-left","searchTerms":["format","paragraph","text"]},{"title":"fas fa-align-right","searchTerms":["format","paragraph","text"]},{"title":"fab fa-alipay","searchTerms":[]},{"title":"fas fa-allergies","searchTerms":["allergy","freckles","hand","hives","pox","skin","spots"]},{"title":"fab fa-amazon","searchTerms":[]},{"title":"fab fa-amazon-pay","searchTerms":[]},{"title":"fas fa-ambulance","searchTerms":["covid-19","emergency","emt","er","help","hospital","support","vehicle"]},{"title":"fas fa-american-sign-language-interpreting","searchTerms":["asl","deaf","finger","hand","interpret","speak"]},{"title":"fab fa-amilia","searchTerms":[]},{"title":"fas fa-anchor","searchTerms":["berth","boat","dock","embed","link","maritime","moor","secure"]},{"title":"fab fa-android","searchTerms":["robot"]},{"title":"fab fa-angellist","searchTerms":[]},{"title":"fas fa-angle-double-down","searchTerms":["arrows","caret","download","expand"]},{"title":"fas fa-angle-double-left","searchTerms":["arrows","back","caret","laquo","previous","quote"]},{"title":"fas fa-angle-double-right","searchTerms":["arrows","caret","forward","more","next","quote","raquo"]},{"title":"fas fa-angle-double-up","searchTerms":["arrows","caret","collapse","upload"]},{"title":"fas fa-angle-down","searchTerms":["arrow","caret","download","expand"]},{"title":"fas fa-angle-left","searchTerms":["arrow","back","caret","less","previous"]},{"title":"fas fa-angle-right","searchTerms":["arrow","care","forward","more","next"]},{"title":"fas fa-angle-up","searchTerms":["arrow","caret","collapse","upload"]},{"title":"fas fa-angry","searchTerms":["disapprove","emoticon","face","mad","upset"]},{"title":"far fa-angry","searchTerms":["disapprove","emoticon","face","mad","upset"]},{"title":"fab fa-angrycreative","searchTerms":[]},{"title":"fab fa-angular","searchTerms":[]},{"title":"fas fa-ankh","searchTerms":["amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{"title":"fab fa-app-store","searchTerms":[]},{"title":"fab fa-app-store-ios","searchTerms":[]},{"title":"fab fa-apper","searchTerms":[]},{"title":"fab fa-apple","searchTerms":["fruit","ios","mac","operating system","os","osx"]},{"title":"fas fa-apple-alt","searchTerms":["fall","fruit","fuji","macintosh","orchard","seasonal","vegan"]},{"title":"fab fa-apple-pay","searchTerms":[]},{"title":"fas fa-archive","searchTerms":["box","package","save","storage"]},{"title":"fas fa-archway","searchTerms":["arc","monument","road","street","tunnel"]},{"title":"fas fa-arrow-alt-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"far fa-arrow-alt-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"fas fa-arrow-alt-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"far fa-arrow-alt-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"fas fa-arrow-alt-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"far fa-arrow-alt-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"fas fa-arrow-alt-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"far fa-arrow-alt-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"fas fa-arrow-circle-down","searchTerms":["download"]},{"title":"fas fa-arrow-circle-left","searchTerms":["back","previous"]},{"title":"fas fa-arrow-circle-right","searchTerms":["forward","next"]},{"title":"fas fa-arrow-circle-up","searchTerms":["upload"]},{"title":"fas fa-arrow-down","searchTerms":["download"]},{"title":"fas fa-arrow-left","searchTerms":["back","previous"]},{"title":"fas fa-arrow-right","searchTerms":["forward","next"]},{"title":"fas fa-arrow-up","searchTerms":["forward","upload"]},{"title":"fas fa-arrows-alt","searchTerms":["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{"title":"fas fa-arrows-alt-h","searchTerms":["arrows-h","expand","horizontal","landscape","resize","wide"]},{"title":"fas fa-arrows-alt-v","searchTerms":["arrows-v","expand","portrait","resize","tall","vertical"]},{"title":"fab fa-artstation","searchTerms":[]},{"title":"fas fa-assistive-listening-systems","searchTerms":["amplify","audio","deaf","ear","headset","hearing","sound"]},{"title":"fas fa-asterisk","searchTerms":["annotation","details","reference","star"]},{"title":"fab fa-asymmetrik","searchTerms":[]},{"title":"fas fa-at","searchTerms":["address","author","e-mail","email","handle"]},{"title":"fas fa-atlas","searchTerms":["book","directions","geography","globe","map","travel","wayfinding"]},{"title":"fab fa-atlassian","searchTerms":[]},{"title":"fas fa-atom","searchTerms":["atheism","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{"title":"fab fa-audible","searchTerms":[]},{"title":"fas fa-audio-description","searchTerms":["blind","narration","video","visual"]},{"title":"fab fa-autoprefixer","searchTerms":[]},{"title":"fab fa-avianex","searchTerms":[]},{"title":"fab fa-aviato","searchTerms":[]},{"title":"fas fa-award","searchTerms":["honor","praise","prize","recognition","ribbon","trophy"]},{"title":"fab fa-aws","searchTerms":[]},{"title":"fas fa-baby","searchTerms":["child","diaper","doll","human","infant","kid","offspring","person","sprout"]},{"title":"fas fa-baby-carriage","searchTerms":["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{"title":"fas fa-backspace","searchTerms":["command","delete","erase","keyboard","undo"]},{"title":"fas fa-backward","searchTerms":["previous","rewind"]},{"title":"fas fa-bacon","searchTerms":["blt","breakfast","ham","lard","meat","pancetta","pork","rasher"]},{"title":"fas fa-bacteria","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fas fa-bacterium","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fas fa-bahai","searchTerms":["bahai","bah\u00e1'\u00ed","star"]},{"title":"fas fa-balance-scale","searchTerms":["balanced","justice","legal","measure","weight"]},{"title":"fas fa-balance-scale-left","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fas fa-balance-scale-right","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fas fa-ban","searchTerms":["abort","ban","block","cancel","delete","hide","prohibit","remove","stop","trash"]},{"title":"fas fa-band-aid","searchTerms":["bandage","boo boo","first aid","ouch"]},{"title":"fab fa-bandcamp","searchTerms":[]},{"title":"fas fa-barcode","searchTerms":["info","laser","price","scan","upc"]},{"title":"fas fa-bars","searchTerms":["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{"title":"fas fa-baseball-ball","searchTerms":["foul","hardball","league","leather","mlb","softball","sport"]},{"title":"fas fa-basketball-ball","searchTerms":["dribble","dunk","hoop","nba"]},{"title":"fas fa-bath","searchTerms":["clean","shower","tub","wash"]},{"title":"fas fa-battery-empty","searchTerms":["charge","dead","power","status"]},{"title":"fas fa-battery-full","searchTerms":["charge","power","status"]},{"title":"fas fa-battery-half","searchTerms":["charge","power","status"]},{"title":"fas fa-battery-quarter","searchTerms":["charge","low","power","status"]},{"title":"fas fa-battery-three-quarters","searchTerms":["charge","power","status"]},{"title":"fab fa-battle-net","searchTerms":[]},{"title":"fas fa-bed","searchTerms":["lodging","mattress","rest","sleep","travel"]},{"title":"fas fa-beer","searchTerms":["alcohol","ale","bar","beverage","brewery","drink","lager","liquor","mug","stein"]},{"title":"fab fa-behance","searchTerms":[]},{"title":"fab fa-behance-square","searchTerms":[]},{"title":"fas fa-bell","searchTerms":["alarm","alert","chime","notification","reminder"]},{"title":"far fa-bell","searchTerms":["alarm","alert","chime","notification","reminder"]},{"title":"fas fa-bell-slash","searchTerms":["alert","cancel","disabled","notification","off","reminder"]},{"title":"far fa-bell-slash","searchTerms":["alert","cancel","disabled","notification","off","reminder"]},{"title":"fas fa-bezier-curve","searchTerms":["curves","illustrator","lines","path","vector"]},{"title":"fas fa-bible","searchTerms":["book","catholicism","christianity","god","holy"]},{"title":"fas fa-bicycle","searchTerms":["bike","gears","pedal","transportation","vehicle"]},{"title":"fas fa-biking","searchTerms":["bicycle","bike","cycle","cycling","ride","wheel"]},{"title":"fab fa-bimobject","searchTerms":[]},{"title":"fas fa-binoculars","searchTerms":["glasses","magnify","scenic","spyglass","view"]},{"title":"fas fa-biohazard","searchTerms":["covid-19","danger","dangerous","hazmat","medical","radioactive","toxic","waste","zombie"]},{"title":"fas fa-birthday-cake","searchTerms":["anniversary","bakery","candles","celebration","dessert","frosting","holiday","party","pastry"]},{"title":"fab fa-bitbucket","searchTerms":["atlassian","bitbucket-square","git"]},{"title":"fab fa-bitcoin","searchTerms":[]},{"title":"fab fa-bity","searchTerms":[]},{"title":"fab fa-black-tie","searchTerms":[]},{"title":"fab fa-blackberry","searchTerms":[]},{"title":"fas fa-blender","searchTerms":["cocktail","milkshake","mixer","puree","smoothie"]},{"title":"fas fa-blender-phone","searchTerms":["appliance","cocktail","communication","fantasy","milkshake","mixer","puree","silly","smoothie"]},{"title":"fas fa-blind","searchTerms":["cane","disability","person","sight"]},{"title":"fas fa-blog","searchTerms":["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{"title":"fab fa-blogger","searchTerms":[]},{"title":"fab fa-blogger-b","searchTerms":[]},{"title":"fab fa-bluetooth","searchTerms":[]},{"title":"fab fa-bluetooth-b","searchTerms":[]},{"title":"fas fa-bold","searchTerms":["emphasis","format","text"]},{"title":"fas fa-bolt","searchTerms":["electricity","lightning","weather","zap"]},{"title":"fas fa-bomb","searchTerms":["error","explode","fuse","grenade","warning"]},{"title":"fas fa-bone","searchTerms":["calcium","dog","skeletal","skeleton","tibia"]},{"title":"fas fa-bong","searchTerms":["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{"title":"fas fa-book","searchTerms":["diary","documentation","journal","library","read"]},{"title":"fas fa-book-dead","searchTerms":["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","necronomicon","read","skull","spell"]},{"title":"fas fa-book-medical","searchTerms":["diary","documentation","health","history","journal","library","read","record"]},{"title":"fas fa-book-open","searchTerms":["flyer","library","notebook","open book","pamphlet","reading"]},{"title":"fas fa-book-reader","searchTerms":["flyer","library","notebook","open book","pamphlet","reading"]},{"title":"fas fa-bookmark","searchTerms":["favorite","marker","read","remember","save"]},{"title":"far fa-bookmark","searchTerms":["favorite","marker","read","remember","save"]},{"title":"fab fa-bootstrap","searchTerms":[]},{"title":"fas fa-border-all","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fas fa-border-none","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fas fa-border-style","searchTerms":[]},{"title":"fas fa-bowling-ball","searchTerms":["alley","candlepin","gutter","lane","strike","tenpin"]},{"title":"fas fa-box","searchTerms":["archive","container","package","storage"]},{"title":"fas fa-box-open","searchTerms":["archive","container","package","storage","unpack"]},{"title":"fas fa-box-tissue","searchTerms":["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{"title":"fas fa-boxes","searchTerms":["archives","inventory","storage","warehouse"]},{"title":"fas fa-braille","searchTerms":["alphabet","blind","dots","raised","vision"]},{"title":"fas fa-brain","searchTerms":["cerebellum","gray matter","intellect","medulla oblongata","mind","noodle","wit"]},{"title":"fas fa-bread-slice","searchTerms":["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{"title":"fas fa-briefcase","searchTerms":["bag","business","luggage","office","work"]},{"title":"fas fa-briefcase-medical","searchTerms":["doctor","emt","first aid","health"]},{"title":"fas fa-broadcast-tower","searchTerms":["airwaves","antenna","radio","reception","waves"]},{"title":"fas fa-broom","searchTerms":["clean","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","witch"]},{"title":"fas fa-brush","searchTerms":["art","bristles","color","handle","paint"]},{"title":"fab fa-btc","searchTerms":[]},{"title":"fab fa-buffer","searchTerms":[]},{"title":"fas fa-bug","searchTerms":["beetle","error","insect","report"]},{"title":"fas fa-building","searchTerms":["apartment","business","city","company","office","work"]},{"title":"far fa-building","searchTerms":["apartment","business","city","company","office","work"]},{"title":"fas fa-bullhorn","searchTerms":["announcement","broadcast","louder","megaphone","share"]},{"title":"fas fa-bullseye","searchTerms":["archery","goal","objective","target"]},{"title":"fas fa-burn","searchTerms":["caliente","energy","fire","flame","gas","heat","hot"]},{"title":"fab fa-buromobelexperte","searchTerms":[]},{"title":"fas fa-bus","searchTerms":["public transportation","transportation","travel","vehicle"]},{"title":"fas fa-bus-alt","searchTerms":["mta","public transportation","transportation","travel","vehicle"]},{"title":"fas fa-business-time","searchTerms":["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{"title":"fab fa-buy-n-large","searchTerms":[]},{"title":"fab fa-buysellads","searchTerms":[]},{"title":"fas fa-calculator","searchTerms":["abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{"title":"fas fa-calendar","searchTerms":["calendar-o","date","event","schedule","time","when"]},{"title":"far fa-calendar","searchTerms":["calendar-o","date","event","schedule","time","when"]},{"title":"fas fa-calendar-alt","searchTerms":["calendar","date","event","schedule","time","when"]},{"title":"far fa-calendar-alt","searchTerms":["calendar","date","event","schedule","time","when"]},{"title":"fas fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{"title":"far fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{"title":"fas fa-calendar-day","searchTerms":["date","detail","event","focus","schedule","single day","time","today","when"]},{"title":"fas fa-calendar-minus","searchTerms":["calendar","date","delete","event","negative","remove","schedule","time","when"]},{"title":"far fa-calendar-minus","searchTerms":["calendar","date","delete","event","negative","remove","schedule","time","when"]},{"title":"fas fa-calendar-plus","searchTerms":["add","calendar","create","date","event","new","positive","schedule","time","when"]},{"title":"far fa-calendar-plus","searchTerms":["add","calendar","create","date","event","new","positive","schedule","time","when"]},{"title":"fas fa-calendar-times","searchTerms":["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{"title":"far fa-calendar-times","searchTerms":["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{"title":"fas fa-calendar-week","searchTerms":["date","detail","event","focus","schedule","single week","time","today","when"]},{"title":"fas fa-camera","searchTerms":["image","lens","photo","picture","record","shutter","video"]},{"title":"fas fa-camera-retro","searchTerms":["image","lens","photo","picture","record","shutter","video"]},{"title":"fas fa-campground","searchTerms":["camping","fall","outdoors","teepee","tent","tipi"]},{"title":"fab fa-canadian-maple-leaf","searchTerms":["canada","flag","flora","nature","plant"]},{"title":"fas fa-candy-cane","searchTerms":["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{"title":"fas fa-cannabis","searchTerms":["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{"title":"fas fa-capsules","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fas fa-car","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-car-alt","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-car-battery","searchTerms":["auto","electric","mechanic","power"]},{"title":"fas fa-car-crash","searchTerms":["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{"title":"fas fa-car-side","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-caravan","searchTerms":["camper","motor home","rv","trailer","travel"]},{"title":"fas fa-caret-down","searchTerms":["arrow","dropdown","expand","menu","more","triangle"]},{"title":"fas fa-caret-left","searchTerms":["arrow","back","previous","triangle"]},{"title":"fas fa-caret-right","searchTerms":["arrow","forward","next","triangle"]},{"title":"fas fa-caret-square-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"far fa-caret-square-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"fas fa-caret-square-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"far fa-caret-square-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"fas fa-caret-square-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"far fa-caret-square-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"fas fa-caret-square-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"far fa-caret-square-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"fas fa-caret-up","searchTerms":["arrow","collapse","triangle"]},{"title":"fas fa-carrot","searchTerms":["bugs bunny","orange","vegan","vegetable"]},{"title":"fas fa-cart-arrow-down","searchTerms":["download","save","shopping"]},{"title":"fas fa-cart-plus","searchTerms":["add","create","new","positive","shopping"]},{"title":"fas fa-cash-register","searchTerms":["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{"title":"fas fa-cat","searchTerms":["feline","halloween","holiday","kitten","kitty","meow","pet"]},{"title":"fab fa-cc-amazon-pay","searchTerms":[]},{"title":"fab fa-cc-amex","searchTerms":["amex"]},{"title":"fab fa-cc-apple-pay","searchTerms":[]},{"title":"fab fa-cc-diners-club","searchTerms":[]},{"title":"fab fa-cc-discover","searchTerms":[]},{"title":"fab fa-cc-jcb","searchTerms":[]},{"title":"fab fa-cc-mastercard","searchTerms":[]},{"title":"fab fa-cc-paypal","searchTerms":[]},{"title":"fab fa-cc-stripe","searchTerms":[]},{"title":"fab fa-cc-visa","searchTerms":[]},{"title":"fab fa-centercode","searchTerms":[]},{"title":"fab fa-centos","searchTerms":["linux","operating system","os"]},{"title":"fas fa-certificate","searchTerms":["badge","star","verified"]},{"title":"fas fa-chair","searchTerms":["furniture","seat","sit"]},{"title":"fas fa-chalkboard","searchTerms":["blackboard","learning","school","teaching","whiteboard","writing"]},{"title":"fas fa-chalkboard-teacher","searchTerms":["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{"title":"fas fa-charging-station","searchTerms":["electric","ev","tesla","vehicle"]},{"title":"fas fa-chart-area","searchTerms":["analytics","area","chart","graph"]},{"title":"fas fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"far fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"fas fa-chart-line","searchTerms":["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{"title":"fas fa-chart-pie","searchTerms":["analytics","chart","diagram","graph","pie"]},{"title":"fas fa-check","searchTerms":["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo","yes"]},{"title":"fas fa-check-circle","searchTerms":["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"far fa-check-circle","searchTerms":["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-check-double","searchTerms":["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{"title":"fas fa-check-square","searchTerms":["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"far fa-check-square","searchTerms":["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-cheese","searchTerms":["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{"title":"fas fa-chess","searchTerms":["board","castle","checkmate","game","king","rook","strategy","tournament"]},{"title":"fas fa-chess-bishop","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-board","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-king","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-knight","searchTerms":["board","checkmate","game","horse","strategy"]},{"title":"fas fa-chess-pawn","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-queen","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-rook","searchTerms":["board","castle","checkmate","game","strategy"]},{"title":"fas fa-chevron-circle-down","searchTerms":["arrow","download","dropdown","menu","more"]},{"title":"fas fa-chevron-circle-left","searchTerms":["arrow","back","previous"]},{"title":"fas fa-chevron-circle-right","searchTerms":["arrow","forward","next"]},{"title":"fas fa-chevron-circle-up","searchTerms":["arrow","collapse","upload"]},{"title":"fas fa-chevron-down","searchTerms":["arrow","download","expand"]},{"title":"fas fa-chevron-left","searchTerms":["arrow","back","bracket","previous"]},{"title":"fas fa-chevron-right","searchTerms":["arrow","bracket","forward","next"]},{"title":"fas fa-chevron-up","searchTerms":["arrow","collapse","upload"]},{"title":"fas fa-child","searchTerms":["boy","girl","kid","toddler","young"]},{"title":"fab fa-chrome","searchTerms":["browser"]},{"title":"fab fa-chromecast","searchTerms":[]},{"title":"fas fa-church","searchTerms":["building","cathedral","chapel","community","religion"]},{"title":"fas fa-circle","searchTerms":["circle-thin","diameter","dot","ellipse","notification","round"]},{"title":"far fa-circle","searchTerms":["circle-thin","diameter","dot","ellipse","notification","round"]},{"title":"fas fa-circle-notch","searchTerms":["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{"title":"fas fa-city","searchTerms":["buildings","busy","skyscrapers","urban","windows"]},{"title":"fas fa-clinic-medical","searchTerms":["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{"title":"fas fa-clipboard","searchTerms":["copy","notes","paste","record"]},{"title":"far fa-clipboard","searchTerms":["copy","notes","paste","record"]},{"title":"fas fa-clipboard-check","searchTerms":["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-clipboard-list","searchTerms":["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{"title":"fas fa-clock","searchTerms":["date","late","schedule","time","timer","timestamp","watch"]},{"title":"far fa-clock","searchTerms":["date","late","schedule","time","timer","timestamp","watch"]},{"title":"fas fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"far fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"fas fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"far fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"fas fa-cloud","searchTerms":["atmosphere","fog","overcast","save","upload","weather"]},{"title":"fas fa-cloud-download-alt","searchTerms":["download","export","save"]},{"title":"fas fa-cloud-meatball","searchTerms":["FLDSMDFR","food","spaghetti","storm"]},{"title":"fas fa-cloud-moon","searchTerms":["crescent","evening","lunar","night","partly cloudy","sky"]},{"title":"fas fa-cloud-moon-rain","searchTerms":["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-rain","searchTerms":["precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-showers-heavy","searchTerms":["precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-sun","searchTerms":["clear","day","daytime","fall","outdoors","overcast","partly cloudy"]},{"title":"fas fa-cloud-sun-rain","searchTerms":["day","overcast","precipitation","storm","summer","sunshower"]},{"title":"fas fa-cloud-upload-alt","searchTerms":["cloud-upload","import","save","upload"]},{"title":"fab fa-cloudflare","searchTerms":[]},{"title":"fab fa-cloudscale","searchTerms":[]},{"title":"fab fa-cloudsmith","searchTerms":[]},{"title":"fab fa-cloudversify","searchTerms":[]},{"title":"fas fa-cocktail","searchTerms":["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{"title":"fas fa-code","searchTerms":["brackets","code","development","html"]},{"title":"fas fa-code-branch","searchTerms":["branch","code-fork","fork","git","github","rebase","svn","vcs","version"]},{"title":"fab fa-codepen","searchTerms":[]},{"title":"fab fa-codiepie","searchTerms":[]},{"title":"fas fa-coffee","searchTerms":["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{"title":"fas fa-cog","searchTerms":["gear","mechanical","settings","sprocket","wheel"]},{"title":"fas fa-cogs","searchTerms":["gears","mechanical","settings","sprocket","wheel"]},{"title":"fas fa-coins","searchTerms":["currency","dime","financial","gold","money","penny"]},{"title":"fas fa-columns","searchTerms":["browser","dashboard","organize","panes","split"]},{"title":"fas fa-comment","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comment","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comment-alt","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comment-alt","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comment-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fas fa-comment-dots","searchTerms":["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{"title":"far fa-comment-dots","searchTerms":["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{"title":"fas fa-comment-medical","searchTerms":["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{"title":"fas fa-comment-slash","searchTerms":["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{"title":"fas fa-comments","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comments","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comments-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fas fa-compact-disc","searchTerms":["album","bluray","cd","disc","dvd","media","movie","music","record","video","vinyl"]},{"title":"fas fa-compass","searchTerms":["directions","directory","location","menu","navigation","safari","travel"]},{"title":"far fa-compass","searchTerms":["directions","directory","location","menu","navigation","safari","travel"]},{"title":"fas fa-compress","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-compress-alt","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-compress-arrows-alt","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-concierge-bell","searchTerms":["attention","hotel","receptionist","service","support"]},{"title":"fab fa-confluence","searchTerms":["atlassian"]},{"title":"fab fa-connectdevelop","searchTerms":[]},{"title":"fab fa-contao","searchTerms":[]},{"title":"fas fa-cookie","searchTerms":["baked good","chips","chocolate","eat","snack","sweet","treat"]},{"title":"fas fa-cookie-bite","searchTerms":["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{"title":"fas fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"far fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"fas fa-copyright","searchTerms":["brand","mark","register","trademark"]},{"title":"far fa-copyright","searchTerms":["brand","mark","register","trademark"]},{"title":"fab fa-cotton-bureau","searchTerms":["clothing","t-shirts","tshirts"]},{"title":"fas fa-couch","searchTerms":["chair","cushion","furniture","relax","sofa"]},{"title":"fab fa-cpanel","searchTerms":[]},{"title":"fab fa-creative-commons","searchTerms":[]},{"title":"fab fa-creative-commons-by","searchTerms":[]},{"title":"fab fa-creative-commons-nc","searchTerms":[]},{"title":"fab fa-creative-commons-nc-eu","searchTerms":[]},{"title":"fab fa-creative-commons-nc-jp","searchTerms":[]},{"title":"fab fa-creative-commons-nd","searchTerms":[]},{"title":"fab fa-creative-commons-pd","searchTerms":[]},{"title":"fab fa-creative-commons-pd-alt","searchTerms":[]},{"title":"fab fa-creative-commons-remix","searchTerms":[]},{"title":"fab fa-creative-commons-sa","searchTerms":[]},{"title":"fab fa-creative-commons-sampling","searchTerms":[]},{"title":"fab fa-creative-commons-sampling-plus","searchTerms":[]},{"title":"fab fa-creative-commons-share","searchTerms":[]},{"title":"fab fa-creative-commons-zero","searchTerms":[]},{"title":"fas fa-credit-card","searchTerms":["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{"title":"far fa-credit-card","searchTerms":["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{"title":"fab fa-critical-role","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-crop","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fas fa-crop-alt","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fas fa-cross","searchTerms":["catholicism","christianity","church","jesus"]},{"title":"fas fa-crosshairs","searchTerms":["aim","bullseye","gpd","picker","position"]},{"title":"fas fa-crow","searchTerms":["bird","bullfrog","fauna","halloween","holiday","toad"]},{"title":"fas fa-crown","searchTerms":["award","favorite","king","queen","royal","tiara"]},{"title":"fas fa-crutch","searchTerms":["cane","injury","mobility","wheelchair"]},{"title":"fab fa-css3","searchTerms":["code"]},{"title":"fab fa-css3-alt","searchTerms":[]},{"title":"fas fa-cube","searchTerms":["3d","block","dice","package","square","tesseract"]},{"title":"fas fa-cubes","searchTerms":["3d","block","dice","package","pyramid","square","stack","tesseract"]},{"title":"fas fa-cut","searchTerms":["clip","scissors","snip"]},{"title":"fab fa-cuttlefish","searchTerms":[]},{"title":"fab fa-d-and-d","searchTerms":[]},{"title":"fab fa-d-and-d-beyond","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{"title":"fab fa-dailymotion","searchTerms":[]},{"title":"fab fa-dashcube","searchTerms":[]},{"title":"fas fa-database","searchTerms":["computer","development","directory","memory","storage"]},{"title":"fas fa-deaf","searchTerms":["ear","hearing","sign language"]},{"title":"fab fa-deezer","searchTerms":[]},{"title":"fab fa-delicious","searchTerms":[]},{"title":"fas fa-democrat","searchTerms":["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{"title":"fab fa-deploydog","searchTerms":[]},{"title":"fab fa-deskpro","searchTerms":[]},{"title":"fas fa-desktop","searchTerms":["computer","cpu","demo","desktop","device","imac","machine","monitor","pc","screen"]},{"title":"fab fa-dev","searchTerms":[]},{"title":"fab fa-deviantart","searchTerms":[]},{"title":"fas fa-dharmachakra","searchTerms":["buddhism","buddhist","wheel of dharma"]},{"title":"fab fa-dhl","searchTerms":["Dalsey","Hillblom and Lynn","german","package","shipping"]},{"title":"fas fa-diagnoses","searchTerms":["analyze","detect","diagnosis","examine","medicine"]},{"title":"fab fa-diaspora","searchTerms":[]},{"title":"fas fa-dice","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-d20","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fas fa-dice-d6","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fas fa-dice-five","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-four","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-one","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-six","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-three","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-two","searchTerms":["chance","gambling","game","roll"]},{"title":"fab fa-digg","searchTerms":[]},{"title":"fab fa-digital-ocean","searchTerms":[]},{"title":"fas fa-digital-tachograph","searchTerms":["data","distance","speed","tachometer"]},{"title":"fas fa-directions","searchTerms":["map","navigation","sign","turn"]},{"title":"fab fa-discord","searchTerms":[]},{"title":"fab fa-discourse","searchTerms":[]},{"title":"fas fa-disease","searchTerms":["bacteria","cancer","covid-19","illness","infection","sickness","virus"]},{"title":"fas fa-divide","searchTerms":["arithmetic","calculus","division","math"]},{"title":"fas fa-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"far fa-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"fas fa-dna","searchTerms":["double helix","genetic","helix","molecule","protein"]},{"title":"fab fa-dochub","searchTerms":[]},{"title":"fab fa-docker","searchTerms":[]},{"title":"fas fa-dog","searchTerms":["animal","canine","fauna","mammal","pet","pooch","puppy","woof"]},{"title":"fas fa-dollar-sign","searchTerms":["$","cost","dollar-sign","money","price","usd"]},{"title":"fas fa-dolly","searchTerms":["carry","shipping","transport"]},{"title":"fas fa-dolly-flatbed","searchTerms":["carry","inventory","shipping","transport"]},{"title":"fas fa-donate","searchTerms":["contribute","generosity","gift","give"]},{"title":"fas fa-door-closed","searchTerms":["enter","exit","locked"]},{"title":"fas fa-door-open","searchTerms":["enter","exit","welcome"]},{"title":"fas fa-dot-circle","searchTerms":["bullseye","notification","target"]},{"title":"far fa-dot-circle","searchTerms":["bullseye","notification","target"]},{"title":"fas fa-dove","searchTerms":["bird","fauna","flying","peace","war"]},{"title":"fas fa-download","searchTerms":["export","hard drive","save","transfer"]},{"title":"fab fa-draft2digital","searchTerms":[]},{"title":"fas fa-drafting-compass","searchTerms":["design","map","mechanical drawing","plot","plotting"]},{"title":"fas fa-dragon","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","fire","lizard","serpent"]},{"title":"fas fa-draw-polygon","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fab fa-dribbble","searchTerms":[]},{"title":"fab fa-dribbble-square","searchTerms":[]},{"title":"fab fa-dropbox","searchTerms":[]},{"title":"fas fa-drum","searchTerms":["instrument","music","percussion","snare","sound"]},{"title":"fas fa-drum-steelpan","searchTerms":["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{"title":"fas fa-drumstick-bite","searchTerms":["bone","chicken","leg","meat","poultry","turkey"]},{"title":"fab fa-drupal","searchTerms":[]},{"title":"fas fa-dumbbell","searchTerms":["exercise","gym","strength","weight","weight-lifting"]},{"title":"fas fa-dumpster","searchTerms":["alley","bin","commercial","trash","waste"]},{"title":"fas fa-dumpster-fire","searchTerms":["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{"title":"fas fa-dungeon","searchTerms":["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{"title":"fab fa-dyalog","searchTerms":[]},{"title":"fab fa-earlybirds","searchTerms":[]},{"title":"fab fa-ebay","searchTerms":[]},{"title":"fab fa-edge","searchTerms":["browser","ie"]},{"title":"fab fa-edge-legacy","searchTerms":[]},{"title":"fas fa-edit","searchTerms":["edit","pen","pencil","update","write"]},{"title":"far fa-edit","searchTerms":["edit","pen","pencil","update","write"]},{"title":"fas fa-egg","searchTerms":["breakfast","chicken","easter","shell","yolk"]},{"title":"fas fa-eject","searchTerms":["abort","cancel","cd","discharge"]},{"title":"fab fa-elementor","searchTerms":[]},{"title":"fas fa-ellipsis-h","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{"title":"fas fa-ellipsis-v","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{"title":"fab fa-ello","searchTerms":[]},{"title":"fab fa-ember","searchTerms":[]},{"title":"fab fa-empire","searchTerms":[]},{"title":"fas fa-envelope","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"far fa-envelope","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"far fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-open-text","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-square","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fab fa-envira","searchTerms":["leaf"]},{"title":"fas fa-equals","searchTerms":["arithmetic","even","match","math"]},{"title":"fas fa-eraser","searchTerms":["art","delete","remove","rubber"]},{"title":"fab fa-erlang","searchTerms":[]},{"title":"fab fa-ethereum","searchTerms":[]},{"title":"fas fa-ethernet","searchTerms":["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{"title":"fab fa-etsy","searchTerms":[]},{"title":"fas fa-euro-sign","searchTerms":["currency","dollar","exchange","money"]},{"title":"fab fa-evernote","searchTerms":[]},{"title":"fas fa-exchange-alt","searchTerms":["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{"title":"fas fa-exclamation","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-exclamation-circle","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-exclamation-triangle","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-expand","searchTerms":["bigger","enlarge","fullscreen","resize"]},{"title":"fas fa-expand-alt","searchTerms":["arrows","bigger","enlarge","fullscreen","resize"]},{"title":"fas fa-expand-arrows-alt","searchTerms":["bigger","enlarge","fullscreen","move","resize"]},{"title":"fab fa-expeditedssl","searchTerms":[]},{"title":"fas fa-external-link-alt","searchTerms":["external-link","new","open","share"]},{"title":"fas fa-external-link-square-alt","searchTerms":["external-link-square","new","open","share"]},{"title":"fas fa-eye","searchTerms":["look","optic","see","seen","show","sight","views","visible"]},{"title":"far fa-eye","searchTerms":["look","optic","see","seen","show","sight","views","visible"]},{"title":"fas fa-eye-dropper","searchTerms":["beaker","clone","color","copy","eyedropper","pipette"]},{"title":"fas fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"far fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"fab fa-facebook","searchTerms":["facebook-official","social network"]},{"title":"fab fa-facebook-f","searchTerms":["facebook"]},{"title":"fab fa-facebook-messenger","searchTerms":[]},{"title":"fab fa-facebook-square","searchTerms":["social network"]},{"title":"fas fa-fan","searchTerms":["ac","air conditioning","blade","blower","cool","hot"]},{"title":"fab fa-fantasy-flight-games","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-fast-backward","searchTerms":["beginning","first","previous","rewind","start"]},{"title":"fas fa-fast-forward","searchTerms":["end","last","next"]},{"title":"fas fa-faucet","searchTerms":["covid-19","drip","house","hygiene","kitchen","sink","water"]},{"title":"fas fa-fax","searchTerms":["business","communicate","copy","facsimile","send"]},{"title":"fas fa-feather","searchTerms":["bird","light","plucked","quill","write"]},{"title":"fas fa-feather-alt","searchTerms":["bird","light","plucked","quill","write"]},{"title":"fab fa-fedex","searchTerms":["Federal Express","package","shipping"]},{"title":"fab fa-fedora","searchTerms":["linux","operating system","os"]},{"title":"fas fa-female","searchTerms":["human","person","profile","user","woman"]},{"title":"fas fa-fighter-jet","searchTerms":["airplane","fast","fly","goose","maverick","plane","quick","top gun","transportation","travel"]},{"title":"fab fa-figma","searchTerms":["app","design","interface"]},{"title":"fas fa-file","searchTerms":["document","new","page","pdf","resume"]},{"title":"far fa-file","searchTerms":["document","new","page","pdf","resume"]},{"title":"fas fa-file-alt","searchTerms":["document","file-text","invoice","new","page","pdf"]},{"title":"far fa-file-alt","searchTerms":["document","file-text","invoice","new","page","pdf"]},{"title":"fas fa-file-archive","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"far fa-file-archive","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"fas fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"far fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"fas fa-file-code","searchTerms":["css","development","document","html"]},{"title":"far fa-file-code","searchTerms":["css","development","document","html"]},{"title":"fas fa-file-contract","searchTerms":["agreement","binding","document","legal","signature"]},{"title":"fas fa-file-csv","searchTerms":["document","excel","numbers","spreadsheets","table"]},{"title":"fas fa-file-download","searchTerms":["document","export","save"]},{"title":"fas fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"far fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"fas fa-file-export","searchTerms":["download","save"]},{"title":"fas fa-file-image","searchTerms":["document","image","jpg","photo","png"]},{"title":"far fa-file-image","searchTerms":["document","image","jpg","photo","png"]},{"title":"fas fa-file-import","searchTerms":["copy","document","send","upload"]},{"title":"fas fa-file-invoice","searchTerms":["account","bill","charge","document","payment","receipt"]},{"title":"fas fa-file-invoice-dollar","searchTerms":["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{"title":"fas fa-file-medical","searchTerms":["document","health","history","prescription","record"]},{"title":"fas fa-file-medical-alt","searchTerms":["document","health","history","prescription","record"]},{"title":"fas fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"far fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"fas fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"far fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"fas fa-file-prescription","searchTerms":["document","drugs","medical","medicine","rx"]},{"title":"fas fa-file-signature","searchTerms":["John Hancock","contract","document","name"]},{"title":"fas fa-file-upload","searchTerms":["document","import","page","save"]},{"title":"fas fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"far fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"fas fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"far fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"fas fa-fill","searchTerms":["bucket","color","paint","paint bucket"]},{"title":"fas fa-fill-drip","searchTerms":["bucket","color","drop","paint","paint bucket","spill"]},{"title":"fas fa-film","searchTerms":["cinema","movie","strip","video"]},{"title":"fas fa-filter","searchTerms":["funnel","options","separate","sort"]},{"title":"fas fa-fingerprint","searchTerms":["human","id","identification","lock","smudge","touch","unique","unlock"]},{"title":"fas fa-fire","searchTerms":["burn","caliente","flame","heat","hot","popular"]},{"title":"fas fa-fire-alt","searchTerms":["burn","caliente","flame","heat","hot","popular"]},{"title":"fas fa-fire-extinguisher","searchTerms":["burn","caliente","fire fighter","flame","heat","hot","rescue"]},{"title":"fab fa-firefox","searchTerms":["browser"]},{"title":"fab fa-firefox-browser","searchTerms":["browser"]},{"title":"fas fa-first-aid","searchTerms":["emergency","emt","health","medical","rescue"]},{"title":"fab fa-first-order","searchTerms":[]},{"title":"fab fa-first-order-alt","searchTerms":[]},{"title":"fab fa-firstdraft","searchTerms":[]},{"title":"fas fa-fish","searchTerms":["fauna","gold","seafood","swimming"]},{"title":"fas fa-fist-raised","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","hand","ki","monk","resist","strength","unarmed combat"]},{"title":"fas fa-flag","searchTerms":["country","notice","notification","notify","pole","report","symbol"]},{"title":"far fa-flag","searchTerms":["country","notice","notification","notify","pole","report","symbol"]},{"title":"fas fa-flag-checkered","searchTerms":["notice","notification","notify","pole","racing","report","symbol"]},{"title":"fas fa-flag-usa","searchTerms":["betsy ross","country","old glory","stars","stripes","symbol"]},{"title":"fas fa-flask","searchTerms":["beaker","experimental","labs","science"]},{"title":"fab fa-flickr","searchTerms":[]},{"title":"fab fa-flipboard","searchTerms":[]},{"title":"fas fa-flushed","searchTerms":["embarrassed","emoticon","face"]},{"title":"far fa-flushed","searchTerms":["embarrassed","emoticon","face"]},{"title":"fab fa-fly","searchTerms":[]},{"title":"fas fa-folder","searchTerms":["archive","directory","document","file"]},{"title":"far fa-folder","searchTerms":["archive","directory","document","file"]},{"title":"fas fa-folder-minus","searchTerms":["archive","delete","directory","document","file","negative","remove"]},{"title":"fas fa-folder-open","searchTerms":["archive","directory","document","empty","file","new"]},{"title":"far fa-folder-open","searchTerms":["archive","directory","document","empty","file","new"]},{"title":"fas fa-folder-plus","searchTerms":["add","archive","create","directory","document","file","new","positive"]},{"title":"fas fa-font","searchTerms":["alphabet","glyph","text","type","typeface"]},{"title":"fab fa-font-awesome","searchTerms":["meanpath"]},{"title":"fab fa-font-awesome-alt","searchTerms":[]},{"title":"fab fa-font-awesome-flag","searchTerms":[]},{"title":"far fa-font-awesome-logo-full","searchTerms":[]},{"title":"fas fa-font-awesome-logo-full","searchTerms":[]},{"title":"fab fa-font-awesome-logo-full","searchTerms":[]},{"title":"fab fa-fonticons","searchTerms":[]},{"title":"fab fa-fonticons-fi","searchTerms":[]},{"title":"fas fa-football-ball","searchTerms":["ball","fall","nfl","pigskin","seasonal"]},{"title":"fab fa-fort-awesome","searchTerms":["castle"]},{"title":"fab fa-fort-awesome-alt","searchTerms":["castle"]},{"title":"fab fa-forumbee","searchTerms":[]},{"title":"fas fa-forward","searchTerms":["forward","next","skip"]},{"title":"fab fa-foursquare","searchTerms":[]},{"title":"fab fa-free-code-camp","searchTerms":[]},{"title":"fab fa-freebsd","searchTerms":[]},{"title":"fas fa-frog","searchTerms":["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{"title":"fas fa-frown","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"far fa-frown","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"fas fa-frown-open","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"far fa-frown-open","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"fab fa-fulcrum","searchTerms":[]},{"title":"fas fa-funnel-dollar","searchTerms":["filter","money","options","separate","sort"]},{"title":"fas fa-futbol","searchTerms":["ball","football","mls","soccer"]},{"title":"far fa-futbol","searchTerms":["ball","football","mls","soccer"]},{"title":"fab fa-galactic-republic","searchTerms":["politics","star wars"]},{"title":"fab fa-galactic-senate","searchTerms":["star wars"]},{"title":"fas fa-gamepad","searchTerms":["arcade","controller","d-pad","joystick","video","video game"]},{"title":"fas fa-gas-pump","searchTerms":["car","fuel","gasoline","petrol"]},{"title":"fas fa-gavel","searchTerms":["hammer","judge","law","lawyer","opinion"]},{"title":"fas fa-gem","searchTerms":["diamond","jewelry","sapphire","stone","treasure"]},{"title":"far fa-gem","searchTerms":["diamond","jewelry","sapphire","stone","treasure"]},{"title":"fas fa-genderless","searchTerms":["androgynous","asexual","sexless"]},{"title":"fab fa-get-pocket","searchTerms":[]},{"title":"fab fa-gg","searchTerms":[]},{"title":"fab fa-gg-circle","searchTerms":[]},{"title":"fas fa-ghost","searchTerms":["apparition","blinky","clyde","floating","halloween","holiday","inky","pinky","spirit"]},{"title":"fas fa-gift","searchTerms":["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{"title":"fas fa-gifts","searchTerms":["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{"title":"fab fa-git","searchTerms":[]},{"title":"fab fa-git-alt","searchTerms":[]},{"title":"fab fa-git-square","searchTerms":[]},{"title":"fab fa-github","searchTerms":["octocat"]},{"title":"fab fa-github-alt","searchTerms":["octocat"]},{"title":"fab fa-github-square","searchTerms":["octocat"]},{"title":"fab fa-gitkraken","searchTerms":[]},{"title":"fab fa-gitlab","searchTerms":["Axosoft"]},{"title":"fab fa-gitter","searchTerms":[]},{"title":"fas fa-glass-cheers","searchTerms":["alcohol","bar","beverage","celebration","champagne","clink","drink","holiday","new year's eve","party","toast"]},{"title":"fas fa-glass-martini","searchTerms":["alcohol","bar","beverage","drink","liquor"]},{"title":"fas fa-glass-martini-alt","searchTerms":["alcohol","bar","beverage","drink","liquor"]},{"title":"fas fa-glass-whiskey","searchTerms":["alcohol","bar","beverage","bourbon","drink","liquor","neat","rye","scotch","whisky"]},{"title":"fas fa-glasses","searchTerms":["hipster","nerd","reading","sight","spectacles","vision"]},{"title":"fab fa-glide","searchTerms":[]},{"title":"fab fa-glide-g","searchTerms":[]},{"title":"fas fa-globe","searchTerms":["all","coordinates","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-africa","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-americas","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-asia","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-europe","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fab fa-gofore","searchTerms":[]},{"title":"fas fa-golf-ball","searchTerms":["caddy","eagle","putt","tee"]},{"title":"fab fa-goodreads","searchTerms":[]},{"title":"fab fa-goodreads-g","searchTerms":[]},{"title":"fab fa-google","searchTerms":[]},{"title":"fab fa-google-drive","searchTerms":[]},{"title":"fab fa-google-pay","searchTerms":[]},{"title":"fab fa-google-play","searchTerms":[]},{"title":"fab fa-google-plus","searchTerms":["google-plus-circle","google-plus-official"]},{"title":"fab fa-google-plus-g","searchTerms":["google-plus","social network"]},{"title":"fab fa-google-plus-square","searchTerms":["social network"]},{"title":"fab fa-google-wallet","searchTerms":[]},{"title":"fas fa-gopuram","searchTerms":["building","entrance","hinduism","temple","tower"]},{"title":"fas fa-graduation-cap","searchTerms":["ceremony","college","graduate","learning","school","student"]},{"title":"fab fa-gratipay","searchTerms":["favorite","heart","like","love"]},{"title":"fab fa-grav","searchTerms":[]},{"title":"fas fa-greater-than","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-greater-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-grimace","searchTerms":["cringe","emoticon","face","teeth"]},{"title":"far fa-grimace","searchTerms":["cringe","emoticon","face","teeth"]},{"title":"fas fa-grin","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-alt","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-alt","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-beam","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-beam","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-beam-sweat","searchTerms":["embarass","emoticon","face","smile"]},{"title":"far fa-grin-beam-sweat","searchTerms":["embarass","emoticon","face","smile"]},{"title":"fas fa-grin-hearts","searchTerms":["emoticon","face","love","smile"]},{"title":"far fa-grin-hearts","searchTerms":["emoticon","face","love","smile"]},{"title":"fas fa-grin-squint","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-squint","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-squint-tears","searchTerms":["emoticon","face","happy","smile"]},{"title":"far fa-grin-squint-tears","searchTerms":["emoticon","face","happy","smile"]},{"title":"fas fa-grin-stars","searchTerms":["emoticon","face","star-struck"]},{"title":"far fa-grin-stars","searchTerms":["emoticon","face","star-struck"]},{"title":"fas fa-grin-tears","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tears","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue-squint","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue-squint","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue-wink","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue-wink","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"far fa-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"fas fa-grip-horizontal","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-lines","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-lines-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fab fa-gripfire","searchTerms":[]},{"title":"fab fa-grunt","searchTerms":[]},{"title":"fab fa-guilded","searchTerms":[]},{"title":"fas fa-guitar","searchTerms":["acoustic","instrument","music","rock","rock and roll","song","strings"]},{"title":"fab fa-gulp","searchTerms":[]},{"title":"fas fa-h-square","searchTerms":["directions","emergency","hospital","hotel","map"]},{"title":"fab fa-hacker-news","searchTerms":[]},{"title":"fab fa-hacker-news-square","searchTerms":[]},{"title":"fab fa-hackerrank","searchTerms":[]},{"title":"fas fa-hamburger","searchTerms":["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{"title":"fas fa-hammer","searchTerms":["admin","fix","repair","settings","tool"]},{"title":"fas fa-hamsa","searchTerms":["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{"title":"fas fa-hand-holding","searchTerms":["carry","lift"]},{"title":"fas fa-hand-holding-heart","searchTerms":["carry","charity","gift","lift","package"]},{"title":"fas fa-hand-holding-medical","searchTerms":["care","covid-19","donate","help"]},{"title":"fas fa-hand-holding-usd","searchTerms":["$","carry","dollar sign","donation","giving","lift","money","price"]},{"title":"fas fa-hand-holding-water","searchTerms":["carry","covid-19","drought","grow","lift"]},{"title":"fas fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"far fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"fas fa-hand-middle-finger","searchTerms":["flip the bird","gesture","hate","rude"]},{"title":"fas fa-hand-paper","searchTerms":["game","halt","roshambo","stop"]},{"title":"far fa-hand-paper","searchTerms":["game","halt","roshambo","stop"]},{"title":"fas fa-hand-peace","searchTerms":["rest","truce"]},{"title":"far fa-hand-peace","searchTerms":["rest","truce"]},{"title":"fas fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"far fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"fas fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"far fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"fas fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"far fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"fas fa-hand-point-up","searchTerms":["finger","hand-o-up","point"]},{"title":"far fa-hand-point-up","searchTerms":["finger","hand-o-up","point"]},{"title":"fas fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"far fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fas fa-hand-rock","searchTerms":["fist","game","roshambo"]},{"title":"far fa-hand-rock","searchTerms":["fist","game","roshambo"]},{"title":"fas fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"far fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"fas fa-hand-sparkles","searchTerms":["clean","covid-19","hygiene","magic","soap","wash"]},{"title":"fas fa-hand-spock","searchTerms":["live long","prosper","salute","star trek","vulcan"]},{"title":"far fa-hand-spock","searchTerms":["live long","prosper","salute","star trek","vulcan"]},{"title":"fas fa-hands","searchTerms":["carry","hold","lift"]},{"title":"fas fa-hands-helping","searchTerms":["aid","assistance","handshake","partnership","volunteering"]},{"title":"fas fa-hands-wash","searchTerms":["covid-19","hygiene","soap","wash"]},{"title":"fas fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"far fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"fas fa-handshake-alt-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fas fa-handshake-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fas fa-hanukiah","searchTerms":["candle","hanukkah","jewish","judaism","light"]},{"title":"fas fa-hard-hat","searchTerms":["construction","hardhat","helmet","safety"]},{"title":"fas fa-hashtag","searchTerms":["Twitter","instagram","pound","social media","tag"]},{"title":"fas fa-hat-cowboy","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fas fa-hat-cowboy-side","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fas fa-hat-wizard","searchTerms":["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{"title":"fas fa-hdd","searchTerms":["cpu","hard drive","harddrive","machine","save","storage"]},{"title":"far fa-hdd","searchTerms":["cpu","hard drive","harddrive","machine","save","storage"]},{"title":"fas fa-head-side-cough","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fas fa-head-side-cough-slash","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fas fa-head-side-mask","searchTerms":["breath","covid-19","filter","respirator","virus"]},{"title":"fas fa-head-side-virus","searchTerms":["cold","covid-19","flu","sick"]},{"title":"fas fa-heading","searchTerms":["format","header","text","title"]},{"title":"fas fa-headphones","searchTerms":["audio","listen","music","sound","speaker"]},{"title":"fas fa-headphones-alt","searchTerms":["audio","listen","music","sound","speaker"]},{"title":"fas fa-headset","searchTerms":["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{"title":"fas fa-heart","searchTerms":["favorite","like","love","relationship","valentine"]},{"title":"far fa-heart","searchTerms":["favorite","like","love","relationship","valentine"]},{"title":"fas fa-heart-broken","searchTerms":["breakup","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{"title":"fas fa-heartbeat","searchTerms":["ekg","electrocardiogram","health","lifeline","vital signs"]},{"title":"fas fa-helicopter","searchTerms":["airwolf","apache","chopper","flight","fly","travel"]},{"title":"fas fa-highlighter","searchTerms":["edit","marker","sharpie","update","write"]},{"title":"fas fa-hiking","searchTerms":["activity","backpack","fall","fitness","outdoors","person","seasonal","walking"]},{"title":"fas fa-hippo","searchTerms":["animal","fauna","hippopotamus","hungry","mammal"]},{"title":"fab fa-hips","searchTerms":[]},{"title":"fab fa-hire-a-helper","searchTerms":[]},{"title":"fas fa-history","searchTerms":["Rewind","clock","reverse","time","time machine"]},{"title":"fab fa-hive","searchTerms":[]},{"title":"fas fa-hockey-puck","searchTerms":["ice","nhl","sport"]},{"title":"fas fa-holly-berry","searchTerms":["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{"title":"fas fa-home","searchTerms":["abode","building","house","main"]},{"title":"fab fa-hooli","searchTerms":[]},{"title":"fab fa-hornbill","searchTerms":[]},{"title":"fas fa-horse","searchTerms":["equus","fauna","mammmal","mare","neigh","pony"]},{"title":"fas fa-horse-head","searchTerms":["equus","fauna","mammmal","mare","neigh","pony"]},{"title":"fas fa-hospital","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"far fa-hospital","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"fas fa-hospital-alt","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"fas fa-hospital-symbol","searchTerms":["clinic","covid-19","emergency","map"]},{"title":"fas fa-hospital-user","searchTerms":["covid-19","doctor","network","patient","primary care"]},{"title":"fas fa-hot-tub","searchTerms":["bath","jacuzzi","massage","sauna","spa"]},{"title":"fas fa-hotdog","searchTerms":["bun","chili","frankfurt","frankfurter","kosher","polish","sandwich","sausage","vienna","weiner"]},{"title":"fas fa-hotel","searchTerms":["building","inn","lodging","motel","resort","travel"]},{"title":"fab fa-hotjar","searchTerms":[]},{"title":"fas fa-hourglass","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"far fa-hourglass","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-end","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-half","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-start","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-house-damage","searchTerms":["building","devastation","disaster","home","insurance"]},{"title":"fas fa-house-user","searchTerms":["covid-19","home","isolation","quarantine"]},{"title":"fab fa-houzz","searchTerms":[]},{"title":"fas fa-hryvnia","searchTerms":["currency","money","ukraine","ukrainian"]},{"title":"fab fa-html5","searchTerms":[]},{"title":"fab fa-hubspot","searchTerms":[]},{"title":"fas fa-i-cursor","searchTerms":["editing","i-beam","type","writing"]},{"title":"fas fa-ice-cream","searchTerms":["chocolate","cone","dessert","frozen","scoop","sorbet","vanilla","yogurt"]},{"title":"fas fa-icicles","searchTerms":["cold","frozen","hanging","ice","seasonal","sharp"]},{"title":"fas fa-icons","searchTerms":["bolt","emoji","heart","image","music","photo","symbols"]},{"title":"fas fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"far fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"fas fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"far fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"fas fa-id-card-alt","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"fab fa-ideal","searchTerms":[]},{"title":"fas fa-igloo","searchTerms":["dome","dwelling","eskimo","home","house","ice","snow"]},{"title":"fas fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"far fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"fas fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"far fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"fab fa-imdb","searchTerms":[]},{"title":"fas fa-inbox","searchTerms":["archive","desk","email","mail","message"]},{"title":"fas fa-indent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fas fa-industry","searchTerms":["building","factory","industrial","manufacturing","mill","warehouse"]},{"title":"fas fa-infinity","searchTerms":["eternity","forever","math"]},{"title":"fas fa-info","searchTerms":["details","help","information","more","support"]},{"title":"fas fa-info-circle","searchTerms":["details","help","information","more","support"]},{"title":"fab fa-innosoft","searchTerms":[]},{"title":"fab fa-instagram","searchTerms":[]},{"title":"fab fa-instagram-square","searchTerms":[]},{"title":"fab fa-instalod","searchTerms":[]},{"title":"fab fa-intercom","searchTerms":["app","customer","messenger"]},{"title":"fab fa-internet-explorer","searchTerms":["browser","ie"]},{"title":"fab fa-invision","searchTerms":["app","design","interface"]},{"title":"fab fa-ioxhost","searchTerms":[]},{"title":"fas fa-italic","searchTerms":["edit","emphasis","font","format","text","type"]},{"title":"fab fa-itch-io","searchTerms":[]},{"title":"fab fa-itunes","searchTerms":[]},{"title":"fab fa-itunes-note","searchTerms":[]},{"title":"fab fa-java","searchTerms":[]},{"title":"fas fa-jedi","searchTerms":["crest","force","sith","skywalker","star wars","yoda"]},{"title":"fab fa-jedi-order","searchTerms":["star wars"]},{"title":"fab fa-jenkins","searchTerms":[]},{"title":"fab fa-jira","searchTerms":["atlassian"]},{"title":"fab fa-joget","searchTerms":[]},{"title":"fas fa-joint","searchTerms":["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{"title":"fab fa-joomla","searchTerms":[]},{"title":"fas fa-journal-whills","searchTerms":["book","force","jedi","sith","star wars","yoda"]},{"title":"fab fa-js","searchTerms":[]},{"title":"fab fa-js-square","searchTerms":[]},{"title":"fab fa-jsfiddle","searchTerms":[]},{"title":"fas fa-kaaba","searchTerms":["building","cube","islam","muslim"]},{"title":"fab fa-kaggle","searchTerms":[]},{"title":"fas fa-key","searchTerms":["lock","password","private","secret","unlock"]},{"title":"fab fa-keybase","searchTerms":[]},{"title":"fas fa-keyboard","searchTerms":["accessory","edit","input","text","type","write"]},{"title":"far fa-keyboard","searchTerms":["accessory","edit","input","text","type","write"]},{"title":"fab fa-keycdn","searchTerms":[]},{"title":"fas fa-khanda","searchTerms":["chakkar","sikh","sikhism","sword"]},{"title":"fab fa-kickstarter","searchTerms":[]},{"title":"fab fa-kickstarter-k","searchTerms":[]},{"title":"fas fa-kiss","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiss-beam","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss-beam","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiss-wink-heart","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss-wink-heart","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiwi-bird","searchTerms":["bird","fauna","new zealand"]},{"title":"fab fa-korvue","searchTerms":[]},{"title":"fas fa-landmark","searchTerms":["building","historic","memorable","monument","politics"]},{"title":"fas fa-language","searchTerms":["dialect","idiom","localize","speech","translate","vernacular"]},{"title":"fas fa-laptop","searchTerms":["computer","cpu","dell","demo","device","mac","macbook","machine","pc"]},{"title":"fas fa-laptop-code","searchTerms":["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{"title":"fas fa-laptop-house","searchTerms":["computer","covid-19","device","office","remote","work from home"]},{"title":"fas fa-laptop-medical","searchTerms":["computer","device","ehr","electronic health records","history"]},{"title":"fab fa-laravel","searchTerms":[]},{"title":"fab fa-lastfm","searchTerms":[]},{"title":"fab fa-lastfm-square","searchTerms":[]},{"title":"fas fa-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"far fa-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"fas fa-laugh-beam","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-beam","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-layer-group","searchTerms":["arrange","develop","layers","map","stack"]},{"title":"fas fa-leaf","searchTerms":["eco","flora","nature","plant","vegan"]},{"title":"fab fa-leanpub","searchTerms":[]},{"title":"fas fa-lemon","searchTerms":["citrus","lemonade","lime","tart"]},{"title":"far fa-lemon","searchTerms":["citrus","lemonade","lime","tart"]},{"title":"fab fa-less","searchTerms":[]},{"title":"fas fa-less-than","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-less-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-level-down-alt","searchTerms":["arrow","level-down"]},{"title":"fas fa-level-up-alt","searchTerms":["arrow","level-up"]},{"title":"fas fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"far fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"fas fa-lightbulb","searchTerms":["energy","idea","inspiration","light"]},{"title":"far fa-lightbulb","searchTerms":["energy","idea","inspiration","light"]},{"title":"fab fa-line","searchTerms":[]},{"title":"fas fa-link","searchTerms":["attach","attachment","chain","connect"]},{"title":"fab fa-linkedin","searchTerms":["linkedin-square"]},{"title":"fab fa-linkedin-in","searchTerms":["linkedin"]},{"title":"fab fa-linode","searchTerms":[]},{"title":"fab fa-linux","searchTerms":["tux"]},{"title":"fas fa-lira-sign","searchTerms":["currency","money","try","turkish"]},{"title":"fas fa-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-list-alt","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"far fa-list-alt","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-list-ol","searchTerms":["checklist","completed","done","finished","numbers","ol","todo","ul"]},{"title":"fas fa-list-ul","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-location-arrow","searchTerms":["address","compass","coordinate","direction","gps","map","navigation","place"]},{"title":"fas fa-lock","searchTerms":["admin","lock","open","password","private","protect","security"]},{"title":"fas fa-lock-open","searchTerms":["admin","lock","open","password","private","protect","security"]},{"title":"fas fa-long-arrow-alt-down","searchTerms":["download","long-arrow-down"]},{"title":"fas fa-long-arrow-alt-left","searchTerms":["back","long-arrow-left","previous"]},{"title":"fas fa-long-arrow-alt-right","searchTerms":["forward","long-arrow-right","next"]},{"title":"fas fa-long-arrow-alt-up","searchTerms":["long-arrow-up","upload"]},{"title":"fas fa-low-vision","searchTerms":["blind","eye","sight"]},{"title":"fas fa-luggage-cart","searchTerms":["bag","baggage","suitcase","travel"]},{"title":"fas fa-lungs","searchTerms":["air","breath","covid-19","organ","respiratory"]},{"title":"fas fa-lungs-virus","searchTerms":["breath","covid-19","respiratory","sick"]},{"title":"fab fa-lyft","searchTerms":[]},{"title":"fab fa-magento","searchTerms":[]},{"title":"fas fa-magic","searchTerms":["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{"title":"fas fa-magnet","searchTerms":["Attract","lodestone","tool"]},{"title":"fas fa-mail-bulk","searchTerms":["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{"title":"fab fa-mailchimp","searchTerms":[]},{"title":"fas fa-male","searchTerms":["human","man","person","profile","user"]},{"title":"fab fa-mandalorian","searchTerms":[]},{"title":"fas fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"far fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marked","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marked-alt","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marker","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marker-alt","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-pin","searchTerms":["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","travel"]},{"title":"fas fa-map-signs","searchTerms":["directions","directory","map","signage","wayfinding"]},{"title":"fab fa-markdown","searchTerms":[]},{"title":"fas fa-marker","searchTerms":["design","edit","sharpie","update","write"]},{"title":"fas fa-mars","searchTerms":["male"]},{"title":"fas fa-mars-double","searchTerms":[]},{"title":"fas fa-mars-stroke","searchTerms":[]},{"title":"fas fa-mars-stroke-h","searchTerms":[]},{"title":"fas fa-mars-stroke-v","searchTerms":[]},{"title":"fas fa-mask","searchTerms":["carnivale","costume","disguise","halloween","secret","super hero"]},{"title":"fab fa-mastodon","searchTerms":[]},{"title":"fab fa-maxcdn","searchTerms":[]},{"title":"fab fa-mdb","searchTerms":[]},{"title":"fas fa-medal","searchTerms":["award","ribbon","star","trophy"]},{"title":"fab fa-medapps","searchTerms":[]},{"title":"fab fa-medium","searchTerms":[]},{"title":"fab fa-medium-m","searchTerms":[]},{"title":"fas fa-medkit","searchTerms":["first aid","firstaid","health","help","support"]},{"title":"fab fa-medrt","searchTerms":[]},{"title":"fab fa-meetup","searchTerms":[]},{"title":"fab fa-megaport","searchTerms":[]},{"title":"fas fa-meh","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-meh-blank","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh-blank","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-meh-rolling-eyes","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh-rolling-eyes","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-memory","searchTerms":["DIMM","RAM","hardware","storage","technology"]},{"title":"fab fa-mendeley","searchTerms":[]},{"title":"fas fa-menorah","searchTerms":["candle","hanukkah","jewish","judaism","light"]},{"title":"fas fa-mercury","searchTerms":["transgender"]},{"title":"fas fa-meteor","searchTerms":["armageddon","asteroid","comet","shooting star","space"]},{"title":"fab fa-microblog","searchTerms":[]},{"title":"fas fa-microchip","searchTerms":["cpu","hardware","processor","technology"]},{"title":"fas fa-microphone","searchTerms":["audio","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-alt","searchTerms":["audio","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-alt-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fas fa-microscope","searchTerms":["covid-19","electron","lens","optics","science","shrink"]},{"title":"fab fa-microsoft","searchTerms":[]},{"title":"fas fa-minus","searchTerms":["collapse","delete","hide","minify","negative","remove","trash"]},{"title":"fas fa-minus-circle","searchTerms":["delete","hide","negative","remove","shape","trash"]},{"title":"fas fa-minus-square","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"far fa-minus-square","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"fas fa-mitten","searchTerms":["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{"title":"fab fa-mix","searchTerms":[]},{"title":"fab fa-mixcloud","searchTerms":[]},{"title":"fab fa-mixer","searchTerms":[]},{"title":"fab fa-mizuni","searchTerms":[]},{"title":"fas fa-mobile","searchTerms":["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{"title":"fas fa-mobile-alt","searchTerms":["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{"title":"fab fa-modx","searchTerms":[]},{"title":"fab fa-monero","searchTerms":[]},{"title":"fas fa-money-bill","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"far fa-money-bill-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-wave","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-wave-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-check","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fas fa-money-check-alt","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fas fa-monument","searchTerms":["building","historic","landmark","memorable"]},{"title":"fas fa-moon","searchTerms":["contrast","crescent","dark","lunar","night"]},{"title":"far fa-moon","searchTerms":["contrast","crescent","dark","lunar","night"]},{"title":"fas fa-mortar-pestle","searchTerms":["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{"title":"fas fa-mosque","searchTerms":["building","islam","landmark","muslim"]},{"title":"fas fa-motorcycle","searchTerms":["bike","machine","transportation","vehicle"]},{"title":"fas fa-mountain","searchTerms":["glacier","hiking","hill","landscape","travel","view"]},{"title":"fas fa-mouse","searchTerms":["click","computer","cursor","input","peripheral"]},{"title":"fas fa-mouse-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fas fa-mug-hot","searchTerms":["caliente","cocoa","coffee","cup","drink","holiday","hot chocolate","steam","tea","warmth"]},{"title":"fas fa-music","searchTerms":["lyrics","melody","note","sing","sound"]},{"title":"fab fa-napster","searchTerms":[]},{"title":"fab fa-neos","searchTerms":[]},{"title":"fas fa-network-wired","searchTerms":["computer","connect","ethernet","internet","intranet"]},{"title":"fas fa-neuter","searchTerms":[]},{"title":"fas fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","press"]},{"title":"far fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","press"]},{"title":"fab fa-nimblr","searchTerms":[]},{"title":"fab fa-node","searchTerms":[]},{"title":"fab fa-node-js","searchTerms":[]},{"title":"fas fa-not-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-notes-medical","searchTerms":["clipboard","doctor","ehr","health","history","records"]},{"title":"fab fa-npm","searchTerms":[]},{"title":"fab fa-ns8","searchTerms":[]},{"title":"fab fa-nutritionix","searchTerms":[]},{"title":"fas fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"far fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"fas fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"far fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"fab fa-octopus-deploy","searchTerms":[]},{"title":"fab fa-odnoklassniki","searchTerms":[]},{"title":"fab fa-odnoklassniki-square","searchTerms":[]},{"title":"fas fa-oil-can","searchTerms":["auto","crude","gasoline","grease","lubricate","petroleum"]},{"title":"fab fa-old-republic","searchTerms":["politics","star wars"]},{"title":"fas fa-om","searchTerms":["buddhism","hinduism","jainism","mantra"]},{"title":"fab fa-opencart","searchTerms":[]},{"title":"fab fa-openid","searchTerms":[]},{"title":"fab fa-opera","searchTerms":[]},{"title":"fab fa-optin-monster","searchTerms":[]},{"title":"fab fa-orcid","searchTerms":[]},{"title":"fab fa-osi","searchTerms":[]},{"title":"fas fa-otter","searchTerms":["animal","badger","fauna","fur","mammal","marten"]},{"title":"fas fa-outdent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fab fa-page4","searchTerms":[]},{"title":"fab fa-pagelines","searchTerms":["eco","flora","leaf","leaves","nature","plant","tree"]},{"title":"fas fa-pager","searchTerms":["beeper","cellphone","communication"]},{"title":"fas fa-paint-brush","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fas fa-paint-roller","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fas fa-palette","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fab fa-palfed","searchTerms":[]},{"title":"fas fa-pallet","searchTerms":["archive","box","inventory","shipping","warehouse"]},{"title":"fas fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"far fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"fas fa-paperclip","searchTerms":["attach","attachment","connect","link"]},{"title":"fas fa-parachute-box","searchTerms":["aid","assistance","rescue","supplies"]},{"title":"fas fa-paragraph","searchTerms":["edit","format","text","writing"]},{"title":"fas fa-parking","searchTerms":["auto","car","garage","meter"]},{"title":"fas fa-passport","searchTerms":["document","id","identification","issued","travel"]},{"title":"fas fa-pastafarianism","searchTerms":["agnosticism","atheism","flying spaghetti monster","fsm"]},{"title":"fas fa-paste","searchTerms":["clipboard","copy","document","paper"]},{"title":"fab fa-patreon","searchTerms":[]},{"title":"fas fa-pause","searchTerms":["hold","wait"]},{"title":"fas fa-pause-circle","searchTerms":["hold","wait"]},{"title":"far fa-pause-circle","searchTerms":["hold","wait"]},{"title":"fas fa-paw","searchTerms":["animal","cat","dog","pet","print"]},{"title":"fab fa-paypal","searchTerms":[]},{"title":"fas fa-peace","searchTerms":["serenity","tranquility","truce","war"]},{"title":"fas fa-pen","searchTerms":["design","edit","update","write"]},{"title":"fas fa-pen-alt","searchTerms":["design","edit","update","write"]},{"title":"fas fa-pen-fancy","searchTerms":["design","edit","fountain pen","update","write"]},{"title":"fas fa-pen-nib","searchTerms":["design","edit","fountain pen","update","write"]},{"title":"fas fa-pen-square","searchTerms":["edit","pencil-square","update","write"]},{"title":"fas fa-pencil-alt","searchTerms":["design","edit","pencil","update","write"]},{"title":"fas fa-pencil-ruler","searchTerms":["design","draft","draw","pencil"]},{"title":"fab fa-penny-arcade","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","pax","tabletop"]},{"title":"fas fa-people-arrows","searchTerms":["covid-19","personal space","social distance","space","spread","users"]},{"title":"fas fa-people-carry","searchTerms":["box","carry","fragile","help","movers","package"]},{"title":"fas fa-pepper-hot","searchTerms":["buffalo wings","capsicum","chili","chilli","habanero","jalapeno","mexican","spicy","tabasco","vegetable"]},{"title":"fab fa-perbyte","searchTerms":[]},{"title":"fas fa-percent","searchTerms":["discount","fraction","proportion","rate","ratio"]},{"title":"fas fa-percentage","searchTerms":["discount","fraction","proportion","rate","ratio"]},{"title":"fab fa-periscope","searchTerms":[]},{"title":"fas fa-person-booth","searchTerms":["changing","changing room","election","human","person","vote","voting"]},{"title":"fab fa-phabricator","searchTerms":[]},{"title":"fab fa-phoenix-framework","searchTerms":[]},{"title":"fab fa-phoenix-squadron","searchTerms":[]},{"title":"fas fa-phone","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-alt","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-slash","searchTerms":["call","cancel","earphone","mute","number","support","telephone","voice"]},{"title":"fas fa-phone-square","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-square-alt","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-volume","searchTerms":["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{"title":"fas fa-photo-video","searchTerms":["av","film","image","library","media"]},{"title":"fab fa-php","searchTerms":[]},{"title":"fab fa-pied-piper","searchTerms":[]},{"title":"fab fa-pied-piper-alt","searchTerms":[]},{"title":"fab fa-pied-piper-hat","searchTerms":["clothing"]},{"title":"fab fa-pied-piper-pp","searchTerms":[]},{"title":"fab fa-pied-piper-square","searchTerms":[]},{"title":"fas fa-piggy-bank","searchTerms":["bank","save","savings"]},{"title":"fas fa-pills","searchTerms":["drugs","medicine","prescription","tablets"]},{"title":"fab fa-pinterest","searchTerms":[]},{"title":"fab fa-pinterest-p","searchTerms":[]},{"title":"fab fa-pinterest-square","searchTerms":[]},{"title":"fas fa-pizza-slice","searchTerms":["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{"title":"fas fa-place-of-worship","searchTerms":["building","church","holy","mosque","synagogue"]},{"title":"fas fa-plane","searchTerms":["airplane","destination","fly","location","mode","travel","trip"]},{"title":"fas fa-plane-arrival","searchTerms":["airplane","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{"title":"fas fa-plane-departure","searchTerms":["airplane","departing","destination","fly","location","mode","take off","taking off","travel","trip"]},{"title":"fas fa-plane-slash","searchTerms":["airplane mode","canceled","covid-19","delayed","grounded","travel"]},{"title":"fas fa-play","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fas fa-play-circle","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"far fa-play-circle","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fab fa-playstation","searchTerms":[]},{"title":"fas fa-plug","searchTerms":["connect","electric","online","power"]},{"title":"fas fa-plus","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-plus-circle","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-plus-square","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"far fa-plus-square","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-podcast","searchTerms":["audio","broadcast","music","sound"]},{"title":"fas fa-poll","searchTerms":["results","survey","trend","vote","voting"]},{"title":"fas fa-poll-h","searchTerms":["results","survey","trend","vote","voting"]},{"title":"fas fa-poo","searchTerms":["crap","poop","shit","smile","turd"]},{"title":"fas fa-poo-storm","searchTerms":["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{"title":"fas fa-poop","searchTerms":["crap","poop","shit","smile","turd"]},{"title":"fas fa-portrait","searchTerms":["id","image","photo","picture","selfie"]},{"title":"fas fa-pound-sign","searchTerms":["currency","gbp","money"]},{"title":"fas fa-power-off","searchTerms":["cancel","computer","on","reboot","restart"]},{"title":"fas fa-pray","searchTerms":["kneel","preach","religion","worship"]},{"title":"fas fa-praying-hands","searchTerms":["kneel","preach","religion","worship"]},{"title":"fas fa-prescription","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-prescription-bottle","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-prescription-bottle-alt","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-print","searchTerms":["business","copy","document","office","paper"]},{"title":"fas fa-procedures","searchTerms":["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{"title":"fab fa-product-hunt","searchTerms":[]},{"title":"fas fa-project-diagram","searchTerms":["chart","graph","network","pert"]},{"title":"fas fa-pump-medical","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{"title":"fas fa-pump-soap","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{"title":"fab fa-pushed","searchTerms":[]},{"title":"fas fa-puzzle-piece","searchTerms":["add-on","addon","game","section"]},{"title":"fab fa-python","searchTerms":[]},{"title":"fab fa-qq","searchTerms":[]},{"title":"fas fa-qrcode","searchTerms":["barcode","info","information","scan"]},{"title":"fas fa-question","searchTerms":["help","information","support","unknown"]},{"title":"fas fa-question-circle","searchTerms":["help","information","support","unknown"]},{"title":"far fa-question-circle","searchTerms":["help","information","support","unknown"]},{"title":"fas fa-quidditch","searchTerms":["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{"title":"fab fa-quinscape","searchTerms":[]},{"title":"fab fa-quora","searchTerms":[]},{"title":"fas fa-quote-left","searchTerms":["mention","note","phrase","text","type"]},{"title":"fas fa-quote-right","searchTerms":["mention","note","phrase","text","type"]},{"title":"fas fa-quran","searchTerms":["book","islam","muslim","religion"]},{"title":"fab fa-r-project","searchTerms":[]},{"title":"fas fa-radiation","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{"title":"fas fa-radiation-alt","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{"title":"fas fa-rainbow","searchTerms":["gold","leprechaun","prism","rain","sky"]},{"title":"fas fa-random","searchTerms":["arrows","shuffle","sort","swap","switch","transfer"]},{"title":"fab fa-raspberry-pi","searchTerms":[]},{"title":"fab fa-ravelry","searchTerms":[]},{"title":"fab fa-react","searchTerms":[]},{"title":"fab fa-reacteurope","searchTerms":[]},{"title":"fab fa-readme","searchTerms":[]},{"title":"fab fa-rebel","searchTerms":[]},{"title":"fas fa-receipt","searchTerms":["check","invoice","money","pay","table"]},{"title":"fas fa-record-vinyl","searchTerms":["LP","album","analog","music","phonograph","sound"]},{"title":"fas fa-recycle","searchTerms":["Waste","compost","garbage","reuse","trash"]},{"title":"fab fa-red-river","searchTerms":[]},{"title":"fab fa-reddit","searchTerms":[]},{"title":"fab fa-reddit-alien","searchTerms":[]},{"title":"fab fa-reddit-square","searchTerms":[]},{"title":"fab fa-redhat","searchTerms":["linux","operating system","os"]},{"title":"fas fa-redo","searchTerms":["forward","refresh","reload","repeat"]},{"title":"fas fa-redo-alt","searchTerms":["forward","refresh","reload","repeat"]},{"title":"fas fa-registered","searchTerms":["copyright","mark","trademark"]},{"title":"far fa-registered","searchTerms":["copyright","mark","trademark"]},{"title":"fas fa-remove-format","searchTerms":["cancel","font","format","remove","style","text"]},{"title":"fab fa-renren","searchTerms":[]},{"title":"fas fa-reply","searchTerms":["mail","message","respond"]},{"title":"fas fa-reply-all","searchTerms":["mail","message","respond"]},{"title":"fab fa-replyd","searchTerms":[]},{"title":"fas fa-republican","searchTerms":["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{"title":"fab fa-researchgate","searchTerms":[]},{"title":"fab fa-resolving","searchTerms":[]},{"title":"fas fa-restroom","searchTerms":["bathroom","john","loo","potty","washroom","waste","wc"]},{"title":"fas fa-retweet","searchTerms":["refresh","reload","share","swap"]},{"title":"fab fa-rev","searchTerms":[]},{"title":"fas fa-ribbon","searchTerms":["badge","cause","lapel","pin"]},{"title":"fas fa-ring","searchTerms":["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{"title":"fas fa-road","searchTerms":["highway","map","pavement","route","street","travel"]},{"title":"fas fa-robot","searchTerms":["android","automate","computer","cyborg"]},{"title":"fas fa-rocket","searchTerms":["aircraft","app","jet","launch","nasa","space"]},{"title":"fab fa-rocketchat","searchTerms":[]},{"title":"fab fa-rockrms","searchTerms":[]},{"title":"fas fa-route","searchTerms":["directions","navigation","travel"]},{"title":"fas fa-rss","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fas fa-rss-square","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fas fa-ruble-sign","searchTerms":["currency","money","rub"]},{"title":"fas fa-ruler","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-combined","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-horizontal","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-vertical","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-running","searchTerms":["exercise","health","jog","person","run","sport","sprint"]},{"title":"fas fa-rupee-sign","searchTerms":["currency","indian","inr","money"]},{"title":"fab fa-rust","searchTerms":[]},{"title":"fas fa-sad-cry","searchTerms":["emoticon","face","tear","tears"]},{"title":"far fa-sad-cry","searchTerms":["emoticon","face","tear","tears"]},{"title":"fas fa-sad-tear","searchTerms":["emoticon","face","tear","tears"]},{"title":"far fa-sad-tear","searchTerms":["emoticon","face","tear","tears"]},{"title":"fab fa-safari","searchTerms":["browser"]},{"title":"fab fa-salesforce","searchTerms":[]},{"title":"fab fa-sass","searchTerms":[]},{"title":"fas fa-satellite","searchTerms":["communications","hardware","orbit","space"]},{"title":"fas fa-satellite-dish","searchTerms":["SETI","communications","hardware","receiver","saucer","signal","space"]},{"title":"fas fa-save","searchTerms":["disk","download","floppy","floppy-o"]},{"title":"far fa-save","searchTerms":["disk","download","floppy","floppy-o"]},{"title":"fab fa-schlix","searchTerms":[]},{"title":"fas fa-school","searchTerms":["building","education","learn","student","teacher"]},{"title":"fas fa-screwdriver","searchTerms":["admin","fix","mechanic","repair","settings","tool"]},{"title":"fab fa-scribd","searchTerms":[]},{"title":"fas fa-scroll","searchTerms":["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script"]},{"title":"fas fa-sd-card","searchTerms":["image","memory","photo","save"]},{"title":"fas fa-search","searchTerms":["bigger","enlarge","find","magnify","preview","zoom"]},{"title":"fas fa-search-dollar","searchTerms":["bigger","enlarge","find","magnify","money","preview","zoom"]},{"title":"fas fa-search-location","searchTerms":["bigger","enlarge","find","magnify","preview","zoom"]},{"title":"fas fa-search-minus","searchTerms":["minify","negative","smaller","zoom","zoom out"]},{"title":"fas fa-search-plus","searchTerms":["bigger","enlarge","magnify","positive","zoom","zoom in"]},{"title":"fab fa-searchengin","searchTerms":[]},{"title":"fas fa-seedling","searchTerms":["flora","grow","plant","vegan"]},{"title":"fab fa-sellcast","searchTerms":["eercast"]},{"title":"fab fa-sellsy","searchTerms":[]},{"title":"fas fa-server","searchTerms":["computer","cpu","database","hardware","network"]},{"title":"fab fa-servicestack","searchTerms":[]},{"title":"fas fa-shapes","searchTerms":["blocks","build","circle","square","triangle"]},{"title":"fas fa-share","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-alt","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-alt-square","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-square","searchTerms":["forward","save","send","social"]},{"title":"far fa-share-square","searchTerms":["forward","save","send","social"]},{"title":"fas fa-shekel-sign","searchTerms":["currency","ils","money"]},{"title":"fas fa-shield-alt","searchTerms":["achievement","award","block","defend","security","winner"]},{"title":"fas fa-shield-virus","searchTerms":["antibodies","barrier","covid-19","health","protect"]},{"title":"fas fa-ship","searchTerms":["boat","sea","water"]},{"title":"fas fa-shipping-fast","searchTerms":["express","fedex","mail","overnight","package","ups"]},{"title":"fab fa-shirtsinbulk","searchTerms":[]},{"title":"fas fa-shoe-prints","searchTerms":["feet","footprints","steps","walk"]},{"title":"fab fa-shopify","searchTerms":[]},{"title":"fas fa-shopping-bag","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fas fa-shopping-basket","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fas fa-shopping-cart","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fab fa-shopware","searchTerms":[]},{"title":"fas fa-shower","searchTerms":["bath","clean","faucet","water"]},{"title":"fas fa-shuttle-van","searchTerms":["airport","machine","public-transportation","transportation","travel","vehicle"]},{"title":"fas fa-sign","searchTerms":["directions","real estate","signage","wayfinding"]},{"title":"fas fa-sign-in-alt","searchTerms":["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{"title":"fas fa-sign-language","searchTerms":["Translate","asl","deaf","hands"]},{"title":"fas fa-sign-out-alt","searchTerms":["arrow","exit","leave","log out","logout","sign-out"]},{"title":"fas fa-signal","searchTerms":["bars","graph","online","reception","status"]},{"title":"fas fa-signature","searchTerms":["John Hancock","cursive","name","writing"]},{"title":"fas fa-sim-card","searchTerms":["hard drive","hardware","portable","storage","technology","tiny"]},{"title":"fab fa-simplybuilt","searchTerms":[]},{"title":"fas fa-sink","searchTerms":["bathroom","covid-19","faucet","kitchen","wash"]},{"title":"fab fa-sistrix","searchTerms":[]},{"title":"fas fa-sitemap","searchTerms":["directory","hierarchy","ia","information architecture","organization"]},{"title":"fab fa-sith","searchTerms":[]},{"title":"fas fa-skating","searchTerms":["activity","figure skating","fitness","ice","person","winter"]},{"title":"fab fa-sketch","searchTerms":["app","design","interface"]},{"title":"fas fa-skiing","searchTerms":["activity","downhill","fast","fitness","olympics","outdoors","person","seasonal","slalom"]},{"title":"fas fa-skiing-nordic","searchTerms":["activity","cross country","fitness","outdoors","person","seasonal"]},{"title":"fas fa-skull","searchTerms":["bones","skeleton","x-ray","yorick"]},{"title":"fas fa-skull-crossbones","searchTerms":["Dungeons & Dragons","alert","bones","d","danger","dead","deadly","death","dnd","fantasy","halloween","holiday","jolly-roger","pirate","poison","skeleton","warning"]},{"title":"fab fa-skyatlas","searchTerms":[]},{"title":"fab fa-skype","searchTerms":[]},{"title":"fab fa-slack","searchTerms":["anchor","hash","hashtag"]},{"title":"fab fa-slack-hash","searchTerms":["anchor","hash","hashtag"]},{"title":"fas fa-slash","searchTerms":["cancel","close","mute","off","stop","x"]},{"title":"fas fa-sleigh","searchTerms":["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{"title":"fas fa-sliders-h","searchTerms":["adjust","settings","sliders","toggle"]},{"title":"fab fa-slideshare","searchTerms":[]},{"title":"fas fa-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied"]},{"title":"far fa-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied"]},{"title":"fas fa-smile-beam","searchTerms":["emoticon","face","happy","positive"]},{"title":"far fa-smile-beam","searchTerms":["emoticon","face","happy","positive"]},{"title":"fas fa-smile-wink","searchTerms":["emoticon","face","happy","hint","joke"]},{"title":"far fa-smile-wink","searchTerms":["emoticon","face","happy","hint","joke"]},{"title":"fas fa-smog","searchTerms":["dragon","fog","haze","pollution","smoke","weather"]},{"title":"fas fa-smoking","searchTerms":["cancer","cigarette","nicotine","smoking status","tobacco"]},{"title":"fas fa-smoking-ban","searchTerms":["ban","cancel","no smoking","non-smoking"]},{"title":"fas fa-sms","searchTerms":["chat","conversation","message","mobile","notification","phone","sms","texting"]},{"title":"fab fa-snapchat","searchTerms":[]},{"title":"fab fa-snapchat-ghost","searchTerms":[]},{"title":"fab fa-snapchat-square","searchTerms":[]},{"title":"fas fa-snowboarding","searchTerms":["activity","fitness","olympics","outdoors","person"]},{"title":"fas fa-snowflake","searchTerms":["precipitation","rain","winter"]},{"title":"far fa-snowflake","searchTerms":["precipitation","rain","winter"]},{"title":"fas fa-snowman","searchTerms":["decoration","frost","frosty","holiday"]},{"title":"fas fa-snowplow","searchTerms":["clean up","cold","road","storm","winter"]},{"title":"fas fa-soap","searchTerms":["bubbles","clean","covid-19","hygiene","wash"]},{"title":"fas fa-socks","searchTerms":["business socks","business time","clothing","feet","flight of the conchords","wednesday"]},{"title":"fas fa-solar-panel","searchTerms":["clean","eco-friendly","energy","green","sun"]},{"title":"fas fa-sort","searchTerms":["filter","order"]},{"title":"fas fa-sort-alpha-down","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fas fa-sort-alpha-down-alt","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fas fa-sort-alpha-up","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fas fa-sort-alpha-up-alt","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fas fa-sort-amount-down","searchTerms":["arrange","filter","number","order","sort-amount-asc"]},{"title":"fas fa-sort-amount-down-alt","searchTerms":["arrange","filter","order","sort-amount-asc"]},{"title":"fas fa-sort-amount-up","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fas fa-sort-amount-up-alt","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fas fa-sort-down","searchTerms":["arrow","descending","filter","order","sort-desc"]},{"title":"fas fa-sort-numeric-down","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fas fa-sort-numeric-down-alt","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fas fa-sort-numeric-up","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fas fa-sort-numeric-up-alt","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fas fa-sort-up","searchTerms":["arrow","ascending","filter","order","sort-asc"]},{"title":"fab fa-soundcloud","searchTerms":[]},{"title":"fab fa-sourcetree","searchTerms":[]},{"title":"fas fa-spa","searchTerms":["flora","massage","mindfulness","plant","wellness"]},{"title":"fas fa-space-shuttle","searchTerms":["astronaut","machine","nasa","rocket","space","transportation"]},{"title":"fab fa-speakap","searchTerms":[]},{"title":"fab fa-speaker-deck","searchTerms":[]},{"title":"fas fa-spell-check","searchTerms":["dictionary","edit","editor","grammar","text"]},{"title":"fas fa-spider","searchTerms":["arachnid","bug","charlotte","crawl","eight","halloween"]},{"title":"fas fa-spinner","searchTerms":["circle","loading","progress"]},{"title":"fas fa-splotch","searchTerms":["Ink","blob","blotch","glob","stain"]},{"title":"fab fa-spotify","searchTerms":[]},{"title":"fas fa-spray-can","searchTerms":["Paint","aerosol","design","graffiti","tag"]},{"title":"fas fa-square","searchTerms":["block","box","shape"]},{"title":"far fa-square","searchTerms":["block","box","shape"]},{"title":"fas fa-square-full","searchTerms":["block","box","shape"]},{"title":"fas fa-square-root-alt","searchTerms":["arithmetic","calculus","division","math"]},{"title":"fab fa-squarespace","searchTerms":[]},{"title":"fab fa-stack-exchange","searchTerms":[]},{"title":"fab fa-stack-overflow","searchTerms":[]},{"title":"fab fa-stackpath","searchTerms":[]},{"title":"fas fa-stamp","searchTerms":["art","certificate","imprint","rubber","seal"]},{"title":"fas fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score"]},{"title":"far fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score"]},{"title":"fas fa-star-and-crescent","searchTerms":["islam","muslim","religion"]},{"title":"fas fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"far fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fas fa-star-half-alt","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fas fa-star-of-david","searchTerms":["jewish","judaism","religion"]},{"title":"fas fa-star-of-life","searchTerms":["doctor","emt","first aid","health","medical"]},{"title":"fab fa-staylinked","searchTerms":[]},{"title":"fab fa-steam","searchTerms":[]},{"title":"fab fa-steam-square","searchTerms":[]},{"title":"fab fa-steam-symbol","searchTerms":[]},{"title":"fas fa-step-backward","searchTerms":["beginning","first","previous","rewind","start"]},{"title":"fas fa-step-forward","searchTerms":["end","last","next"]},{"title":"fas fa-stethoscope","searchTerms":["covid-19","diagnosis","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{"title":"fab fa-sticker-mule","searchTerms":[]},{"title":"fas fa-sticky-note","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"far fa-sticky-note","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"fas fa-stop","searchTerms":["block","box","square"]},{"title":"fas fa-stop-circle","searchTerms":["block","box","circle","square"]},{"title":"far fa-stop-circle","searchTerms":["block","box","circle","square"]},{"title":"fas fa-stopwatch","searchTerms":["clock","reminder","time"]},{"title":"fas fa-stopwatch-20","searchTerms":["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{"title":"fas fa-store","searchTerms":["building","buy","purchase","shopping"]},{"title":"fas fa-store-alt","searchTerms":["building","buy","purchase","shopping"]},{"title":"fas fa-store-alt-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fas fa-store-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fab fa-strava","searchTerms":[]},{"title":"fas fa-stream","searchTerms":["flow","list","timeline"]},{"title":"fas fa-street-view","searchTerms":["directions","location","map","navigation"]},{"title":"fas fa-strikethrough","searchTerms":["cancel","edit","font","format","text","type"]},{"title":"fab fa-stripe","searchTerms":[]},{"title":"fab fa-stripe-s","searchTerms":[]},{"title":"fas fa-stroopwafel","searchTerms":["caramel","cookie","dessert","sweets","waffle"]},{"title":"fab fa-studiovinari","searchTerms":[]},{"title":"fab fa-stumbleupon","searchTerms":[]},{"title":"fab fa-stumbleupon-circle","searchTerms":[]},{"title":"fas fa-subscript","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-subway","searchTerms":["machine","railway","train","transportation","vehicle"]},{"title":"fas fa-suitcase","searchTerms":["baggage","luggage","move","suitcase","travel","trip"]},{"title":"fas fa-suitcase-rolling","searchTerms":["baggage","luggage","move","suitcase","travel","trip"]},{"title":"fas fa-sun","searchTerms":["brighten","contrast","day","lighter","sol","solar","star","weather"]},{"title":"far fa-sun","searchTerms":["brighten","contrast","day","lighter","sol","solar","star","weather"]},{"title":"fab fa-superpowers","searchTerms":[]},{"title":"fas fa-superscript","searchTerms":["edit","exponential","font","format","text","type"]},{"title":"fab fa-supple","searchTerms":[]},{"title":"fas fa-surprise","searchTerms":["emoticon","face","shocked"]},{"title":"far fa-surprise","searchTerms":["emoticon","face","shocked"]},{"title":"fab fa-suse","searchTerms":["linux","operating system","os"]},{"title":"fas fa-swatchbook","searchTerms":["Pantone","color","design","hue","palette"]},{"title":"fab fa-swift","searchTerms":[]},{"title":"fas fa-swimmer","searchTerms":["athlete","head","man","olympics","person","pool","water"]},{"title":"fas fa-swimming-pool","searchTerms":["ladder","recreation","swim","water"]},{"title":"fab fa-symfony","searchTerms":[]},{"title":"fas fa-synagogue","searchTerms":["building","jewish","judaism","religion","star of david","temple"]},{"title":"fas fa-sync","searchTerms":["exchange","refresh","reload","rotate","swap"]},{"title":"fas fa-sync-alt","searchTerms":["exchange","refresh","reload","rotate","swap"]},{"title":"fas fa-syringe","searchTerms":["covid-19","doctor","immunizations","medical","needle"]},{"title":"fas fa-table","searchTerms":["data","excel","spreadsheet"]},{"title":"fas fa-table-tennis","searchTerms":["ball","paddle","ping pong"]},{"title":"fas fa-tablet","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fas fa-tablet-alt","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fas fa-tablets","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fas fa-tachometer-alt","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fas fa-tag","searchTerms":["discount","label","price","shopping"]},{"title":"fas fa-tags","searchTerms":["discount","label","price","shopping"]},{"title":"fas fa-tape","searchTerms":["design","package","sticky"]},{"title":"fas fa-tasks","searchTerms":["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{"title":"fas fa-taxi","searchTerms":["cab","cabbie","car","car service","lyft","machine","transportation","travel","uber","vehicle"]},{"title":"fab fa-teamspeak","searchTerms":[]},{"title":"fas fa-teeth","searchTerms":["bite","dental","dentist","gums","mouth","smile","tooth"]},{"title":"fas fa-teeth-open","searchTerms":["dental","dentist","gums bite","mouth","smile","tooth"]},{"title":"fab fa-telegram","searchTerms":[]},{"title":"fab fa-telegram-plane","searchTerms":[]},{"title":"fas fa-temperature-high","searchTerms":["cook","covid-19","mercury","summer","thermometer","warm"]},{"title":"fas fa-temperature-low","searchTerms":["cold","cool","covid-19","mercury","thermometer","winter"]},{"title":"fab fa-tencent-weibo","searchTerms":[]},{"title":"fas fa-tenge","searchTerms":["currency","kazakhstan","money","price"]},{"title":"fas fa-terminal","searchTerms":["code","command","console","development","prompt"]},{"title":"fas fa-text-height","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-text-width","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-th","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fas fa-th-large","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fas fa-th-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fab fa-the-red-yeti","searchTerms":[]},{"title":"fas fa-theater-masks","searchTerms":["comedy","perform","theatre","tragedy"]},{"title":"fab fa-themeco","searchTerms":[]},{"title":"fab fa-themeisle","searchTerms":[]},{"title":"fas fa-thermometer","searchTerms":["covid-19","mercury","status","temperature"]},{"title":"fas fa-thermometer-empty","searchTerms":["cold","mercury","status","temperature"]},{"title":"fas fa-thermometer-full","searchTerms":["fever","hot","mercury","status","temperature"]},{"title":"fas fa-thermometer-half","searchTerms":["mercury","status","temperature"]},{"title":"fas fa-thermometer-quarter","searchTerms":["mercury","status","temperature"]},{"title":"fas fa-thermometer-three-quarters","searchTerms":["mercury","status","temperature"]},{"title":"fab fa-think-peaks","searchTerms":[]},{"title":"fas fa-thumbs-down","searchTerms":["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{"title":"far fa-thumbs-down","searchTerms":["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{"title":"fas fa-thumbs-up","searchTerms":["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{"title":"far fa-thumbs-up","searchTerms":["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{"title":"fas fa-thumbtack","searchTerms":["coordinates","location","marker","pin","thumb-tack"]},{"title":"fas fa-ticket-alt","searchTerms":["movie","pass","support","ticket"]},{"title":"fab fa-tiktok","searchTerms":[]},{"title":"fas fa-times","searchTerms":["close","cross","error","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fas fa-times-circle","searchTerms":["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"far fa-times-circle","searchTerms":["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fas fa-tint","searchTerms":["color","drop","droplet","raindrop","waterdrop"]},{"title":"fas fa-tint-slash","searchTerms":["color","drop","droplet","raindrop","waterdrop"]},{"title":"fas fa-tired","searchTerms":["angry","emoticon","face","grumpy","upset"]},{"title":"far fa-tired","searchTerms":["angry","emoticon","face","grumpy","upset"]},{"title":"fas fa-toggle-off","searchTerms":["switch"]},{"title":"fas fa-toggle-on","searchTerms":["switch"]},{"title":"fas fa-toilet","searchTerms":["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","washroom","waste","wc"]},{"title":"fas fa-toilet-paper","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","prank","restroom","roll"]},{"title":"fas fa-toilet-paper-slash","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","restroom","roll","trouble","ut oh"]},{"title":"fas fa-toolbox","searchTerms":["admin","container","fix","repair","settings","tools"]},{"title":"fas fa-tools","searchTerms":["admin","fix","repair","screwdriver","settings","tools","wrench"]},{"title":"fas fa-tooth","searchTerms":["bicuspid","dental","dentist","molar","mouth","teeth"]},{"title":"fas fa-torah","searchTerms":["book","jewish","judaism","religion","scroll"]},{"title":"fas fa-torii-gate","searchTerms":["building","shintoism"]},{"title":"fas fa-tractor","searchTerms":["agriculture","farm","vehicle"]},{"title":"fab fa-trade-federation","searchTerms":[]},{"title":"fas fa-trademark","searchTerms":["copyright","register","symbol"]},{"title":"fas fa-traffic-light","searchTerms":["direction","road","signal","travel"]},{"title":"fas fa-trailer","searchTerms":["carry","haul","moving","travel"]},{"title":"fas fa-train","searchTerms":["bullet","commute","locomotive","railway","subway"]},{"title":"fas fa-tram","searchTerms":["crossing","machine","mountains","seasonal","transportation"]},{"title":"fas fa-transgender","searchTerms":["intersex"]},{"title":"fas fa-transgender-alt","searchTerms":["intersex"]},{"title":"fas fa-trash","searchTerms":["delete","garbage","hide","remove"]},{"title":"fas fa-trash-alt","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"far fa-trash-alt","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"fas fa-trash-restore","searchTerms":["back","control z","oops","undo"]},{"title":"fas fa-trash-restore-alt","searchTerms":["back","control z","oops","undo"]},{"title":"fas fa-tree","searchTerms":["bark","fall","flora","forest","nature","plant","seasonal"]},{"title":"fab fa-trello","searchTerms":["atlassian"]},{"title":"fas fa-trophy","searchTerms":["achievement","award","cup","game","winner"]},{"title":"fas fa-truck","searchTerms":["cargo","delivery","shipping","vehicle"]},{"title":"fas fa-truck-loading","searchTerms":["box","cargo","delivery","inventory","moving","rental","vehicle"]},{"title":"fas fa-truck-monster","searchTerms":["offroad","vehicle","wheel"]},{"title":"fas fa-truck-moving","searchTerms":["cargo","inventory","rental","vehicle"]},{"title":"fas fa-truck-pickup","searchTerms":["cargo","vehicle"]},{"title":"fas fa-tshirt","searchTerms":["clothing","fashion","garment","shirt"]},{"title":"fas fa-tty","searchTerms":["communication","deaf","telephone","teletypewriter","text"]},{"title":"fab fa-tumblr","searchTerms":[]},{"title":"fab fa-tumblr-square","searchTerms":[]},{"title":"fas fa-tv","searchTerms":["computer","display","monitor","television"]},{"title":"fab fa-twitch","searchTerms":[]},{"title":"fab fa-twitter","searchTerms":["social network","tweet"]},{"title":"fab fa-twitter-square","searchTerms":["social network","tweet"]},{"title":"fab fa-typo3","searchTerms":[]},{"title":"fab fa-uber","searchTerms":[]},{"title":"fab fa-ubuntu","searchTerms":["linux","operating system","os"]},{"title":"fab fa-uikit","searchTerms":[]},{"title":"fab fa-umbraco","searchTerms":[]},{"title":"fas fa-umbrella","searchTerms":["protection","rain","storm","wet"]},{"title":"fas fa-umbrella-beach","searchTerms":["protection","recreation","sand","shade","summer","sun"]},{"title":"fab fa-uncharted","searchTerms":[]},{"title":"fas fa-underline","searchTerms":["edit","emphasis","format","text","writing"]},{"title":"fas fa-undo","searchTerms":["back","control z","exchange","oops","return","rotate","swap"]},{"title":"fas fa-undo-alt","searchTerms":["back","control z","exchange","oops","return","swap"]},{"title":"fab fa-uniregistry","searchTerms":[]},{"title":"fab fa-unity","searchTerms":[]},{"title":"fas fa-universal-access","searchTerms":["accessibility","hearing","person","seeing","visual impairment"]},{"title":"fas fa-university","searchTerms":["bank","building","college","higher education - students","institution"]},{"title":"fas fa-unlink","searchTerms":["attachment","chain","chain-broken","remove"]},{"title":"fas fa-unlock","searchTerms":["admin","lock","password","private","protect"]},{"title":"fas fa-unlock-alt","searchTerms":["admin","lock","password","private","protect"]},{"title":"fab fa-unsplash","searchTerms":[]},{"title":"fab fa-untappd","searchTerms":[]},{"title":"fas fa-upload","searchTerms":["hard drive","import","publish"]},{"title":"fab fa-ups","searchTerms":["United Parcel Service","package","shipping"]},{"title":"fab fa-usb","searchTerms":[]},{"title":"fas fa-user","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"far fa-user","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-alt","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-alt-slash","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-astronaut","searchTerms":["avatar","clothing","cosmonaut","nasa","space","suit"]},{"title":"fas fa-user-check","searchTerms":["accept","check","person","verified"]},{"title":"fas fa-user-circle","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"far fa-user-circle","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-clock","searchTerms":["alert","person","remind","time"]},{"title":"fas fa-user-cog","searchTerms":["admin","cog","person","settings"]},{"title":"fas fa-user-edit","searchTerms":["edit","pen","pencil","person","update","write"]},{"title":"fas fa-user-friends","searchTerms":["group","people","person","team","users"]},{"title":"fas fa-user-graduate","searchTerms":["cap","clothing","commencement","gown","graduation","person","student"]},{"title":"fas fa-user-injured","searchTerms":["cast","injury","ouch","patient","person","sling"]},{"title":"fas fa-user-lock","searchTerms":["admin","lock","person","private","unlock"]},{"title":"fas fa-user-md","searchTerms":["covid-19","job","medical","nurse","occupation","physician","profile","surgeon"]},{"title":"fas fa-user-minus","searchTerms":["delete","negative","remove"]},{"title":"fas fa-user-ninja","searchTerms":["assassin","avatar","dangerous","deadly","sneaky"]},{"title":"fas fa-user-nurse","searchTerms":["covid-19","doctor","midwife","practitioner","surgeon"]},{"title":"fas fa-user-plus","searchTerms":["add","avatar","positive","sign up","signup","team"]},{"title":"fas fa-user-secret","searchTerms":["clothing","coat","hat","incognito","person","privacy","spy","whisper"]},{"title":"fas fa-user-shield","searchTerms":["admin","person","private","protect","safe"]},{"title":"fas fa-user-slash","searchTerms":["ban","delete","remove"]},{"title":"fas fa-user-tag","searchTerms":["avatar","discount","label","person","role","special"]},{"title":"fas fa-user-tie","searchTerms":["avatar","business","clothing","formal","professional","suit"]},{"title":"fas fa-user-times","searchTerms":["archive","delete","remove","x"]},{"title":"fas fa-users","searchTerms":["friends","group","people","persons","profiles","team"]},{"title":"fas fa-users-cog","searchTerms":["admin","cog","group","person","settings","team"]},{"title":"fas fa-users-slash","searchTerms":["disband","friends","group","people","persons","profiles","separate","team","ungroup"]},{"title":"fab fa-usps","searchTerms":["american","package","shipping","usa"]},{"title":"fab fa-ussunnah","searchTerms":[]},{"title":"fas fa-utensil-spoon","searchTerms":["cutlery","dining","scoop","silverware","spoon"]},{"title":"fas fa-utensils","searchTerms":["cutlery","dining","dinner","eat","food","fork","knife","restaurant"]},{"title":"fab fa-vaadin","searchTerms":[]},{"title":"fas fa-vector-square","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fas fa-venus","searchTerms":["female"]},{"title":"fas fa-venus-double","searchTerms":["female"]},{"title":"fas fa-venus-mars","searchTerms":["Gender"]},{"title":"fas fa-vest","searchTerms":["biker","fashion","style"]},{"title":"fas fa-vest-patches","searchTerms":["biker","fashion","style"]},{"title":"fab fa-viacoin","searchTerms":[]},{"title":"fab fa-viadeo","searchTerms":[]},{"title":"fab fa-viadeo-square","searchTerms":[]},{"title":"fas fa-vial","searchTerms":["experiment","lab","sample","science","test","test tube"]},{"title":"fas fa-vials","searchTerms":["experiment","lab","sample","science","test","test tube"]},{"title":"fab fa-viber","searchTerms":[]},{"title":"fas fa-video","searchTerms":["camera","film","movie","record","video-camera"]},{"title":"fas fa-video-slash","searchTerms":["add","create","film","new","positive","record","video"]},{"title":"fas fa-vihara","searchTerms":["buddhism","buddhist","building","monastery"]},{"title":"fab fa-vimeo","searchTerms":[]},{"title":"fab fa-vimeo-square","searchTerms":[]},{"title":"fab fa-vimeo-v","searchTerms":["vimeo"]},{"title":"fab fa-vine","searchTerms":[]},{"title":"fas fa-virus","searchTerms":["bug","covid-19","flu","health","sick","viral"]},{"title":"fas fa-virus-slash","searchTerms":["bug","covid-19","cure","eliminate","flu","health","sick","viral"]},{"title":"fas fa-viruses","searchTerms":["bugs","covid-19","flu","health","multiply","sick","spread","viral"]},{"title":"fab fa-vk","searchTerms":[]},{"title":"fab fa-vnv","searchTerms":[]},{"title":"fas fa-voicemail","searchTerms":["answer","inbox","message","phone"]},{"title":"fas fa-volleyball-ball","searchTerms":["beach","olympics","sport"]},{"title":"fas fa-volume-down","searchTerms":["audio","lower","music","quieter","sound","speaker"]},{"title":"fas fa-volume-mute","searchTerms":["audio","music","quiet","sound","speaker"]},{"title":"fas fa-volume-off","searchTerms":["audio","ban","music","mute","quiet","silent","sound"]},{"title":"fas fa-volume-up","searchTerms":["audio","higher","louder","music","sound","speaker"]},{"title":"fas fa-vote-yea","searchTerms":["accept","cast","election","politics","positive","yes"]},{"title":"fas fa-vr-cardboard","searchTerms":["3d","augment","google","reality","virtual"]},{"title":"fab fa-vuejs","searchTerms":[]},{"title":"fas fa-walking","searchTerms":["exercise","health","pedometer","person","steps"]},{"title":"fas fa-wallet","searchTerms":["billfold","cash","currency","money"]},{"title":"fas fa-warehouse","searchTerms":["building","capacity","garage","inventory","storage"]},{"title":"fab fa-watchman-monitoring","searchTerms":[]},{"title":"fas fa-water","searchTerms":["lake","liquid","ocean","sea","swim","wet"]},{"title":"fas fa-wave-square","searchTerms":["frequency","pulse","signal"]},{"title":"fab fa-waze","searchTerms":[]},{"title":"fab fa-weebly","searchTerms":[]},{"title":"fab fa-weibo","searchTerms":[]},{"title":"fas fa-weight","searchTerms":["health","measurement","scale","weight"]},{"title":"fas fa-weight-hanging","searchTerms":["anvil","heavy","measurement"]},{"title":"fab fa-weixin","searchTerms":[]},{"title":"fab fa-whatsapp","searchTerms":[]},{"title":"fab fa-whatsapp-square","searchTerms":[]},{"title":"fas fa-wheelchair","searchTerms":["accessible","handicap","person"]},{"title":"fab fa-whmcs","searchTerms":[]},{"title":"fas fa-wifi","searchTerms":["connection","hotspot","internet","network","wireless"]},{"title":"fab fa-wikipedia-w","searchTerms":[]},{"title":"fas fa-wind","searchTerms":["air","blow","breeze","fall","seasonal","weather"]},{"title":"fas fa-window-close","searchTerms":["browser","cancel","computer","development"]},{"title":"far fa-window-close","searchTerms":["browser","cancel","computer","development"]},{"title":"fas fa-window-maximize","searchTerms":["browser","computer","development","expand"]},{"title":"far fa-window-maximize","searchTerms":["browser","computer","development","expand"]},{"title":"fas fa-window-minimize","searchTerms":["browser","collapse","computer","development"]},{"title":"far fa-window-minimize","searchTerms":["browser","collapse","computer","development"]},{"title":"fas fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"far fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"fab fa-windows","searchTerms":["microsoft","operating system","os"]},{"title":"fas fa-wine-bottle","searchTerms":["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{"title":"fas fa-wine-glass","searchTerms":["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{"title":"fas fa-wine-glass-alt","searchTerms":["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{"title":"fab fa-wix","searchTerms":[]},{"title":"fab fa-wizards-of-the-coast","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fab fa-wodu","searchTerms":[]},{"title":"fab fa-wolf-pack-battalion","searchTerms":[]},{"title":"fas fa-won-sign","searchTerms":["currency","krw","money"]},{"title":"fab fa-wordpress","searchTerms":[]},{"title":"fab fa-wordpress-simple","searchTerms":[]},{"title":"fab fa-wpbeginner","searchTerms":[]},{"title":"fab fa-wpexplorer","searchTerms":[]},{"title":"fab fa-wpforms","searchTerms":[]},{"title":"fab fa-wpressr","searchTerms":["rendact"]},{"title":"fas fa-wrench","searchTerms":["construction","fix","mechanic","plumbing","settings","spanner","tool","update"]},{"title":"fas fa-x-ray","searchTerms":["health","medical","radiological images","radiology","skeleton"]},{"title":"fab fa-xbox","searchTerms":[]},{"title":"fab fa-xing","searchTerms":[]},{"title":"fab fa-xing-square","searchTerms":[]},{"title":"fab fa-y-combinator","searchTerms":[]},{"title":"fab fa-yahoo","searchTerms":[]},{"title":"fab fa-yammer","searchTerms":[]},{"title":"fab fa-yandex","searchTerms":[]},{"title":"fab fa-yandex-international","searchTerms":[]},{"title":"fab fa-yarn","searchTerms":[]},{"title":"fab fa-yelp","searchTerms":[]},{"title":"fas fa-yen-sign","searchTerms":["currency","jpy","money"]},{"title":"fas fa-yin-yang","searchTerms":["daoism","opposites","taoism"]},{"title":"fab fa-yoast","searchTerms":[]},{"title":"fab fa-youtube","searchTerms":["film","video","youtube-play","youtube-square"]},{"title":"fab fa-youtube-square","searchTerms":[]},{"title":"fab fa-zhihu","searchTerms":[]}] }); }); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.min.js b/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.min.js index c4be49c..93817dc 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.min.js +++ b/vendor/ayecode/wp-ayecode-ui/assets/js/fa-iconpicker.min.js @@ -1 +1 @@ -(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{a(jQuery)}})(function(a){a.ui=a.ui||{};var b=a.ui.version="1.12.1";(function(){var b,c=Math.max,d=Math.abs,e=/left|center|right/,f=/top|center|bottom/,g=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,i=/%$/,j=a.fn.pos;function k(a,b,c){return[parseFloat(a[0])*(i.test(a[0])?b/100:1),parseFloat(a[1])*(i.test(a[1])?c/100:1)]}function l(b,c){return parseInt(a.css(b,c),10)||0}function m(b){var c=b[0];if(c.nodeType===9){return{width:b.width(),height:b.height(),offset:{top:0,left:0}}}if(a.isWindow(c)){return{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}}if(c.preventDefault){return{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}}return{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.pos={scrollbarWidth:function(){if(b!==undefined){return b}var c,d,e=a("
      "+"
      "),f=e.children()[0];a("body").append(e);c=f.offsetWidth;e.css("overflow","scroll");d=f.offsetWidth;if(c===d){d=e[0].clientWidth}e.remove();return b=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e=c==="scroll"||c==="auto"&&b.width0?"right":"center",vertical:k<0?"top":i>0?"bottom":"middle"};if(nc(d(i),d(k))){l.important="horizontal"}else{l.important="vertical"}b.using.call(this,a,l)}}g.offset(a.extend(z,{using:f}))})};a.ui.pos={_trigger:function(a,b,c,d){if(b.elem){b.elem.trigger({type:c,position:a,positionData:b,triggered:d})}},fit:{left:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitLeft");var e=d.within,f=e.isWindow?e.scrollLeft:e.offset.left,g=e.width,h=b.left-d.collisionPosition.marginLeft,i=f-h,j=h+d.collisionWidth-g-f,k;if(d.collisionWidth>g){if(i>0&&j<=0){k=b.left+i+d.collisionWidth-g-f;b.left+=i-k}else if(j>0&&i<=0){b.left=f}else{if(i>j){b.left=f+g-d.collisionWidth}else{b.left=f}}}else if(i>0){b.left+=i}else if(j>0){b.left-=j}else{b.left=c(b.left-h,b.left)}a.ui.pos._trigger(b,d,"posCollided","fitLeft")},top:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitTop");var e=d.within,f=e.isWindow?e.scrollTop:e.offset.top,g=d.within.height,h=b.top-d.collisionPosition.marginTop,i=f-h,j=h+d.collisionHeight-g-f,k;if(d.collisionHeight>g){if(i>0&&j<=0){k=b.top+i+d.collisionHeight-g-f;b.top+=i-k}else if(j>0&&i<=0){b.top=f}else{if(i>j){b.top=f+g-d.collisionHeight}else{b.top=f}}}else if(i>0){b.top+=i}else if(j>0){b.top-=j}else{b.top=c(b.top-h,b.top)}a.ui.pos._trigger(b,d,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var e=c.within,f=e.offset.left+e.scrollLeft,g=e.width,h=e.isWindow?e.scrollLeft:e.offset.left,i=b.left-c.collisionPosition.marginLeft,j=i-h,k=i+c.collisionWidth-g-h,l=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,m=c.at[0]==="left"?c.targetWidth:c.at[0]==="right"?-c.targetWidth:0,n=-2*c.offset[0],o,p;if(j<0){o=b.left+l+m+n+c.collisionWidth-g-f;if(o<0||o0){p=b.left-c.collisionPosition.marginLeft+l+m+n-h;if(p>0||d(p)0){p=b.top-c.collisionPosition.marginTop+m+n+o-h;if(p>0||d(p)10&&e<11;b.innerHTML="";c.removeChild(b)})()})();var c=a.ui.position});(function(a){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],a)}else if(window.jQuery&&!window.jQuery.fn.iconpicker){a(window.jQuery)}})(function(a){"use strict";var b={isEmpty:function(a){return a===false||a===""||a===null||a===undefined},isEmptyObject:function(a){return this.isEmpty(a)===true||a.length===0},isElement:function(b){return a(b).length>0},isString:function(a){return typeof a==="string"||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return a.inArray(b,c)!==-1},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}};var c=function(d,e){this._id=c._idCounter++;this.element=a(d).addClass("iconpicker-element");this._trigger("iconpickerCreate",{iconpickerValue:this.iconpickerValue});this.options=a.extend({},c.defaultOptions,this.element.data(),e);this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates);this.options.originalPlacement=this.options.placement;this.container=b.isElement(this.options.container)?a(this.options.container):false;if(this.container===false){if(this.element.is(".dropdown-toggle")){this.container=a("~ .dropdown-menu:first",this.element)}else{this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element}}this.container.addClass("iconpicker-container");if(this.isDropdownMenu()){this.options.placement="inline"}this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):false;if(this.input===false){this.input=this.container.find(this.options.input);if(!this.input.is("input,textarea")){this.input=false}}this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component);if(this.component.length===0){this.component=false}else{this.component.find("i").addClass("iconpicker-component")}this._createPopover();this._createIconpicker();if(this.getAcceptButton().length===0){this.options.mustAccept=false}if(this.isInputGroup()){this.container.parent().append(this.popover)}else{this.container.append(this.popover)}this._bindElementEvents();this._bindWindowEvents();this.update(this.options.selected);if(this.isInline()){this.show()}this._trigger("iconpickerCreated",{iconpickerValue:this.iconpickerValue})};c._idCounter=0;c.defaultOptions={title:false,selected:false,defaultValue:false,placement:"bottom",collision:"none",animation:true,hideOnSelect:true,showFooter:false,searchInFooter:false,mustAccept:false,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return a},input:"input,.iconpicker-input",inputSearch:false,container:false,component:".input-group-addon,.iconpicker-component",templates:{popover:'
      '+'
      ',footer:'',buttons:''+' ',search:'',iconpicker:'
      ',iconpickerItem:''}};c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");if(!!b){b[c].apply(b,d)}})};c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{};this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(!!this.options.title){c.append(a('
      '+this.options.title+"
      "))}if(this.hasSeparatedSearchInput()&&!this.options.searchInFooter){c.append(this.options.templates.search)}else if(!this.options.title){c.remove()}if(this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);if(this.hasSeparatedSearchInput()&&this.options.searchInFooter){d.append(a(this.options.templates.search))}if(!b.isEmpty(this.options.templates.buttons)){d.append(a(this.options.templates.buttons))}this.popover.append(d)}if(this.options.animation===true){this.popover.addClass("fade")}return this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);if(d.is("i")){d=d.parent()}b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue});if(b.options.mustAccept===false){b.update(d.data("iconpickerValue"));b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})}else{b.update(d.data("iconpickerValue"),true)}if(b.options.hideOnSelect&&b.options.mustAccept===false){b.hide()}};for(var d in this.options.icons){if(typeof this.options.icons[d].title==="string"){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title));e.data("iconpickerValue",this.options.icons[d].title).on("click.iconpicker",c);this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d].title));if(this.options.icons[d].searchTerms.length>0){var f="";for(var g=0;g0){a.attr("class",this.options.fullClassFormatter(this.iconpickerValue))}else{this.component.html(this.getHtml())}}},_updateFormGroupStatus:function(a){if(this.hasInput()){if(a!==false){this.input.parents(".form-group:first").removeClass("has-error")}else{this.input.parents(".form-group:first").addClass("has-error")}return true}return false},getValid:function(c){if(!b.isString(c)){c=""}var d=c==="";c=a.trim(c);var e=false;for(var f=0;f'},setSourceValue:function(a){a=this.setValue(a);if(a!==false&&a!==""){if(this.hasInput()){this.input.val(this.iconpickerValue)}else{this.element.data("iconpickerValue",this.iconpickerValue)}this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})}return a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;if(this.hasInput()){b=this.input.val()}else{b=this.element.data("iconpickerValue")}if(b===undefined||b===""||b===null||b===false){b=a}return b},hasInput:function(){return this.input!==false},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===true},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==false&&!this.isInputSearch()},hasComponent:function(){return this.component!==false},hasContainer:function(){return this.container!==false},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c)){this.iconpicker.find(".iconpicker-item").show();return a(false)}else{var d=[];this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this);var e=b.attr("title").toLowerCase();var f=b.attr("data-search-terms")?b.attr("data-search-terms").toLowerCase():"";e=e+" "+f;var g=false;try{g=new RegExp("(^|\\W)"+c,"g")}catch(a){g=false}if(g!==false&&e.match(g)){d.push(b);b.show()}else{b.hide()}});return d}},show:function(){if(this.popover.hasClass("show")){return false}a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide");this._trigger("iconpickerShow",{iconpickerValue:this.iconpickerValue});this.updatePlacement();this.popover.addClass("show");setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block");this._trigger("iconpickerShown",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},hide:function(){if(!this.popover.hasClass("show")){return false}this._trigger("iconpickerHide",{iconpickerValue:this.iconpickerValue});this.popover.removeClass("show");setTimeout(a.proxy(function(){this.popover.css("display","none");this.getSearchInput().val("");this.filter("");this._trigger("iconpickerHidden",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},toggle:function(){if(this.popover.is(":visible")){this.hide()}else{this.show(true)}},update:function(a,b){a=a?a:this.getSourceValue(this.iconpickerValue);this._trigger("iconpickerUpdate",{iconpickerValue:this.iconpickerValue});if(b===true){a=this.setValue(a)}else{a=this.setSourceValue(a);this._updateFormGroupStatus(a!==false)}if(a!==false){this._updateComponents()}this._trigger("iconpickerUpdated",{iconpickerValue:this.iconpickerValue});return a},destroy:function(){this._trigger("iconpickerDestroy",{iconpickerValue:this.iconpickerValue});this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");this._unbindElementEvents();this._unbindWindowEvents();a(this.popover).remove();this._trigger("iconpickerDestroyed",{iconpickerValue:this.iconpickerValue})},disable:function(){if(this.hasInput()){this.input.prop("disabled",true);return true}return false},enable:function(){if(this.hasInput()){this.input.prop("disabled",false);return true}return false},isDisabled:function(){if(this.hasInput()){return this.input.prop("disabled")===true}return false},isInline:function(){return this.options.placement==="inline"||this.popover.hasClass("inline")}};a.iconpicker=c;a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);if(!d.data("iconpicker")){d.data("iconpicker",new c(this,typeof b==="object"?b:{}))}})};c.defaultOptions=a.extend(c.defaultOptions,{icons:[{title:"fab fa-500px",searchTerms:[]},{title:"fab fa-accessible-icon",searchTerms:["accessibility","wheelchair","handicap","person","wheelchair-alt"]},{title:"fab fa-accusoft",searchTerms:[]},{title:"fas fa-address-book",searchTerms:[]},{title:"far fa-address-book",searchTerms:[]},{title:"fas fa-address-card",searchTerms:[]},{title:"far fa-address-card",searchTerms:[]},{title:"fas fa-adjust",searchTerms:["contrast"]},{title:"fab fa-adn",searchTerms:[]},{title:"fab fa-adversal",searchTerms:[]},{title:"fab fa-affiliatetheme",searchTerms:[]},{title:"fab fa-algolia",searchTerms:[]},{title:"fas fa-align-center",searchTerms:["middle","text"]},{title:"fas fa-align-justify",searchTerms:["text"]},{title:"fas fa-align-left",searchTerms:["text"]},{title:"fas fa-align-right",searchTerms:["text"]},{title:"fab fa-amazon",searchTerms:[]},{title:"fab fa-amazon-pay",searchTerms:[]},{title:"fas fa-ambulance",searchTerms:["vehicle","support","help"]},{title:"fas fa-american-sign-language-interpreting",searchTerms:[]},{title:"fab fa-amilia",searchTerms:[]},{title:"fas fa-anchor",searchTerms:["link"]},{title:"fab fa-android",searchTerms:["robot"]},{title:"fab fa-angellist",searchTerms:[]},{title:"fas fa-angle-double-down",searchTerms:["arrows"]},{title:"fas fa-angle-double-left",searchTerms:["laquo","quote","previous","back","arrows"]},{title:"fas fa-angle-double-right",searchTerms:["raquo","quote","next","forward","arrows"]},{title:"fas fa-angle-double-up",searchTerms:["arrows"]},{title:"fas fa-angle-down",searchTerms:["arrow"]},{title:"fas fa-angle-left",searchTerms:["previous","back","arrow"]},{title:"fas fa-angle-right",searchTerms:["next","forward","arrow"]},{title:"fas fa-angle-up",searchTerms:["arrow"]},{title:"fab fa-angrycreative",searchTerms:[]},{title:"fab fa-angular",searchTerms:[]},{title:"fab fa-app-store",searchTerms:[]},{title:"fab fa-app-store-ios",searchTerms:[]},{title:"fab fa-apper",searchTerms:[]},{title:"fab fa-apple",searchTerms:["osx","food"]},{title:"fab fa-apple-pay",searchTerms:[]},{title:"fas fa-archive",searchTerms:["box","storage","package"]},{title:"fas fa-arrow-alt-circle-down",searchTerms:["download","arrow-circle-o-down"]},{title:"far fa-arrow-alt-circle-down",searchTerms:["download","arrow-circle-o-down"]},{title:"fas fa-arrow-alt-circle-left",searchTerms:["previous","back","arrow-circle-o-left"]},{title:"far fa-arrow-alt-circle-left",searchTerms:["previous","back","arrow-circle-o-left"]},{title:"fas fa-arrow-alt-circle-right",searchTerms:["next","forward","arrow-circle-o-right"]},{title:"far fa-arrow-alt-circle-right",searchTerms:["next","forward","arrow-circle-o-right"]},{title:"fas fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"far fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fas fa-arrow-circle-down",searchTerms:["download"]},{title:"fas fa-arrow-circle-left",searchTerms:["previous","back"]},{title:"fas fa-arrow-circle-right",searchTerms:["next","forward"]},{title:"fas fa-arrow-circle-up",searchTerms:[]},{title:"fas fa-arrow-down",searchTerms:["download"]},{title:"fas fa-arrow-left",searchTerms:["previous","back"]},{title:"fas fa-arrow-right",searchTerms:["next","forward"]},{title:"fas fa-arrow-up",searchTerms:[]},{title:"fas fa-arrows-alt",searchTerms:["expand","enlarge","fullscreen","bigger","move","reorder","resize","arrow","arrows"]},{title:"fas fa-arrows-alt-h",searchTerms:["resize","arrows-h"]},{title:"fas fa-arrows-alt-v",searchTerms:["resize","arrows-v"]},{title:"fas fa-assistive-listening-systems",searchTerms:[]},{title:"fas fa-asterisk",searchTerms:["details"]},{title:"fab fa-asymmetrik",searchTerms:[]},{title:"fas fa-at",searchTerms:["email","e-mail"]},{title:"fab fa-audible",searchTerms:[]},{title:"fas fa-audio-description",searchTerms:[]},{title:"fab fa-autoprefixer",searchTerms:[]},{title:"fab fa-avianex",searchTerms:[]},{title:"fab fa-aviato",searchTerms:[]},{title:"fab fa-aws",searchTerms:[]},{title:"fas fa-backward",searchTerms:["rewind","previous"]},{title:"fas fa-balance-scale",searchTerms:[]},{title:"fas fa-ban",searchTerms:["delete","remove","trash","hide","block","stop","abort","cancel","ban","prohibit"]},{title:"fas fa-band-aid",searchTerms:["bandage","ouch","boo boo"]},{title:"fab fa-bandcamp",searchTerms:[]},{title:"fas fa-barcode",searchTerms:["scan"]},{title:"fas fa-bars",searchTerms:["menu","drag","reorder","settings","list","ul","ol","checklist","todo","list","hamburger"]},{title:"fas fa-baseball-ball",searchTerms:[]},{title:"fas fa-basketball-ball",searchTerms:[]},{title:"fas fa-bath",searchTerms:[]},{title:"fas fa-battery-empty",searchTerms:["power","status"]},{title:"fas fa-battery-full",searchTerms:["power","status"]},{title:"fas fa-battery-half",searchTerms:["power","status"]},{title:"fas fa-battery-quarter",searchTerms:["power","status"]},{title:"fas fa-battery-three-quarters",searchTerms:["power","status"]},{title:"fas fa-bed",searchTerms:["travel"]},{title:"fas fa-beer",searchTerms:["alcohol","stein","drink","mug","bar","liquor"]},{title:"fab fa-behance",searchTerms:[]},{title:"fab fa-behance-square",searchTerms:[]},{title:"fas fa-bell",searchTerms:["alert","reminder","notification"]},{title:"far fa-bell",searchTerms:["alert","reminder","notification"]},{title:"fas fa-bell-slash",searchTerms:[]},{title:"far fa-bell-slash",searchTerms:[]},{title:"fas fa-bicycle",searchTerms:["vehicle","bike","gears"]},{title:"fab fa-bimobject",searchTerms:[]},{title:"fas fa-binoculars",searchTerms:[]},{title:"fas fa-birthday-cake",searchTerms:[]},{title:"fab fa-bitbucket",searchTerms:["git","bitbucket-square"]},{title:"fab fa-bitcoin",searchTerms:[]},{title:"fab fa-bity",searchTerms:[]},{title:"fab fa-black-tie",searchTerms:[]},{title:"fab fa-blackberry",searchTerms:[]},{title:"fas fa-blind",searchTerms:[]},{title:"fab fa-blogger",searchTerms:[]},{title:"fab fa-blogger-b",searchTerms:[]},{title:"fab fa-bluetooth",searchTerms:[]},{title:"fab fa-bluetooth-b",searchTerms:[]},{title:"fas fa-bold",searchTerms:[]},{title:"fas fa-bolt",searchTerms:["lightning","weather"]},{title:"fas fa-bomb",searchTerms:[]},{title:"fas fa-book",searchTerms:["read","documentation"]},{title:"fas fa-bookmark",searchTerms:["save"]},{title:"far fa-bookmark",searchTerms:["save"]},{title:"fas fa-bowling-ball",searchTerms:[]},{title:"fas fa-box",searchTerms:[]},{title:"fas fa-boxes",searchTerms:[]},{title:"fas fa-braille",searchTerms:[]},{title:"fas fa-briefcase",searchTerms:["work","business","office","luggage","bag"]},{title:"fab fa-btc",searchTerms:[]},{title:"fas fa-bug",searchTerms:["report","insect"]},{title:"fas fa-building",searchTerms:["work","business","apartment","office","company"]},{title:"far fa-building",searchTerms:["work","business","apartment","office","company"]},{title:"fas fa-bullhorn",searchTerms:["announcement","share","broadcast","louder","megaphone"]},{title:"fas fa-bullseye",searchTerms:["target"]},{title:"fab fa-buromobelexperte",searchTerms:[]},{title:"fas fa-bus",searchTerms:["vehicle"]},{title:"fab fa-buysellads",searchTerms:[]},{title:"fas fa-calculator",searchTerms:[]},{title:"fas fa-calendar",searchTerms:["date","time","when","event","calendar-o"]},{title:"far fa-calendar",searchTerms:["date","time","when","event","calendar-o"]},{title:"fas fa-calendar-alt",searchTerms:["date","time","when","event","calendar"]},{title:"far fa-calendar-alt",searchTerms:["date","time","when","event","calendar"]},{title:"fas fa-calendar-check",searchTerms:["ok"]},{title:"far fa-calendar-check",searchTerms:["ok"]},{title:"fas fa-calendar-minus",searchTerms:[]},{title:"far fa-calendar-minus",searchTerms:[]},{title:"fas fa-calendar-plus",searchTerms:[]},{title:"far fa-calendar-plus",searchTerms:[]},{title:"fas fa-calendar-times",searchTerms:[]},{title:"far fa-calendar-times",searchTerms:[]},{title:"fas fa-camera",searchTerms:["photo","picture","record"]},{title:"fas fa-camera-retro",searchTerms:["photo","picture","record"]},{title:"fas fa-car",searchTerms:["vehicle"]},{title:"fas fa-caret-down",searchTerms:["more","dropdown","menu","triangle down","arrow"]},{title:"fas fa-caret-left",searchTerms:["previous","back","triangle left","arrow"]},{title:"fas fa-caret-right",searchTerms:["next","forward","triangle right","arrow"]},{title:"fas fa-caret-square-down",searchTerms:["more","dropdown","menu","caret-square-o-down"]},{title:"far fa-caret-square-down",searchTerms:["more","dropdown","menu","caret-square-o-down"]},{title:"fas fa-caret-square-left",searchTerms:["previous","back","caret-square-o-left"]},{title:"far fa-caret-square-left",searchTerms:["previous","back","caret-square-o-left"]},{title:"fas fa-caret-square-right",searchTerms:["next","forward","caret-square-o-right"]},{title:"far fa-caret-square-right",searchTerms:["next","forward","caret-square-o-right"]},{title:"fas fa-caret-square-up",searchTerms:["caret-square-o-up"]},{title:"far fa-caret-square-up",searchTerms:["caret-square-o-up"]},{title:"fas fa-caret-up",searchTerms:["triangle up","arrow"]},{title:"fas fa-cart-arrow-down",searchTerms:["shopping"]},{title:"fas fa-cart-plus",searchTerms:["add","shopping"]},{title:"fab fa-cc-amazon-pay",searchTerms:[]},{title:"fab fa-cc-amex",searchTerms:["amex"]},{title:"fab fa-cc-apple-pay",searchTerms:[]},{title:"fab fa-cc-diners-club",searchTerms:[]},{title:"fab fa-cc-discover",searchTerms:[]},{title:"fab fa-cc-jcb",searchTerms:[]},{title:"fab fa-cc-mastercard",searchTerms:[]},{title:"fab fa-cc-paypal",searchTerms:[]},{title:"fab fa-cc-stripe",searchTerms:[]},{title:"fab fa-cc-visa",searchTerms:[]},{title:"fab fa-centercode",searchTerms:[]},{title:"fas fa-certificate",searchTerms:["badge","star"]},{title:"fas fa-chart-area",searchTerms:["graph","analytics","area-chart"]},{title:"fas fa-chart-bar",searchTerms:["graph","analytics","bar-chart"]},{title:"far fa-chart-bar",searchTerms:["graph","analytics","bar-chart"]},{title:"fas fa-chart-line",searchTerms:["graph","analytics","line-chart","dashboard"]},{title:"fas fa-chart-pie",searchTerms:["graph","analytics","pie-chart"]},{title:"fas fa-check",searchTerms:["checkmark","done","todo","agree","accept","confirm","tick","ok","select"]},{title:"fas fa-check-circle",searchTerms:["todo","done","agree","accept","confirm","ok","select"]},{title:"far fa-check-circle",searchTerms:["todo","done","agree","accept","confirm","ok","select"]},{title:"fas fa-check-square",searchTerms:["checkmark","done","todo","agree","accept","confirm","ok","select"]},{title:"far fa-check-square",searchTerms:["checkmark","done","todo","agree","accept","confirm","ok","select"]},{title:"fas fa-chess",searchTerms:[]},{title:"fas fa-chess-bishop",searchTerms:[]},{title:"fas fa-chess-board",searchTerms:[]},{title:"fas fa-chess-king",searchTerms:[]},{title:"fas fa-chess-knight",searchTerms:[]},{title:"fas fa-chess-pawn",searchTerms:[]},{title:"fas fa-chess-queen",searchTerms:[]},{title:"fas fa-chess-rook",searchTerms:[]},{title:"fas fa-chevron-circle-down",searchTerms:["more","dropdown","menu","arrow"]},{title:"fas fa-chevron-circle-left",searchTerms:["previous","back","arrow"]},{title:"fas fa-chevron-circle-right",searchTerms:["next","forward","arrow"]},{title:"fas fa-chevron-circle-up",searchTerms:["arrow"]},{title:"fas fa-chevron-down",searchTerms:[]},{title:"fas fa-chevron-left",searchTerms:["bracket","previous","back"]},{title:"fas fa-chevron-right",searchTerms:["bracket","next","forward"]},{title:"fas fa-chevron-up",searchTerms:[]},{title:"fas fa-child",searchTerms:[]},{title:"fab fa-chrome",searchTerms:["browser"]},{title:"fas fa-circle",searchTerms:["dot","notification","circle-thin"]},{title:"far fa-circle",searchTerms:["dot","notification","circle-thin"]},{title:"fas fa-circle-notch",searchTerms:["circle-o-notch"]},{title:"fas fa-clipboard",searchTerms:["paste"]},{title:"far fa-clipboard",searchTerms:["paste"]},{title:"fas fa-clipboard-check",searchTerms:[]},{title:"fas fa-clipboard-list",searchTerms:[]},{title:"fas fa-clock",searchTerms:["watch","timer","late","timestamp","date"]},{title:"far fa-clock",searchTerms:["watch","timer","late","timestamp","date"]},{title:"fas fa-clone",searchTerms:["copy"]},{title:"far fa-clone",searchTerms:["copy"]},{title:"fas fa-closed-captioning",searchTerms:["cc"]},{title:"far fa-closed-captioning",searchTerms:["cc"]},{title:"fas fa-cloud",searchTerms:["save"]},{title:"fas fa-cloud-download-alt",searchTerms:["cloud-download"]},{title:"fas fa-cloud-upload-alt",searchTerms:["cloud-upload"]},{title:"fab fa-cloudscale",searchTerms:[]},{title:"fab fa-cloudsmith",searchTerms:[]},{title:"fab fa-cloudversify",searchTerms:[]},{title:"fas fa-code",searchTerms:["html","brackets"]},{title:"fas fa-code-branch",searchTerms:["git","fork","vcs","svn","github","rebase","version","branch","code-fork"]},{title:"fab fa-codepen",searchTerms:[]},{title:"fab fa-codiepie",searchTerms:[]},{title:"fas fa-coffee",searchTerms:["morning","mug","breakfast","tea","drink","cafe"]},{title:"fas fa-cog",searchTerms:["settings"]},{title:"fas fa-cogs",searchTerms:["settings","gears"]},{title:"fas fa-columns",searchTerms:["split","panes","dashboard"]},{title:"fas fa-comment",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation"]},{title:"far fa-comment",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation"]},{title:"fas fa-comment-alt",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation","commenting","commenting"]},{title:"far fa-comment-alt",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation","commenting","commenting"]},{title:"fas fa-comments",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation"]},{title:"far fa-comments",searchTerms:["speech","notification","note","chat","bubble","feedback","message","texting","sms","conversation"]},{title:"fas fa-compass",searchTerms:["safari","directory","menu","location"]},{title:"far fa-compass",searchTerms:["safari","directory","menu","location"]},{title:"fas fa-compress",searchTerms:["collapse","combine","contract","merge","smaller"]},{title:"fab fa-connectdevelop",searchTerms:[]},{title:"fab fa-contao",searchTerms:[]},{title:"fas fa-copy",searchTerms:["duplicate","clone","file","files-o"]},{title:"far fa-copy",searchTerms:["duplicate","clone","file","files-o"]},{title:"fas fa-copyright",searchTerms:[]},{title:"far fa-copyright",searchTerms:[]},{title:"fab fa-cpanel",searchTerms:[]},{title:"fab fa-creative-commons",searchTerms:[]},{title:"fas fa-credit-card",searchTerms:["money","buy","debit","checkout","purchase","payment","credit-card-alt"]},{title:"far fa-credit-card",searchTerms:["money","buy","debit","checkout","purchase","payment","credit-card-alt"]},{title:"fas fa-crop",searchTerms:["design"]},{title:"fas fa-crosshairs",searchTerms:["picker","gpd"]},{title:"fab fa-css3",searchTerms:["code"]},{title:"fab fa-css3-alt",searchTerms:[]},{title:"fas fa-cube",searchTerms:["package"]},{title:"fas fa-cubes",searchTerms:["packages"]},{title:"fas fa-cut",searchTerms:["scissors","scissors"]},{title:"fab fa-cuttlefish",searchTerms:[]},{title:"fab fa-d-and-d",searchTerms:[]},{title:"fab fa-dashcube",searchTerms:[]},{title:"fas fa-database",searchTerms:[]},{title:"fas fa-deaf",searchTerms:[]},{title:"fab fa-delicious",searchTerms:[]},{title:"fab fa-deploydog",searchTerms:[]},{title:"fab fa-deskpro",searchTerms:[]},{title:"fas fa-desktop",searchTerms:["monitor","screen","desktop","computer","demo","device","pc"]},{title:"fab fa-deviantart",searchTerms:[]},{title:"fab fa-digg",searchTerms:[]},{title:"fab fa-digital-ocean",searchTerms:[]},{title:"fab fa-discord",searchTerms:[]},{title:"fab fa-discourse",searchTerms:[]},{title:"fas fa-dna",searchTerms:["double helix","helix"]},{title:"fab fa-dochub",searchTerms:[]},{title:"fab fa-docker",searchTerms:[]},{title:"fas fa-dollar-sign",searchTerms:["usd","price"]},{title:"fas fa-dolly",searchTerms:[]},{title:"fas fa-dolly-flatbed",searchTerms:[]},{title:"fas fa-dot-circle",searchTerms:["target","bullseye","notification"]},{title:"far fa-dot-circle",searchTerms:["target","bullseye","notification"]},{title:"fas fa-download",searchTerms:["import"]},{title:"fab fa-draft2digital",searchTerms:[]},{title:"fab fa-dribbble",searchTerms:[]},{title:"fab fa-dribbble-square",searchTerms:[]},{title:"fab fa-dropbox",searchTerms:[]},{title:"fab fa-drupal",searchTerms:[]},{title:"fab fa-dyalog",searchTerms:[]},{title:"fab fa-earlybirds",searchTerms:[]},{title:"fab fa-edge",searchTerms:["browser","ie"]},{title:"fas fa-edit",searchTerms:["write","edit","update","pencil","pen"]},{title:"far fa-edit",searchTerms:["write","edit","update","pencil","pen"]},{title:"fas fa-eject",searchTerms:[]},{title:"fab fa-elementor",searchTerms:[]},{title:"fas fa-ellipsis-h",searchTerms:["dots"]},{title:"fas fa-ellipsis-v",searchTerms:["dots"]},{title:"fab fa-ember",searchTerms:[]},{title:"fab fa-empire",searchTerms:[]},{title:"fas fa-envelope",searchTerms:["email","e-mail","letter","support","mail","message","notification"]},{title:"far fa-envelope",searchTerms:["email","e-mail","letter","support","mail","message","notification"]},{title:"fas fa-envelope-open",searchTerms:["email","e-mail","letter","support","mail","message","notification"]},{title:"far fa-envelope-open",searchTerms:["email","e-mail","letter","support","mail","message","notification"]},{title:"fas fa-envelope-square",searchTerms:["email","e-mail","letter","support","mail","message","notification"]},{title:"fab fa-envira",searchTerms:["leaf"]},{title:"fas fa-eraser",searchTerms:["remove","delete"]},{title:"fab fa-erlang",searchTerms:[]},{title:"fab fa-ethereum",searchTerms:[]},{title:"fab fa-etsy",searchTerms:[]},{title:"fas fa-euro-sign",searchTerms:["eur","eur"]},{title:"fas fa-exchange-alt",searchTerms:["transfer","arrows","arrow","exchange","swap"]},{title:"fas fa-exclamation",searchTerms:["warning","error","problem","notification","notify","alert","danger"]},{title:"fas fa-exclamation-circle",searchTerms:["warning","error","problem","notification","notify","alert","danger"]},{title:"fas fa-exclamation-triangle",searchTerms:["warning","error","problem","notification","notify","alert","danger"]},{title:"fas fa-expand",searchTerms:["enlarge","bigger","resize"]},{title:"fas fa-expand-arrows-alt",searchTerms:["enlarge","bigger","resize","move","arrows-alt"]},{title:"fab fa-expeditedssl",searchTerms:[]},{title:"fas fa-external-link-alt",searchTerms:["open","new","external-link"]},{title:"fas fa-external-link-square-alt",searchTerms:["open","new","external-link-square"]},{title:"fas fa-eye",searchTerms:["show","visible","views"]},{title:"fas fa-eye-dropper",searchTerms:["eyedropper"]},{title:"fas fa-eye-slash",searchTerms:["toggle","show","hide","visible","visiblity","views"]},{title:"far fa-eye-slash",searchTerms:["toggle","show","hide","visible","visiblity","views"]},{title:"fab fa-facebook",searchTerms:["social network","facebook-official"]},{title:"fab fa-facebook-f",searchTerms:["facebook"]},{title:"fab fa-facebook-messenger",searchTerms:[]},{title:"fab fa-facebook-square",searchTerms:["social network"]},{title:"fas fa-fast-backward",searchTerms:["rewind","previous","beginning","start","first"]},{title:"fas fa-fast-forward",searchTerms:["next","end","last"]},{title:"fas fa-fax",searchTerms:[]},{title:"fas fa-female",searchTerms:["woman","human","user","person","profile"]},{title:"fas fa-fighter-jet",searchTerms:["fly","plane","airplane","quick","fast","travel"]},{title:"fas fa-file",searchTerms:["new","page","pdf","document"]},{title:"far fa-file",searchTerms:["new","page","pdf","document"]},{title:"fas fa-file-alt",searchTerms:["new","page","pdf","document","file-text"]},{title:"far fa-file-alt",searchTerms:["new","page","pdf","document","file-text"]},{title:"fas fa-file-archive",searchTerms:[]},{title:"far fa-file-archive",searchTerms:[]},{title:"fas fa-file-audio",searchTerms:[]},{title:"far fa-file-audio",searchTerms:[]},{title:"fas fa-file-code",searchTerms:[]},{title:"far fa-file-code",searchTerms:[]},{title:"fas fa-file-excel",searchTerms:[]},{title:"far fa-file-excel",searchTerms:[]},{title:"fas fa-file-image",searchTerms:[]},{title:"far fa-file-image",searchTerms:[]},{title:"fas fa-file-pdf",searchTerms:[]},{title:"far fa-file-pdf",searchTerms:[]},{title:"fas fa-file-powerpoint",searchTerms:[]},{title:"far fa-file-powerpoint",searchTerms:[]},{title:"fas fa-file-video",searchTerms:[]},{title:"far fa-file-video",searchTerms:[]},{title:"fas fa-file-word",searchTerms:[]},{title:"far fa-file-word",searchTerms:[]},{title:"fas fa-film",searchTerms:["movie"]},{title:"fas fa-filter",searchTerms:["funnel","options"]},{title:"fas fa-fire",searchTerms:["flame","hot","popular"]},{title:"fas fa-fire-extinguisher",searchTerms:[]},{title:"fab fa-firefox",searchTerms:["browser"]},{title:"fas fa-first-aid",searchTerms:[]},{title:"fab fa-first-order",searchTerms:[]},{title:"fab fa-firstdraft",searchTerms:[]},{title:"fas fa-flag",searchTerms:["report","notification","notify"]},{title:"far fa-flag",searchTerms:["report","notification","notify"]},{title:"fas fa-flag-checkered",searchTerms:["report","notification","notify"]},{title:"fas fa-flask",searchTerms:["science","beaker","experimental","labs"]},{title:"fab fa-flickr",searchTerms:[]},{title:"fab fa-flipboard",searchTerms:[]},{title:"fab fa-fly",searchTerms:[]},{title:"fas fa-folder",searchTerms:[]},{title:"far fa-folder",searchTerms:[]},{title:"fas fa-folder-open",searchTerms:[]},{title:"far fa-folder-open",searchTerms:[]},{title:"fas fa-font",searchTerms:["text"]},{title:"fab fa-font-awesome",searchTerms:["meanpath"]},{title:"fab fa-font-awesome-alt",searchTerms:[]},{title:"fab fa-font-awesome-flag",searchTerms:[]},{title:"fab fa-fonticons",searchTerms:[]},{title:"fab fa-fonticons-fi",searchTerms:[]},{title:"fas fa-football-ball",searchTerms:[]},{title:"fab fa-fort-awesome",searchTerms:["castle"]},{title:"fab fa-fort-awesome-alt",searchTerms:["castle"]},{title:"fab fa-forumbee",searchTerms:[]},{title:"fas fa-forward",searchTerms:["forward","next"]},{title:"fab fa-foursquare",searchTerms:[]},{title:"fab fa-free-code-camp",searchTerms:[]},{title:"fab fa-freebsd",searchTerms:[]},{title:"fas fa-frown",searchTerms:["face","emoticon","sad","disapprove","rating"]},{title:"far fa-frown",searchTerms:["face","emoticon","sad","disapprove","rating"]},{title:"fas fa-futbol",searchTerms:[]},{title:"far fa-futbol",searchTerms:[]},{title:"fas fa-gamepad",searchTerms:["controller"]},{title:"fas fa-gavel",searchTerms:["judge","lawyer","opinion","hammer"]},{title:"fas fa-gem",searchTerms:["diamond"]},{title:"far fa-gem",searchTerms:["diamond"]},{title:"fas fa-genderless",searchTerms:[]},{title:"fab fa-get-pocket",searchTerms:[]},{title:"fab fa-gg",searchTerms:[]},{title:"fab fa-gg-circle",searchTerms:[]},{title:"fas fa-gift",searchTerms:["present"]},{title:"fab fa-git",searchTerms:[]},{title:"fab fa-git-square",searchTerms:[]},{title:"fab fa-github",searchTerms:["octocat"]},{title:"fab fa-github-alt",searchTerms:["octocat"]},{title:"fab fa-github-square",searchTerms:["octocat"]},{title:"fab fa-gitkraken",searchTerms:[]},{title:"fab fa-gitlab",searchTerms:["Axosoft"]},{title:"fab fa-gitter",searchTerms:[]},{title:"fas fa-glass-martini",searchTerms:["martini","drink","bar","alcohol","liquor","glass"]},{title:"fab fa-glide",searchTerms:[]},{title:"fab fa-glide-g",searchTerms:[]},{title:"fas fa-globe",searchTerms:["world","planet","map","place","travel","earth","global","translate","all","language","localize","location","coordinates","country","gps"]},{title:"fab fa-gofore",searchTerms:[]},{title:"fas fa-golf-ball",searchTerms:[]},{title:"fab fa-goodreads",searchTerms:[]},{title:"fab fa-goodreads-g",searchTerms:[]},{title:"fab fa-google",searchTerms:[]},{title:"fab fa-google-drive",searchTerms:[]},{title:"fab fa-google-play",searchTerms:[]},{title:"fab fa-google-plus",searchTerms:["google-plus-circle","google-plus-official"]},{title:"fab fa-google-plus-g",searchTerms:["social network","google-plus"]},{title:"fab fa-google-plus-square",searchTerms:["social network"]},{title:"fab fa-google-wallet",searchTerms:[]},{title:"fas fa-graduation-cap",searchTerms:["learning","school","student"]},{title:"fab fa-gratipay",searchTerms:["heart","like","favorite","love"]},{title:"fab fa-grav",searchTerms:[]},{title:"fab fa-gripfire",searchTerms:[]},{title:"fab fa-grunt",searchTerms:[]},{title:"fab fa-gulp",searchTerms:[]},{title:"fas fa-h-square",searchTerms:["hospital","hotel"]},{title:"fab fa-hacker-news",searchTerms:[]},{title:"fab fa-hacker-news-square",searchTerms:[]},{title:"fas fa-hand-lizard",searchTerms:[]},{title:"far fa-hand-lizard",searchTerms:[]},{title:"fas fa-hand-paper",searchTerms:["stop"]},{title:"far fa-hand-paper",searchTerms:["stop"]},{title:"fas fa-hand-peace",searchTerms:[]},{title:"far fa-hand-peace",searchTerms:[]},{title:"fas fa-hand-point-down",searchTerms:["point","finger","hand-o-down"]},{title:"far fa-hand-point-down",searchTerms:["point","finger","hand-o-down"]},{title:"fas fa-hand-point-left",searchTerms:["point","left","previous","back","finger","hand-o-left"]},{title:"far fa-hand-point-left",searchTerms:["point","left","previous","back","finger","hand-o-left"]},{title:"fas fa-hand-point-right",searchTerms:["point","right","next","forward","finger","hand-o-right"]},{title:"far fa-hand-point-right",searchTerms:["point","right","next","forward","finger","hand-o-right"]},{title:"fas fa-hand-point-up",searchTerms:["point","finger","hand-o-up"]},{title:"far fa-hand-point-up",searchTerms:["point","finger","hand-o-up"]},{title:"fas fa-hand-pointer",searchTerms:["select"]},{title:"far fa-hand-pointer",searchTerms:["select"]},{title:"fas fa-hand-rock",searchTerms:[]},{title:"far fa-hand-rock",searchTerms:[]},{title:"fas fa-hand-scissors",searchTerms:[]},{title:"far fa-hand-scissors",searchTerms:[]},{title:"fas fa-hand-spock",searchTerms:[]},{title:"far fa-hand-spock",searchTerms:[]},{title:"fas fa-handshake",searchTerms:[]},{title:"far fa-handshake",searchTerms:[]},{title:"fas fa-hashtag",searchTerms:[]},{title:"fas fa-hdd",searchTerms:["harddrive","hard drive","storage","save"]},{title:"far fa-hdd",searchTerms:["harddrive","hard drive","storage","save"]},{title:"fas fa-heading",searchTerms:["header","header"]},{title:"fas fa-headphones",searchTerms:["sound","listen","music","audio"]},{title:"fas fa-heart",searchTerms:["love","like","favorite"]},{title:"far fa-heart",searchTerms:["love","like","favorite"]},{title:"fas fa-heartbeat",searchTerms:["ekg","vital signs"]},{title:"fab fa-hips",searchTerms:[]},{title:"fab fa-hire-a-helper",searchTerms:[]},{title:"fas fa-history",searchTerms:[]},{title:"fas fa-hockey-puck",searchTerms:[]},{title:"fas fa-home",searchTerms:["main","house"]},{title:"fab fa-hooli",searchTerms:[]},{title:"fas fa-hospital",searchTerms:["building","medical center","emergency room"]},{title:"far fa-hospital",searchTerms:["building","medical center","emergency room"]},{title:"fas fa-hospital-symbol",searchTerms:[]},{title:"fab fa-hotjar",searchTerms:[]},{title:"fas fa-hourglass",searchTerms:[]},{title:"far fa-hourglass",searchTerms:[]},{title:"fas fa-hourglass-end",searchTerms:[]},{title:"fas fa-hourglass-half",searchTerms:[]},{title:"fas fa-hourglass-start",searchTerms:[]},{title:"fab fa-houzz",searchTerms:[]},{title:"fab fa-html5",searchTerms:[]},{title:"fab fa-hubspot",searchTerms:[]},{title:"fas fa-i-cursor",searchTerms:[]},{title:"fas fa-id-badge",searchTerms:[]},{title:"far fa-id-badge",searchTerms:[]},{title:"fas fa-id-card",searchTerms:[]},{title:"far fa-id-card",searchTerms:[]},{title:"fas fa-image",searchTerms:["photo","album","picture","picture"]},{title:"far fa-image",searchTerms:["photo","album","picture","picture"]},{title:"fas fa-images",searchTerms:["photo","album","picture"]},{title:"far fa-images",searchTerms:["photo","album","picture"]},{title:"fab fa-imdb",searchTerms:[]},{title:"fas fa-inbox",searchTerms:[]},{title:"fas fa-indent",searchTerms:[]},{title:"fas fa-industry",searchTerms:["factory"]},{title:"fas fa-info",searchTerms:["help","information","more","details"]},{title:"fas fa-info-circle",searchTerms:["help","information","more","details"]},{title:"fab fa-instagram",searchTerms:[]},{title:"fab fa-internet-explorer",searchTerms:["browser","ie"]},{title:"fab fa-ioxhost",searchTerms:[]},{title:"fas fa-italic",searchTerms:["italics"]},{title:"fab fa-itunes",searchTerms:[]},{title:"fab fa-itunes-note",searchTerms:[]},{title:"fab fa-jenkins",searchTerms:[]},{title:"fab fa-joget",searchTerms:[]},{title:"fab fa-joomla",searchTerms:[]},{title:"fab fa-js",searchTerms:[]},{title:"fab fa-js-square",searchTerms:[]},{title:"fab fa-jsfiddle",searchTerms:[]},{title:"fas fa-key",searchTerms:["unlock","password"]},{title:"fas fa-keyboard",searchTerms:["type","input"]},{title:"far fa-keyboard",searchTerms:["type","input"]},{title:"fab fa-keycdn",searchTerms:[]},{title:"fab fa-kickstarter",searchTerms:[]},{title:"fab fa-kickstarter-k",searchTerms:[]},{title:"fab fa-korvue",searchTerms:[]},{title:"fas fa-language",searchTerms:[]},{title:"fas fa-laptop",searchTerms:["demo","computer","device","pc"]},{title:"fab fa-laravel",searchTerms:[]},{title:"fab fa-lastfm",searchTerms:[]},{title:"fab fa-lastfm-square",searchTerms:[]},{title:"fas fa-leaf",searchTerms:["eco","nature","plant"]},{title:"fab fa-leanpub",searchTerms:[]},{title:"fas fa-lemon",searchTerms:["food"]},{title:"far fa-lemon",searchTerms:["food"]},{title:"fab fa-less",searchTerms:[]},{title:"fas fa-level-down-alt",searchTerms:["level-down"]},{title:"fas fa-level-up-alt",searchTerms:["level-up"]},{title:"fas fa-life-ring",searchTerms:["support"]},{title:"far fa-life-ring",searchTerms:["support"]},{title:"fas fa-lightbulb",searchTerms:["idea","inspiration"]},{title:"far fa-lightbulb",searchTerms:["idea","inspiration"]},{title:"fab fa-line",searchTerms:[]},{title:"fas fa-link",searchTerms:["chain"]},{title:"fab fa-linkedin",searchTerms:["linkedin-square"]},{title:"fab fa-linkedin-in",searchTerms:["linkedin"]},{title:"fab fa-linode",searchTerms:[]},{title:"fab fa-linux",searchTerms:["tux"]},{title:"fas fa-lira-sign",searchTerms:["try","turkish","try"]},{title:"fas fa-list",searchTerms:["ul","ol","checklist","finished","completed","done","todo"]},{title:"fas fa-list-alt",searchTerms:["ul","ol","checklist","finished","completed","done","todo"]},{title:"far fa-list-alt",searchTerms:["ul","ol","checklist","finished","completed","done","todo"]},{title:"fas fa-list-ol",searchTerms:["ul","ol","checklist","list","todo","list","numbers"]},{title:"fas fa-list-ul",searchTerms:["ul","ol","checklist","todo","list"]},{title:"fas fa-location-arrow",searchTerms:["map","coordinates","location","address","place","where","gps"]},{title:"fas fa-lock",searchTerms:["protect","admin","security"]},{title:"fas fa-lock-open",searchTerms:["protect","admin","password","lock","open"]},{title:"fas fa-long-arrow-alt-down",searchTerms:["long-arrow-down"]},{title:"fas fa-long-arrow-alt-left",searchTerms:["previous","back","long-arrow-left"]},{title:"fas fa-long-arrow-alt-right",searchTerms:["long-arrow-right"]},{title:"fas fa-long-arrow-alt-up",searchTerms:["long-arrow-up"]},{title:"fas fa-low-vision",searchTerms:[]},{title:"fab fa-lyft",searchTerms:[]},{title:"fab fa-magento",searchTerms:[]},{title:"fas fa-magic",searchTerms:["wizard","automatic","autocomplete"]},{title:"fas fa-magnet",searchTerms:[]},{title:"fas fa-male",searchTerms:["man","human","user","person","profile"]},{title:"fas fa-map",searchTerms:[]},{title:"far fa-map",searchTerms:[]},{title:"fas fa-map-marker",searchTerms:["map","pin","location","coordinates","localize","address","travel","where","place","gps"]},{title:"fas fa-map-marker-alt",searchTerms:["map-marker","gps"]},{title:"fas fa-map-pin",searchTerms:[]},{title:"fas fa-map-signs",searchTerms:[]},{title:"fas fa-mars",searchTerms:["male"]},{title:"fas fa-mars-double",searchTerms:[]},{title:"fas fa-mars-stroke",searchTerms:[]},{title:"fas fa-mars-stroke-h",searchTerms:[]},{title:"fas fa-mars-stroke-v",searchTerms:[]},{title:"fab fa-maxcdn",searchTerms:[]},{title:"fab fa-medapps",searchTerms:[]},{title:"fab fa-medium",searchTerms:[]},{title:"fab fa-medium-m",searchTerms:[]},{title:"fas fa-medkit",searchTerms:["first aid","firstaid","help","support","health"]},{title:"fab fa-medrt",searchTerms:[]},{title:"fab fa-meetup",searchTerms:[]},{title:"fas fa-meh",searchTerms:["face","emoticon","rating","neutral"]},{title:"far fa-meh",searchTerms:["face","emoticon","rating","neutral"]},{title:"fas fa-mercury",searchTerms:["transgender"]},{title:"fas fa-microchip",searchTerms:[]},{title:"fas fa-microphone",searchTerms:["record","voice","sound"]},{title:"fas fa-microphone-slash",searchTerms:["record","voice","sound","mute"]},{title:"fab fa-microsoft",searchTerms:[]},{title:"fas fa-minus",searchTerms:["hide","minify","delete","remove","trash","hide","collapse"]},{title:"fas fa-minus-circle",searchTerms:["delete","remove","trash","hide"]},{title:"fas fa-minus-square",searchTerms:["hide","minify","delete","remove","trash","hide","collapse"]},{title:"far fa-minus-square",searchTerms:["hide","minify","delete","remove","trash","hide","collapse"]},{title:"fab fa-mix",searchTerms:[]},{title:"fab fa-mixcloud",searchTerms:[]},{title:"fab fa-mizuni",searchTerms:[]},{title:"fas fa-mobile",searchTerms:["cell phone","cellphone","text","call","iphone","number","telephone"]},{title:"fas fa-mobile-alt",searchTerms:["mobile"]},{title:"fab fa-modx",searchTerms:[]},{title:"fab fa-monero",searchTerms:[]},{title:"fas fa-money-bill-alt",searchTerms:["cash","money","buy","checkout","purchase","payment","price"]},{title:"far fa-money-bill-alt",searchTerms:["cash","money","buy","checkout","purchase","payment","price"]},{title:"fas fa-moon",searchTerms:["night","darker","contrast"]},{title:"far fa-moon",searchTerms:["night","darker","contrast"]},{title:"fas fa-motorcycle",searchTerms:["vehicle","bike"]},{title:"fas fa-mouse-pointer",searchTerms:["select"]},{title:"fas fa-music",searchTerms:["note","sound"]},{title:"fab fa-napster",searchTerms:[]},{title:"fas fa-neuter",searchTerms:[]},{title:"fas fa-newspaper",searchTerms:["press","article"]},{title:"far fa-newspaper",searchTerms:["press","article"]},{title:"fab fa-nintendo-switch",searchTerms:[]},{title:"fab fa-node",searchTerms:[]},{title:"fab fa-node-js",searchTerms:[]},{title:"fab fa-npm",searchTerms:[]},{title:"fab fa-ns8",searchTerms:[]},{title:"fab fa-nutritionix",searchTerms:[]},{title:"fas fa-object-group",searchTerms:["design"]},{title:"far fa-object-group",searchTerms:["design"]},{title:"fas fa-object-ungroup",searchTerms:["design"]},{title:"far fa-object-ungroup",searchTerms:["design"]},{title:"fab fa-odnoklassniki",searchTerms:[]},{title:"fab fa-odnoklassniki-square",searchTerms:[]},{title:"fab fa-opencart",searchTerms:[]},{title:"fab fa-openid",searchTerms:[]},{title:"fab fa-opera",searchTerms:[]},{title:"fab fa-optin-monster",searchTerms:[]},{title:"fab fa-osi",searchTerms:[]},{title:"fas fa-outdent",searchTerms:[]},{title:"fab fa-page4",searchTerms:[]},{title:"fab fa-pagelines",searchTerms:["leaf","leaves","tree","plant","eco","nature"]},{title:"fas fa-paint-brush",searchTerms:[]},{title:"fab fa-palfed",searchTerms:[]},{title:"fas fa-pallet",searchTerms:[]},{title:"fas fa-paper-plane",searchTerms:[]},{title:"far fa-paper-plane",searchTerms:[]},{title:"fas fa-paperclip",searchTerms:["attachment"]},{title:"fas fa-paragraph",searchTerms:[]},{title:"fas fa-paste",searchTerms:["copy","clipboard"]},{title:"fab fa-patreon",searchTerms:[]},{title:"fas fa-pause",searchTerms:["wait"]},{title:"fas fa-pause-circle",searchTerms:[]},{title:"far fa-pause-circle",searchTerms:[]},{title:"fas fa-paw",searchTerms:["pet"]},{title:"fab fa-paypal",searchTerms:[]},{title:"fas fa-pen-square",searchTerms:["write","edit","update","pencil-square"]},{title:"fas fa-pencil-alt",searchTerms:["write","edit","update","pencil","design"]},{title:"fas fa-percent",searchTerms:[]},{title:"fab fa-periscope",searchTerms:[]},{title:"fab fa-phabricator",searchTerms:[]},{title:"fab fa-phoenix-framework",searchTerms:[]},{title:"fas fa-phone",searchTerms:["call","voice","number","support","earphone","telephone"]},{title:"fas fa-phone-square",searchTerms:["call","voice","number","support","telephone"]},{title:"fas fa-phone-volume",searchTerms:["telephone","volume-control-phone"]},{title:"fab fa-php",searchTerms:[]},{title:"fab fa-pied-piper",searchTerms:[]},{title:"fab fa-pied-piper-alt",searchTerms:[]},{title:"fab fa-pied-piper-pp",searchTerms:[]},{title:"fas fa-pills",searchTerms:["medicine","drugs"]},{title:"fab fa-pinterest",searchTerms:[]},{title:"fab fa-pinterest-p",searchTerms:[]},{title:"fab fa-pinterest-square",searchTerms:[]},{title:"fas fa-plane",searchTerms:["travel","trip","location","destination","airplane","fly","mode"]},{title:"fas fa-play",searchTerms:["start","playing","music","sound"]},{title:"fas fa-play-circle",searchTerms:["start","playing"]},{title:"far fa-play-circle",searchTerms:["start","playing"]},{title:"fab fa-playstation",searchTerms:[]},{title:"fas fa-plug",searchTerms:["power","connect"]},{title:"fas fa-plus",searchTerms:["add","new","create","expand"]},{title:"fas fa-plus-circle",searchTerms:["add","new","create","expand"]},{title:"fas fa-plus-square",searchTerms:["add","new","create","expand"]},{title:"far fa-plus-square",searchTerms:["add","new","create","expand"]},{title:"fas fa-podcast",searchTerms:[]},{title:"fas fa-pound-sign",searchTerms:["gbp","gbp"]},{title:"fas fa-power-off",searchTerms:["on"]},{title:"fas fa-print",searchTerms:[]},{title:"fab fa-product-hunt",searchTerms:[]},{title:"fab fa-pushed",searchTerms:[]},{title:"fas fa-puzzle-piece",searchTerms:["addon","add-on","section"]},{title:"fab fa-python",searchTerms:[]},{title:"fab fa-qq",searchTerms:[]},{title:"fas fa-qrcode",searchTerms:["scan"]},{title:"fas fa-question",searchTerms:["help","information","unknown","support"]},{title:"fas fa-question-circle",searchTerms:["help","information","unknown","support"]},{title:"far fa-question-circle",searchTerms:["help","information","unknown","support"]},{title:"fas fa-quidditch",searchTerms:[]},{title:"fab fa-quinscape",searchTerms:[]},{title:"fab fa-quora",searchTerms:[]},{title:"fas fa-quote-left",searchTerms:[]},{title:"fas fa-quote-right",searchTerms:[]},{title:"fas fa-random",searchTerms:["sort","shuffle"]},{title:"fab fa-ravelry",searchTerms:[]},{title:"fab fa-react",searchTerms:[]},{title:"fab fa-rebel",searchTerms:[]},{title:"fas fa-recycle",searchTerms:[]},{title:"fab fa-red-river",searchTerms:[]},{title:"fab fa-reddit",searchTerms:[]},{title:"fab fa-reddit-alien",searchTerms:[]},{title:"fab fa-reddit-square",searchTerms:[]},{title:"fas fa-redo",searchTerms:["forward","repeat","repeat"]},{title:"fas fa-redo-alt",searchTerms:["forward","repeat"]},{title:"fas fa-registered",searchTerms:[]},{title:"far fa-registered",searchTerms:[]},{title:"fab fa-rendact",searchTerms:[]},{title:"fab fa-renren",searchTerms:[]},{title:"fas fa-reply",searchTerms:[]},{title:"fas fa-reply-all",searchTerms:[]},{title:"fab fa-replyd",searchTerms:[]},{title:"fab fa-resolving",searchTerms:[]},{title:"fas fa-retweet",searchTerms:["refresh","reload","share","swap"]},{title:"fas fa-road",searchTerms:["street"]},{title:"fas fa-rocket",searchTerms:["app"]},{title:"fab fa-rocketchat",searchTerms:[]},{title:"fab fa-rockrms",searchTerms:[]},{title:"fas fa-rss",searchTerms:["blog"]},{title:"fas fa-rss-square",searchTerms:["feed","blog"]},{title:"fas fa-ruble-sign",searchTerms:["rub","rub"]},{title:"fas fa-rupee-sign",searchTerms:["indian","inr"]},{title:"fab fa-safari",searchTerms:["browser"]},{title:"fab fa-sass",searchTerms:[]},{title:"fas fa-save",searchTerms:["floppy","floppy-o"]},{title:"far fa-save",searchTerms:["floppy","floppy-o"]},{title:"fab fa-schlix",searchTerms:[]},{title:"fab fa-scribd",searchTerms:[]},{title:"fas fa-search",searchTerms:["magnify","zoom","enlarge","bigger"]},{title:"fas fa-search-minus",searchTerms:["magnify","minify","zoom","smaller"]},{title:"fas fa-search-plus",searchTerms:["magnify","zoom","enlarge","bigger"]},{title:"fab fa-searchengin",searchTerms:[]},{title:"fab fa-sellcast",searchTerms:["eercast"]},{title:"fab fa-sellsy",searchTerms:[]},{title:"fas fa-server",searchTerms:[]},{title:"fab fa-servicestack",searchTerms:[]},{title:"fas fa-share",searchTerms:[]},{title:"fas fa-share-alt",searchTerms:[]},{title:"fas fa-share-alt-square",searchTerms:[]},{title:"fas fa-share-square",searchTerms:["social","send"]},{title:"far fa-share-square",searchTerms:["social","send"]},{title:"fas fa-shekel-sign",searchTerms:["ils","ils"]},{title:"fas fa-shield-alt",searchTerms:["shield"]},{title:"fas fa-ship",searchTerms:["boat","sea"]},{title:"fas fa-shipping-fast",searchTerms:[]},{title:"fab fa-shirtsinbulk",searchTerms:[]},{title:"fas fa-shopping-bag",searchTerms:[]},{title:"fas fa-shopping-basket",searchTerms:[]},{title:"fas fa-shopping-cart",searchTerms:["checkout","buy","purchase","payment"]},{title:"fas fa-shower",searchTerms:[]},{title:"fas fa-sign-in-alt",searchTerms:["enter","join","log in","login","sign up","sign in","signin","signup","arrow","sign-in"]},{title:"fas fa-sign-language",searchTerms:[]},{title:"fas fa-sign-out-alt",searchTerms:["log out","logout","leave","exit","arrow","sign-out"]},{title:"fas fa-signal",searchTerms:["graph","bars","status"]},{title:"fab fa-simplybuilt",searchTerms:[]},{title:"fab fa-sistrix",searchTerms:[]},{title:"fas fa-sitemap",searchTerms:["directory","hierarchy","organization"]},{title:"fab fa-skyatlas",searchTerms:[]},{title:"fab fa-skype",searchTerms:[]},{title:"fab fa-slack",searchTerms:["hashtag","anchor","hash"]},{title:"fab fa-slack-hash",searchTerms:["hashtag","anchor","hash"]},{title:"fas fa-sliders-h",searchTerms:["settings","sliders"]},{title:"fab fa-slideshare",searchTerms:[]},{title:"fas fa-smile",searchTerms:["face","emoticon","happy","approve","satisfied","rating"]},{title:"far fa-smile",searchTerms:["face","emoticon","happy","approve","satisfied","rating"]},{title:"fab fa-snapchat",searchTerms:[]},{title:"fab fa-snapchat-ghost",searchTerms:[]},{title:"fab fa-snapchat-square",searchTerms:[]},{title:"fas fa-snowflake",searchTerms:[]},{title:"far fa-snowflake",searchTerms:[]},{title:"fas fa-sort",searchTerms:["order"]},{title:"fas fa-sort-alpha-down",searchTerms:["sort-alpha-asc"]},{title:"fas fa-sort-alpha-up",searchTerms:["sort-alpha-desc"]},{title:"fas fa-sort-amount-down",searchTerms:["sort-amount-asc"]},{title:"fas fa-sort-amount-up",searchTerms:["sort-amount-desc"]},{title:"fas fa-sort-down",searchTerms:["arrow","descending","sort-desc"]},{title:"fas fa-sort-numeric-down",searchTerms:["numbers","sort-numeric-asc"]},{title:"fas fa-sort-numeric-up",searchTerms:["numbers","sort-numeric-desc"]},{title:"fas fa-sort-up",searchTerms:["arrow","ascending","sort-asc"]},{title:"fab fa-soundcloud",searchTerms:[]},{title:"fas fa-space-shuttle",searchTerms:[]},{title:"fab fa-speakap",searchTerms:[]},{title:"fas fa-spinner",searchTerms:["loading","progress"]},{title:"fab fa-spotify",searchTerms:[]},{title:"fas fa-square",searchTerms:["block","box"]},{title:"far fa-square",searchTerms:["block","box"]},{title:"fas fa-square-full",searchTerms:[]},{title:"fab fa-stack-exchange",searchTerms:[]},{title:"fab fa-stack-overflow",searchTerms:[]},{title:"fas fa-star",searchTerms:["award","achievement","night","rating","score","favorite"]},{title:"far fa-star",searchTerms:["award","achievement","night","rating","score","favorite"]},{title:"fas fa-star-half",searchTerms:["award","achievement","rating","score","star-half-empty","star-half-full"]},{title:"far fa-star-half",searchTerms:["award","achievement","rating","score","star-half-empty","star-half-full"]},{title:"fab fa-staylinked",searchTerms:[]},{title:"fab fa-steam",searchTerms:[]},{title:"fab fa-steam-square",searchTerms:[]},{title:"fab fa-steam-symbol",searchTerms:[]},{title:"fas fa-step-backward",searchTerms:["rewind","previous","beginning","start","first"]},{title:"fas fa-step-forward",searchTerms:["next","end","last"]},{title:"fas fa-stethoscope",searchTerms:[]},{title:"fab fa-sticker-mule",searchTerms:[]},{title:"fas fa-sticky-note",searchTerms:[]},{title:"far fa-sticky-note",searchTerms:[]},{title:"fas fa-stop",searchTerms:["block","box","square"]},{title:"fas fa-stop-circle",searchTerms:[]},{title:"far fa-stop-circle",searchTerms:[]},{title:"fas fa-stopwatch",searchTerms:["time"]},{title:"fab fa-strava",searchTerms:[]},{title:"fas fa-street-view",searchTerms:["map"]},{title:"fas fa-strikethrough",searchTerms:[]},{title:"fab fa-stripe",searchTerms:[]},{title:"fab fa-stripe-s",searchTerms:[]},{title:"fab fa-studiovinari",searchTerms:[]},{title:"fab fa-stumbleupon",searchTerms:[]},{title:"fab fa-stumbleupon-circle",searchTerms:[]},{title:"fas fa-subscript",searchTerms:[]},{title:"fas fa-subway",searchTerms:[]},{title:"fas fa-suitcase",searchTerms:["trip","luggage","travel","move","baggage"]},{title:"fas fa-sun",searchTerms:["weather","contrast","lighter","brighten","day"]},{title:"far fa-sun",searchTerms:["weather","contrast","lighter","brighten","day"]},{title:"fab fa-superpowers",searchTerms:[]},{title:"fas fa-superscript",searchTerms:["exponential"]},{title:"fab fa-supple",searchTerms:[]},{title:"fas fa-sync",searchTerms:["reload","refresh","refresh"]},{title:"fas fa-sync-alt",searchTerms:["reload","refresh"]},{title:"fas fa-syringe",searchTerms:["immunizations","needle"]},{title:"fas fa-table",searchTerms:["data","excel","spreadsheet"]},{title:"fas fa-table-tennis",searchTerms:[]},{title:"fas fa-tablet",searchTerms:["ipad","device"]},{title:"fas fa-tablet-alt",searchTerms:["tablet"]},{title:"fas fa-tachometer-alt",searchTerms:["tachometer","dashboard"]},{title:"fas fa-tag",searchTerms:["label"]},{title:"fas fa-tags",searchTerms:["labels"]},{title:"fas fa-tasks",searchTerms:["progress","loading","downloading","downloads","settings"]},{title:"fas fa-taxi",searchTerms:["vehicle"]},{title:"fab fa-telegram",searchTerms:[]},{title:"fab fa-telegram-plane",searchTerms:[]},{title:"fab fa-tencent-weibo",searchTerms:[]},{title:"fas fa-terminal",searchTerms:["command","prompt","code"]},{title:"fas fa-text-height",searchTerms:[]},{title:"fas fa-text-width",searchTerms:[]},{title:"fas fa-th",searchTerms:["blocks","squares","boxes","grid"]},{title:"fas fa-th-large",searchTerms:["blocks","squares","boxes","grid"]},{title:"fas fa-th-list",searchTerms:["ul","ol","checklist","finished","completed","done","todo"]},{title:"fab fa-themeisle",searchTerms:[]},{title:"fas fa-thermometer",searchTerms:["temperature","fever"]},{title:"fas fa-thermometer-empty",searchTerms:["status"]},{title:"fas fa-thermometer-full",searchTerms:["status"]},{title:"fas fa-thermometer-half",searchTerms:["status"]},{title:"fas fa-thermometer-quarter",searchTerms:["status"]},{title:"fas fa-thermometer-three-quarters",searchTerms:["status"]},{title:"fas fa-thumbs-down",searchTerms:["dislike","disapprove","disagree","hand","thumbs-o-down"]},{title:"far fa-thumbs-down",searchTerms:["dislike","disapprove","disagree","hand","thumbs-o-down"]},{title:"fas fa-thumbs-up",searchTerms:["like","favorite","approve","agree","hand","thumbs-o-up"]},{title:"far fa-thumbs-up",searchTerms:["like","favorite","approve","agree","hand","thumbs-o-up"]},{title:"fas fa-thumbtack",searchTerms:["marker","pin","location","coordinates","thumb-tack"]},{title:"fas fa-ticket-alt",searchTerms:["ticket"]},{title:"fas fa-times",searchTerms:["close","exit","x","cross"]},{title:"fas fa-times-circle",searchTerms:["close","exit","x"]},{title:"far fa-times-circle",searchTerms:["close","exit","x"]},{title:"fas fa-tint",searchTerms:["raindrop","waterdrop","drop","droplet"]},{title:"fas fa-toggle-off",searchTerms:["switch"]},{title:"fas fa-toggle-on",searchTerms:["switch"]},{title:"fas fa-trademark",searchTerms:[]},{title:"fas fa-train",searchTerms:[]},{title:"fas fa-transgender",searchTerms:["intersex"]},{title:"fas fa-transgender-alt",searchTerms:[]},{title:"fas fa-trash",searchTerms:["garbage","delete","remove","hide"]},{title:"fas fa-trash-alt",searchTerms:["garbage","delete","remove","hide","trash","trash-o"]},{title:"far fa-trash-alt",searchTerms:["garbage","delete","remove","hide","trash","trash-o"]},{title:"fas fa-tree",searchTerms:[]},{title:"fab fa-trello",searchTerms:[]},{title:"fab fa-tripadvisor",searchTerms:[]},{title:"fas fa-trophy",searchTerms:["award","achievement","cup","winner","game"]},{title:"fas fa-truck",searchTerms:["shipping"]},{title:"fas fa-tty",searchTerms:[]},{title:"fab fa-tumblr",searchTerms:[]},{title:"fab fa-tumblr-square",searchTerms:[]},{title:"fas fa-tv",searchTerms:["display","computer","monitor","television"]},{title:"fab fa-twitch",searchTerms:[]},{title:"fab fa-twitter",searchTerms:["tweet","social network"]},{title:"fab fa-twitter-square",searchTerms:["tweet","social network"]},{title:"fab fa-typo3",searchTerms:[]},{title:"fab fa-uber",searchTerms:[]},{title:"fab fa-uikit",searchTerms:[]},{title:"fas fa-umbrella",searchTerms:[]},{title:"fas fa-underline",searchTerms:[]},{title:"fas fa-undo",searchTerms:["back"]},{title:"fas fa-undo-alt",searchTerms:["back"]},{title:"fab fa-uniregistry",searchTerms:[]},{title:"fas fa-universal-access",searchTerms:[]},{title:"fas fa-university",searchTerms:["bank","institution"]},{title:"fas fa-unlink",searchTerms:["remove","chain","chain-broken"]},{title:"fas fa-unlock",searchTerms:["protect","admin","password","lock"]},{title:"fas fa-unlock-alt",searchTerms:["protect","admin","password","lock"]},{title:"fab fa-untappd",searchTerms:[]},{title:"fas fa-upload",searchTerms:["import"]},{title:"fab fa-usb",searchTerms:[]},{title:"fas fa-user",searchTerms:["person","man","head","profile","account"]},{title:"far fa-user",searchTerms:["person","man","head","profile","account"]},{title:"fas fa-user-circle",searchTerms:["person","man","head","profile","account"]},{title:"far fa-user-circle",searchTerms:["person","man","head","profile","account"]},{title:"fas fa-user-md",searchTerms:["doctor","profile","medical","nurse","job","occupation"]},{title:"fas fa-user-plus",searchTerms:["sign up","signup"]},{title:"fas fa-user-secret",searchTerms:["whisper","spy","incognito","privacy"]},{title:"fas fa-user-times",searchTerms:[]},{title:"fas fa-users",searchTerms:["people","profiles","persons"]},{title:"fab fa-ussunnah",searchTerms:[]},{title:"fas fa-utensil-spoon",searchTerms:["spoon"]},{title:"fas fa-utensils",searchTerms:["food","restaurant","spoon","knife","dinner","eat","cutlery"]},{title:"fab fa-vaadin",searchTerms:[]},{title:"fas fa-venus",searchTerms:["female"]},{title:"fas fa-venus-double",searchTerms:[]},{title:"fas fa-venus-mars",searchTerms:[]},{title:"fab fa-viacoin",searchTerms:[]},{title:"fab fa-viadeo",searchTerms:[]},{title:"fab fa-viadeo-square",searchTerms:[]},{title:"fab fa-viber",searchTerms:[]},{title:"fas fa-video",searchTerms:["film","movie","record","camera","video-camera"]},{title:"fab fa-vimeo",searchTerms:[]},{title:"fab fa-vimeo-square",searchTerms:[]},{title:"fab fa-vimeo-v",searchTerms:["vimeo"]},{title:"fab fa-vine",searchTerms:[]},{title:"fab fa-vk",searchTerms:[]},{title:"fab fa-vnv",searchTerms:[]},{title:"fas fa-volleyball-ball",searchTerms:[]},{title:"fas fa-volume-down",searchTerms:["audio","lower","quieter","sound","music"]},{title:"fas fa-volume-off",searchTerms:["audio","mute","sound","music"]},{title:"fas fa-volume-up",searchTerms:["audio","higher","louder","sound","music"]},{title:"fab fa-vuejs",searchTerms:[]},{title:"fas fa-warehouse",searchTerms:[]},{title:"fab fa-weibo",searchTerms:[]},{title:"fas fa-weight",searchTerms:["scale"]},{title:"fab fa-weixin",searchTerms:[]},{title:"fab fa-whatsapp",searchTerms:[]},{title:"fab fa-whatsapp-square",searchTerms:[]},{title:"fas fa-wheelchair",searchTerms:["handicap","person"]},{title:"fab fa-whmcs",searchTerms:[]},{title:"fas fa-wifi",searchTerms:[]},{title:"fab fa-wikipedia-w",searchTerms:[]},{title:"fas fa-window-close",searchTerms:[]},{title:"far fa-window-close",searchTerms:[]},{title:"fas fa-window-maximize",searchTerms:[]},{title:"far fa-window-maximize",searchTerms:[]},{title:"fas fa-window-minimize",searchTerms:[]},{title:"far fa-window-minimize",searchTerms:[]},{title:"fas fa-window-restore",searchTerms:[]},{title:"far fa-window-restore",searchTerms:[]},{title:"fab fa-windows",searchTerms:["microsoft"]},{title:"fas fa-won-sign",searchTerms:["krw","krw"]},{title:"fab fa-wordpress",searchTerms:[]},{title:"fab fa-wordpress-simple",searchTerms:[]},{title:"fab fa-wpbeginner",searchTerms:[]},{title:"fab fa-wpexplorer",searchTerms:[]},{title:"fab fa-wpforms",searchTerms:[]},{title:"fas fa-wrench",searchTerms:["settings","fix","update","spanner","tool"]},{title:"fab fa-xbox",searchTerms:[]},{title:"fab fa-xing",searchTerms:[]},{title:"fab fa-xing-square",searchTerms:[]},{title:"fab fa-y-combinator",searchTerms:[]},{title:"fab fa-yahoo",searchTerms:[]},{title:"fab fa-yandex",searchTerms:[]},{title:"fab fa-yandex-international",searchTerms:[]},{title:"fab fa-yelp",searchTerms:[]},{title:"fas fa-yen-sign",searchTerms:["jpy","jpy"]},{title:"fab fa-yoast",searchTerms:[]},{title:"fab fa-youtube",searchTerms:["video","film","youtube-play","youtube-square"]},{title:"fab fa-youtube-square",searchTerms:[]}]})}); \ No newline at end of file +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{a(jQuery)}})(function(a){a.ui=a.ui||{};var b=a.ui.version="1.12.1";(function(){var b,c=Math.max,d=Math.abs,e=/left|center|right/,f=/top|center|bottom/,g=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,i=/%$/,j=a.fn.pos;function k(a,b,c){return[parseFloat(a[0])*(i.test(a[0])?b/100:1),parseFloat(a[1])*(i.test(a[1])?c/100:1)]}function l(b,c){return parseInt(a.css(b,c),10)||0}function m(b){var c=b[0];if(c.nodeType===9){return{width:b.width(),height:b.height(),offset:{top:0,left:0}}}if(a.isWindow(c)){return{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}}if(c.preventDefault){return{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}}return{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.pos={scrollbarWidth:function(){if(b!==undefined){return b}var c,d,e=a("
      "+"
      "),f=e.children()[0];a("body").append(e);c=f.offsetWidth;e.css("overflow","scroll");d=f.offsetWidth;if(c===d){d=e[0].clientWidth}e.remove();return b=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e=c==="scroll"||c==="auto"&&b.width0?"right":"center",vertical:k<0?"top":i>0?"bottom":"middle"};if(nc(d(i),d(k))){l.important="horizontal"}else{l.important="vertical"}b.using.call(this,a,l)}}g.offset(a.extend(z,{using:f}))})};a.ui.pos={_trigger:function(a,b,c,d){if(b.elem){b.elem.trigger({type:c,position:a,positionData:b,triggered:d})}},fit:{left:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitLeft");var e=d.within,f=e.isWindow?e.scrollLeft:e.offset.left,g=e.width,h=b.left-d.collisionPosition.marginLeft,i=f-h,j=h+d.collisionWidth-g-f,k;if(d.collisionWidth>g){if(i>0&&j<=0){k=b.left+i+d.collisionWidth-g-f;b.left+=i-k}else if(j>0&&i<=0){b.left=f}else{if(i>j){b.left=f+g-d.collisionWidth}else{b.left=f}}}else if(i>0){b.left+=i}else if(j>0){b.left-=j}else{b.left=c(b.left-h,b.left)}a.ui.pos._trigger(b,d,"posCollided","fitLeft")},top:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitTop");var e=d.within,f=e.isWindow?e.scrollTop:e.offset.top,g=d.within.height,h=b.top-d.collisionPosition.marginTop,i=f-h,j=h+d.collisionHeight-g-f,k;if(d.collisionHeight>g){if(i>0&&j<=0){k=b.top+i+d.collisionHeight-g-f;b.top+=i-k}else if(j>0&&i<=0){b.top=f}else{if(i>j){b.top=f+g-d.collisionHeight}else{b.top=f}}}else if(i>0){b.top+=i}else if(j>0){b.top-=j}else{b.top=c(b.top-h,b.top)}a.ui.pos._trigger(b,d,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var e=c.within,f=e.offset.left+e.scrollLeft,g=e.width,h=e.isWindow?e.scrollLeft:e.offset.left,i=b.left-c.collisionPosition.marginLeft,j=i-h,k=i+c.collisionWidth-g-h,l=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,m=c.at[0]==="left"?c.targetWidth:c.at[0]==="right"?-c.targetWidth:0,n=-2*c.offset[0],o,p;if(j<0){o=b.left+l+m+n+c.collisionWidth-g-f;if(o<0||o0){p=b.left-c.collisionPosition.marginLeft+l+m+n-h;if(p>0||d(p)0){p=b.top-c.collisionPosition.marginTop+m+n+o-h;if(p>0||d(p)10&&e<11;b.innerHTML="";c.removeChild(b)})()})();var c=a.ui.position});(function(a){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],a)}else if(window.jQuery&&!window.jQuery.fn.iconpicker){a(window.jQuery)}})(function(a){"use strict";var b={isEmpty:function(a){return a===false||a===""||a===null||a===undefined},isEmptyObject:function(a){return this.isEmpty(a)===true||a.length===0},isElement:function(b){return a(b).length>0},isString:function(a){return typeof a==="string"||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return a.inArray(b,c)!==-1},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}};var c=function(d,e){this._id=c._idCounter++;this.element=a(d).addClass("iconpicker-element");this._trigger("iconpickerCreate",{iconpickerValue:this.iconpickerValue});this.options=a.extend({},c.defaultOptions,this.element.data(),e);this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates);this.options.originalPlacement=this.options.placement;this.container=b.isElement(this.options.container)?a(this.options.container):false;if(this.container===false){if(this.element.is(".dropdown-toggle")){this.container=a("~ .dropdown-menu:first",this.element)}else{this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element}}this.container.addClass("iconpicker-container");if(this.isDropdownMenu()){this.options.placement="inline"}this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):false;if(this.input===false){this.input=this.container.find(this.options.input);if(!this.input.is("input,textarea")){this.input=false}}this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component);if(this.component.length===0){this.component=false}else{this.component.find("i").addClass("iconpicker-component")}this._createPopover();this._createIconpicker();if(this.getAcceptButton().length===0){this.options.mustAccept=false}if(this.isInputGroup()){this.container.parent().append(this.popover)}else{this.container.append(this.popover)}this._bindElementEvents();this._bindWindowEvents();this.update(this.options.selected);if(this.isInline()){this.show()}this._trigger("iconpickerCreated",{iconpickerValue:this.iconpickerValue})};c._idCounter=0;c.defaultOptions={title:false,selected:false,defaultValue:false,placement:"bottom",collision:"none",animation:true,hideOnSelect:true,showFooter:false,searchInFooter:false,mustAccept:false,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return a},input:"input,.iconpicker-input",inputSearch:false,container:false,component:".input-group-addon,.iconpicker-component",templates:{popover:'
      '+'
      ',footer:'',buttons:''+' ',search:'',iconpicker:'
      ',iconpickerItem:''}};c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");if(!!b){b[c].apply(b,d)}})};c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{};this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(!!this.options.title){c.append(a('
      '+this.options.title+"
      "))}if(this.hasSeparatedSearchInput()&&!this.options.searchInFooter){c.append(this.options.templates.search)}else if(!this.options.title){c.remove()}if(this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);if(this.hasSeparatedSearchInput()&&this.options.searchInFooter){d.append(a(this.options.templates.search))}if(!b.isEmpty(this.options.templates.buttons)){d.append(a(this.options.templates.buttons))}this.popover.append(d)}if(this.options.animation===true){this.popover.addClass("fade")}return this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);if(d.is("i")){d=d.parent()}b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue});if(b.options.mustAccept===false){b.update(d.data("iconpickerValue"));b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})}else{b.update(d.data("iconpickerValue"),true)}if(b.options.hideOnSelect&&b.options.mustAccept===false){b.hide()}};for(var d in this.options.icons){if(typeof this.options.icons[d].title==="string"){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title));e.data("iconpickerValue",this.options.icons[d].title).on("click.iconpicker",c);this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d].title));if(this.options.icons[d].searchTerms.length>0){var f="";for(var g=0;g0){a.attr("class",this.options.fullClassFormatter(this.iconpickerValue))}else{this.component.html(this.getHtml())}}},_updateFormGroupStatus:function(a){if(this.hasInput()){if(a!==false){this.input.parents(".form-group:first").removeClass("has-error")}else{this.input.parents(".form-group:first").addClass("has-error")}return true}return false},getValid:function(c){if(!b.isString(c)){c=""}var d=c==="";c=a.trim(c);var e=false;for(var f=0;f'},setSourceValue:function(a){a=this.setValue(a);if(a!==false&&a!==""){if(this.hasInput()){this.input.val(this.iconpickerValue)}else{this.element.data("iconpickerValue",this.iconpickerValue)}this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})}return a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;if(this.hasInput()){b=this.input.val()}else{b=this.element.data("iconpickerValue")}if(b===undefined||b===""||b===null||b===false){b=a}return b},hasInput:function(){return this.input!==false},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===true},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==false&&!this.isInputSearch()},hasComponent:function(){return this.component!==false},hasContainer:function(){return this.container!==false},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c)){this.iconpicker.find(".iconpicker-item").show();return a(false)}else{var d=[];this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this);var e=b.attr("title").toLowerCase();var f=b.attr("data-search-terms")?b.attr("data-search-terms").toLowerCase():"";e=e+" "+f;var g=false;try{g=new RegExp("(^|\\W)"+c,"g")}catch(a){g=false}if(g!==false&&e.match(g)){d.push(b);b.show()}else{b.hide()}});return d}},show:function(){if(this.popover.hasClass("show")){return false}a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide");this._trigger("iconpickerShow",{iconpickerValue:this.iconpickerValue});this.updatePlacement();this.popover.addClass("show");setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block");this._trigger("iconpickerShown",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},hide:function(){if(!this.popover.hasClass("show")){return false}this._trigger("iconpickerHide",{iconpickerValue:this.iconpickerValue});this.popover.removeClass("show");setTimeout(a.proxy(function(){this.popover.css("display","none");this.getSearchInput().val("");this.filter("");this._trigger("iconpickerHidden",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},toggle:function(){if(this.popover.is(":visible")){this.hide()}else{this.show(true)}},update:function(a,b){a=a?a:this.getSourceValue(this.iconpickerValue);this._trigger("iconpickerUpdate",{iconpickerValue:this.iconpickerValue});if(b===true){a=this.setValue(a)}else{a=this.setSourceValue(a);this._updateFormGroupStatus(a!==false)}if(a!==false){this._updateComponents()}this._trigger("iconpickerUpdated",{iconpickerValue:this.iconpickerValue});return a},destroy:function(){this._trigger("iconpickerDestroy",{iconpickerValue:this.iconpickerValue});this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");this._unbindElementEvents();this._unbindWindowEvents();a(this.popover).remove();this._trigger("iconpickerDestroyed",{iconpickerValue:this.iconpickerValue})},disable:function(){if(this.hasInput()){this.input.prop("disabled",true);return true}return false},enable:function(){if(this.hasInput()){this.input.prop("disabled",false);return true}return false},isDisabled:function(){if(this.hasInput()){return this.input.prop("disabled")===true}return false},isInline:function(){return this.options.placement==="inline"||this.popover.hasClass("inline")}};a.iconpicker=c;a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);if(!d.data("iconpicker")){d.data("iconpicker",new c(this,typeof b==="object"?b:{}))}})};c.defaultOptions=a.extend(c.defaultOptions,{icons:[{title:"fab fa-500px",searchTerms:[]},{title:"fab fa-accessible-icon",searchTerms:["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{title:"fab fa-accusoft",searchTerms:[]},{title:"fab fa-acquisitions-incorporated",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-ad",searchTerms:["advertisement","media","newspaper","promotion","publicity"]},{title:"fas fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"far fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"fas fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile"]},{title:"far fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile"]},{title:"fas fa-adjust",searchTerms:["contrast","dark","light","saturation"]},{title:"fab fa-adn",searchTerms:[]},{title:"fab fa-adversal",searchTerms:[]},{title:"fab fa-affiliatetheme",searchTerms:[]},{title:"fas fa-air-freshener",searchTerms:["car","deodorize","fresh","pine","scent"]},{title:"fab fa-airbnb",searchTerms:[]},{title:"fab fa-algolia",searchTerms:[]},{title:"fas fa-align-center",searchTerms:["format","middle","paragraph","text"]},{title:"fas fa-align-justify",searchTerms:["format","paragraph","text"]},{title:"fas fa-align-left",searchTerms:["format","paragraph","text"]},{title:"fas fa-align-right",searchTerms:["format","paragraph","text"]},{title:"fab fa-alipay",searchTerms:[]},{title:"fas fa-allergies",searchTerms:["allergy","freckles","hand","hives","pox","skin","spots"]},{title:"fab fa-amazon",searchTerms:[]},{title:"fab fa-amazon-pay",searchTerms:[]},{title:"fas fa-ambulance",searchTerms:["covid-19","emergency","emt","er","help","hospital","support","vehicle"]},{title:"fas fa-american-sign-language-interpreting",searchTerms:["asl","deaf","finger","hand","interpret","speak"]},{title:"fab fa-amilia",searchTerms:[]},{title:"fas fa-anchor",searchTerms:["berth","boat","dock","embed","link","maritime","moor","secure"]},{title:"fab fa-android",searchTerms:["robot"]},{title:"fab fa-angellist",searchTerms:[]},{title:"fas fa-angle-double-down",searchTerms:["arrows","caret","download","expand"]},{title:"fas fa-angle-double-left",searchTerms:["arrows","back","caret","laquo","previous","quote"]},{title:"fas fa-angle-double-right",searchTerms:["arrows","caret","forward","more","next","quote","raquo"]},{title:"fas fa-angle-double-up",searchTerms:["arrows","caret","collapse","upload"]},{title:"fas fa-angle-down",searchTerms:["arrow","caret","download","expand"]},{title:"fas fa-angle-left",searchTerms:["arrow","back","caret","less","previous"]},{title:"fas fa-angle-right",searchTerms:["arrow","care","forward","more","next"]},{title:"fas fa-angle-up",searchTerms:["arrow","caret","collapse","upload"]},{title:"fas fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"far fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"fab fa-angrycreative",searchTerms:[]},{title:"fab fa-angular",searchTerms:[]},{title:"fas fa-ankh",searchTerms:["amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{title:"fab fa-app-store",searchTerms:[]},{title:"fab fa-app-store-ios",searchTerms:[]},{title:"fab fa-apper",searchTerms:[]},{title:"fab fa-apple",searchTerms:["fruit","ios","mac","operating system","os","osx"]},{title:"fas fa-apple-alt",searchTerms:["fall","fruit","fuji","macintosh","orchard","seasonal","vegan"]},{title:"fab fa-apple-pay",searchTerms:[]},{title:"fas fa-archive",searchTerms:["box","package","save","storage"]},{title:"fas fa-archway",searchTerms:["arc","monument","road","street","tunnel"]},{title:"fas fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"far fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"fas fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"far fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"fas fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"far fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"fas fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"far fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fas fa-arrow-circle-down",searchTerms:["download"]},{title:"fas fa-arrow-circle-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-circle-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-circle-up",searchTerms:["upload"]},{title:"fas fa-arrow-down",searchTerms:["download"]},{title:"fas fa-arrow-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-up",searchTerms:["forward","upload"]},{title:"fas fa-arrows-alt",searchTerms:["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{title:"fas fa-arrows-alt-h",searchTerms:["arrows-h","expand","horizontal","landscape","resize","wide"]},{title:"fas fa-arrows-alt-v",searchTerms:["arrows-v","expand","portrait","resize","tall","vertical"]},{title:"fab fa-artstation",searchTerms:[]},{title:"fas fa-assistive-listening-systems",searchTerms:["amplify","audio","deaf","ear","headset","hearing","sound"]},{title:"fas fa-asterisk",searchTerms:["annotation","details","reference","star"]},{title:"fab fa-asymmetrik",searchTerms:[]},{title:"fas fa-at",searchTerms:["address","author","e-mail","email","handle"]},{title:"fas fa-atlas",searchTerms:["book","directions","geography","globe","map","travel","wayfinding"]},{title:"fab fa-atlassian",searchTerms:[]},{title:"fas fa-atom",searchTerms:["atheism","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{title:"fab fa-audible",searchTerms:[]},{title:"fas fa-audio-description",searchTerms:["blind","narration","video","visual"]},{title:"fab fa-autoprefixer",searchTerms:[]},{title:"fab fa-avianex",searchTerms:[]},{title:"fab fa-aviato",searchTerms:[]},{title:"fas fa-award",searchTerms:["honor","praise","prize","recognition","ribbon","trophy"]},{title:"fab fa-aws",searchTerms:[]},{title:"fas fa-baby",searchTerms:["child","diaper","doll","human","infant","kid","offspring","person","sprout"]},{title:"fas fa-baby-carriage",searchTerms:["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{title:"fas fa-backspace",searchTerms:["command","delete","erase","keyboard","undo"]},{title:"fas fa-backward",searchTerms:["previous","rewind"]},{title:"fas fa-bacon",searchTerms:["blt","breakfast","ham","lard","meat","pancetta","pork","rasher"]},{title:"fas fa-bacteria",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fas fa-bacterium",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fas fa-bahai",searchTerms:["bahai","bahá'í","star"]},{title:"fas fa-balance-scale",searchTerms:["balanced","justice","legal","measure","weight"]},{title:"fas fa-balance-scale-left",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fas fa-balance-scale-right",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fas fa-ban",searchTerms:["abort","ban","block","cancel","delete","hide","prohibit","remove","stop","trash"]},{title:"fas fa-band-aid",searchTerms:["bandage","boo boo","first aid","ouch"]},{title:"fab fa-bandcamp",searchTerms:[]},{title:"fas fa-barcode",searchTerms:["info","laser","price","scan","upc"]},{title:"fas fa-bars",searchTerms:["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{title:"fas fa-baseball-ball",searchTerms:["foul","hardball","league","leather","mlb","softball","sport"]},{title:"fas fa-basketball-ball",searchTerms:["dribble","dunk","hoop","nba"]},{title:"fas fa-bath",searchTerms:["clean","shower","tub","wash"]},{title:"fas fa-battery-empty",searchTerms:["charge","dead","power","status"]},{title:"fas fa-battery-full",searchTerms:["charge","power","status"]},{title:"fas fa-battery-half",searchTerms:["charge","power","status"]},{title:"fas fa-battery-quarter",searchTerms:["charge","low","power","status"]},{title:"fas fa-battery-three-quarters",searchTerms:["charge","power","status"]},{title:"fab fa-battle-net",searchTerms:[]},{title:"fas fa-bed",searchTerms:["lodging","mattress","rest","sleep","travel"]},{title:"fas fa-beer",searchTerms:["alcohol","ale","bar","beverage","brewery","drink","lager","liquor","mug","stein"]},{title:"fab fa-behance",searchTerms:[]},{title:"fab fa-behance-square",searchTerms:[]},{title:"fas fa-bell",searchTerms:["alarm","alert","chime","notification","reminder"]},{title:"far fa-bell",searchTerms:["alarm","alert","chime","notification","reminder"]},{title:"fas fa-bell-slash",searchTerms:["alert","cancel","disabled","notification","off","reminder"]},{title:"far fa-bell-slash",searchTerms:["alert","cancel","disabled","notification","off","reminder"]},{title:"fas fa-bezier-curve",searchTerms:["curves","illustrator","lines","path","vector"]},{title:"fas fa-bible",searchTerms:["book","catholicism","christianity","god","holy"]},{title:"fas fa-bicycle",searchTerms:["bike","gears","pedal","transportation","vehicle"]},{title:"fas fa-biking",searchTerms:["bicycle","bike","cycle","cycling","ride","wheel"]},{title:"fab fa-bimobject",searchTerms:[]},{title:"fas fa-binoculars",searchTerms:["glasses","magnify","scenic","spyglass","view"]},{title:"fas fa-biohazard",searchTerms:["covid-19","danger","dangerous","hazmat","medical","radioactive","toxic","waste","zombie"]},{title:"fas fa-birthday-cake",searchTerms:["anniversary","bakery","candles","celebration","dessert","frosting","holiday","party","pastry"]},{title:"fab fa-bitbucket",searchTerms:["atlassian","bitbucket-square","git"]},{title:"fab fa-bitcoin",searchTerms:[]},{title:"fab fa-bity",searchTerms:[]},{title:"fab fa-black-tie",searchTerms:[]},{title:"fab fa-blackberry",searchTerms:[]},{title:"fas fa-blender",searchTerms:["cocktail","milkshake","mixer","puree","smoothie"]},{title:"fas fa-blender-phone",searchTerms:["appliance","cocktail","communication","fantasy","milkshake","mixer","puree","silly","smoothie"]},{title:"fas fa-blind",searchTerms:["cane","disability","person","sight"]},{title:"fas fa-blog",searchTerms:["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{title:"fab fa-blogger",searchTerms:[]},{title:"fab fa-blogger-b",searchTerms:[]},{title:"fab fa-bluetooth",searchTerms:[]},{title:"fab fa-bluetooth-b",searchTerms:[]},{title:"fas fa-bold",searchTerms:["emphasis","format","text"]},{title:"fas fa-bolt",searchTerms:["electricity","lightning","weather","zap"]},{title:"fas fa-bomb",searchTerms:["error","explode","fuse","grenade","warning"]},{title:"fas fa-bone",searchTerms:["calcium","dog","skeletal","skeleton","tibia"]},{title:"fas fa-bong",searchTerms:["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{title:"fas fa-book",searchTerms:["diary","documentation","journal","library","read"]},{title:"fas fa-book-dead",searchTerms:["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","necronomicon","read","skull","spell"]},{title:"fas fa-book-medical",searchTerms:["diary","documentation","health","history","journal","library","read","record"]},{title:"fas fa-book-open",searchTerms:["flyer","library","notebook","open book","pamphlet","reading"]},{title:"fas fa-book-reader",searchTerms:["flyer","library","notebook","open book","pamphlet","reading"]},{title:"fas fa-bookmark",searchTerms:["favorite","marker","read","remember","save"]},{title:"far fa-bookmark",searchTerms:["favorite","marker","read","remember","save"]},{title:"fab fa-bootstrap",searchTerms:[]},{title:"fas fa-border-all",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fas fa-border-none",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fas fa-border-style",searchTerms:[]},{title:"fas fa-bowling-ball",searchTerms:["alley","candlepin","gutter","lane","strike","tenpin"]},{title:"fas fa-box",searchTerms:["archive","container","package","storage"]},{title:"fas fa-box-open",searchTerms:["archive","container","package","storage","unpack"]},{title:"fas fa-box-tissue",searchTerms:["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{title:"fas fa-boxes",searchTerms:["archives","inventory","storage","warehouse"]},{title:"fas fa-braille",searchTerms:["alphabet","blind","dots","raised","vision"]},{title:"fas fa-brain",searchTerms:["cerebellum","gray matter","intellect","medulla oblongata","mind","noodle","wit"]},{title:"fas fa-bread-slice",searchTerms:["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{title:"fas fa-briefcase",searchTerms:["bag","business","luggage","office","work"]},{title:"fas fa-briefcase-medical",searchTerms:["doctor","emt","first aid","health"]},{title:"fas fa-broadcast-tower",searchTerms:["airwaves","antenna","radio","reception","waves"]},{title:"fas fa-broom",searchTerms:["clean","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","witch"]},{title:"fas fa-brush",searchTerms:["art","bristles","color","handle","paint"]},{title:"fab fa-btc",searchTerms:[]},{title:"fab fa-buffer",searchTerms:[]},{title:"fas fa-bug",searchTerms:["beetle","error","insect","report"]},{title:"fas fa-building",searchTerms:["apartment","business","city","company","office","work"]},{title:"far fa-building",searchTerms:["apartment","business","city","company","office","work"]},{title:"fas fa-bullhorn",searchTerms:["announcement","broadcast","louder","megaphone","share"]},{title:"fas fa-bullseye",searchTerms:["archery","goal","objective","target"]},{title:"fas fa-burn",searchTerms:["caliente","energy","fire","flame","gas","heat","hot"]},{title:"fab fa-buromobelexperte",searchTerms:[]},{title:"fas fa-bus",searchTerms:["public transportation","transportation","travel","vehicle"]},{title:"fas fa-bus-alt",searchTerms:["mta","public transportation","transportation","travel","vehicle"]},{title:"fas fa-business-time",searchTerms:["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{title:"fab fa-buy-n-large",searchTerms:[]},{title:"fab fa-buysellads",searchTerms:[]},{title:"fas fa-calculator",searchTerms:["abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{title:"fas fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"far fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"fas fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"far fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"fas fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{title:"far fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{title:"fas fa-calendar-day",searchTerms:["date","detail","event","focus","schedule","single day","time","today","when"]},{title:"fas fa-calendar-minus",searchTerms:["calendar","date","delete","event","negative","remove","schedule","time","when"]},{title:"far fa-calendar-minus",searchTerms:["calendar","date","delete","event","negative","remove","schedule","time","when"]},{title:"fas fa-calendar-plus",searchTerms:["add","calendar","create","date","event","new","positive","schedule","time","when"]},{title:"far fa-calendar-plus",searchTerms:["add","calendar","create","date","event","new","positive","schedule","time","when"]},{title:"fas fa-calendar-times",searchTerms:["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{title:"far fa-calendar-times",searchTerms:["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{title:"fas fa-calendar-week",searchTerms:["date","detail","event","focus","schedule","single week","time","today","when"]},{title:"fas fa-camera",searchTerms:["image","lens","photo","picture","record","shutter","video"]},{title:"fas fa-camera-retro",searchTerms:["image","lens","photo","picture","record","shutter","video"]},{title:"fas fa-campground",searchTerms:["camping","fall","outdoors","teepee","tent","tipi"]},{title:"fab fa-canadian-maple-leaf",searchTerms:["canada","flag","flora","nature","plant"]},{title:"fas fa-candy-cane",searchTerms:["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{title:"fas fa-cannabis",searchTerms:["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{title:"fas fa-capsules",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fas fa-car",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-car-alt",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-car-battery",searchTerms:["auto","electric","mechanic","power"]},{title:"fas fa-car-crash",searchTerms:["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{title:"fas fa-car-side",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-caravan",searchTerms:["camper","motor home","rv","trailer","travel"]},{title:"fas fa-caret-down",searchTerms:["arrow","dropdown","expand","menu","more","triangle"]},{title:"fas fa-caret-left",searchTerms:["arrow","back","previous","triangle"]},{title:"fas fa-caret-right",searchTerms:["arrow","forward","next","triangle"]},{title:"fas fa-caret-square-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"far fa-caret-square-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"fas fa-caret-square-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"far fa-caret-square-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"fas fa-caret-square-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"far fa-caret-square-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"fas fa-caret-square-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"far fa-caret-square-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"fas fa-caret-up",searchTerms:["arrow","collapse","triangle"]},{title:"fas fa-carrot",searchTerms:["bugs bunny","orange","vegan","vegetable"]},{title:"fas fa-cart-arrow-down",searchTerms:["download","save","shopping"]},{title:"fas fa-cart-plus",searchTerms:["add","create","new","positive","shopping"]},{title:"fas fa-cash-register",searchTerms:["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{title:"fas fa-cat",searchTerms:["feline","halloween","holiday","kitten","kitty","meow","pet"]},{title:"fab fa-cc-amazon-pay",searchTerms:[]},{title:"fab fa-cc-amex",searchTerms:["amex"]},{title:"fab fa-cc-apple-pay",searchTerms:[]},{title:"fab fa-cc-diners-club",searchTerms:[]},{title:"fab fa-cc-discover",searchTerms:[]},{title:"fab fa-cc-jcb",searchTerms:[]},{title:"fab fa-cc-mastercard",searchTerms:[]},{title:"fab fa-cc-paypal",searchTerms:[]},{title:"fab fa-cc-stripe",searchTerms:[]},{title:"fab fa-cc-visa",searchTerms:[]},{title:"fab fa-centercode",searchTerms:[]},{title:"fab fa-centos",searchTerms:["linux","operating system","os"]},{title:"fas fa-certificate",searchTerms:["badge","star","verified"]},{title:"fas fa-chair",searchTerms:["furniture","seat","sit"]},{title:"fas fa-chalkboard",searchTerms:["blackboard","learning","school","teaching","whiteboard","writing"]},{title:"fas fa-chalkboard-teacher",searchTerms:["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{title:"fas fa-charging-station",searchTerms:["electric","ev","tesla","vehicle"]},{title:"fas fa-chart-area",searchTerms:["analytics","area","chart","graph"]},{title:"fas fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"far fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"fas fa-chart-line",searchTerms:["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{title:"fas fa-chart-pie",searchTerms:["analytics","chart","diagram","graph","pie"]},{title:"fas fa-check",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo","yes"]},{title:"fas fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"far fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-check-double",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{title:"fas fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"far fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-cheese",searchTerms:["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{title:"fas fa-chess",searchTerms:["board","castle","checkmate","game","king","rook","strategy","tournament"]},{title:"fas fa-chess-bishop",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-board",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-king",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-knight",searchTerms:["board","checkmate","game","horse","strategy"]},{title:"fas fa-chess-pawn",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-queen",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-rook",searchTerms:["board","castle","checkmate","game","strategy"]},{title:"fas fa-chevron-circle-down",searchTerms:["arrow","download","dropdown","menu","more"]},{title:"fas fa-chevron-circle-left",searchTerms:["arrow","back","previous"]},{title:"fas fa-chevron-circle-right",searchTerms:["arrow","forward","next"]},{title:"fas fa-chevron-circle-up",searchTerms:["arrow","collapse","upload"]},{title:"fas fa-chevron-down",searchTerms:["arrow","download","expand"]},{title:"fas fa-chevron-left",searchTerms:["arrow","back","bracket","previous"]},{title:"fas fa-chevron-right",searchTerms:["arrow","bracket","forward","next"]},{title:"fas fa-chevron-up",searchTerms:["arrow","collapse","upload"]},{title:"fas fa-child",searchTerms:["boy","girl","kid","toddler","young"]},{title:"fab fa-chrome",searchTerms:["browser"]},{title:"fab fa-chromecast",searchTerms:[]},{title:"fas fa-church",searchTerms:["building","cathedral","chapel","community","religion"]},{title:"fas fa-circle",searchTerms:["circle-thin","diameter","dot","ellipse","notification","round"]},{title:"far fa-circle",searchTerms:["circle-thin","diameter","dot","ellipse","notification","round"]},{title:"fas fa-circle-notch",searchTerms:["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{title:"fas fa-city",searchTerms:["buildings","busy","skyscrapers","urban","windows"]},{title:"fas fa-clinic-medical",searchTerms:["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{title:"fas fa-clipboard",searchTerms:["copy","notes","paste","record"]},{title:"far fa-clipboard",searchTerms:["copy","notes","paste","record"]},{title:"fas fa-clipboard-check",searchTerms:["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-clipboard-list",searchTerms:["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{title:"fas fa-clock",searchTerms:["date","late","schedule","time","timer","timestamp","watch"]},{title:"far fa-clock",searchTerms:["date","late","schedule","time","timer","timestamp","watch"]},{title:"fas fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"far fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"fas fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"far fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"fas fa-cloud",searchTerms:["atmosphere","fog","overcast","save","upload","weather"]},{title:"fas fa-cloud-download-alt",searchTerms:["download","export","save"]},{title:"fas fa-cloud-meatball",searchTerms:["FLDSMDFR","food","spaghetti","storm"]},{title:"fas fa-cloud-moon",searchTerms:["crescent","evening","lunar","night","partly cloudy","sky"]},{title:"fas fa-cloud-moon-rain",searchTerms:["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{title:"fas fa-cloud-rain",searchTerms:["precipitation","rain","sky","storm"]},{title:"fas fa-cloud-showers-heavy",searchTerms:["precipitation","rain","sky","storm"]},{title:"fas fa-cloud-sun",searchTerms:["clear","day","daytime","fall","outdoors","overcast","partly cloudy"]},{title:"fas fa-cloud-sun-rain",searchTerms:["day","overcast","precipitation","storm","summer","sunshower"]},{title:"fas fa-cloud-upload-alt",searchTerms:["cloud-upload","import","save","upload"]},{title:"fab fa-cloudflare",searchTerms:[]},{title:"fab fa-cloudscale",searchTerms:[]},{title:"fab fa-cloudsmith",searchTerms:[]},{title:"fab fa-cloudversify",searchTerms:[]},{title:"fas fa-cocktail",searchTerms:["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{title:"fas fa-code",searchTerms:["brackets","code","development","html"]},{title:"fas fa-code-branch",searchTerms:["branch","code-fork","fork","git","github","rebase","svn","vcs","version"]},{title:"fab fa-codepen",searchTerms:[]},{title:"fab fa-codiepie",searchTerms:[]},{title:"fas fa-coffee",searchTerms:["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{title:"fas fa-cog",searchTerms:["gear","mechanical","settings","sprocket","wheel"]},{title:"fas fa-cogs",searchTerms:["gears","mechanical","settings","sprocket","wheel"]},{title:"fas fa-coins",searchTerms:["currency","dime","financial","gold","money","penny"]},{title:"fas fa-columns",searchTerms:["browser","dashboard","organize","panes","split"]},{title:"fas fa-comment",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fas fa-comment-dots",searchTerms:["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{title:"far fa-comment-dots",searchTerms:["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{title:"fas fa-comment-medical",searchTerms:["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{title:"fas fa-comment-slash",searchTerms:["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{title:"fas fa-comments",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comments",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comments-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fas fa-compact-disc",searchTerms:["album","bluray","cd","disc","dvd","media","movie","music","record","video","vinyl"]},{title:"fas fa-compass",searchTerms:["directions","directory","location","menu","navigation","safari","travel"]},{title:"far fa-compass",searchTerms:["directions","directory","location","menu","navigation","safari","travel"]},{title:"fas fa-compress",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-compress-alt",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-compress-arrows-alt",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-concierge-bell",searchTerms:["attention","hotel","receptionist","service","support"]},{title:"fab fa-confluence",searchTerms:["atlassian"]},{title:"fab fa-connectdevelop",searchTerms:[]},{title:"fab fa-contao",searchTerms:[]},{title:"fas fa-cookie",searchTerms:["baked good","chips","chocolate","eat","snack","sweet","treat"]},{title:"fas fa-cookie-bite",searchTerms:["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{title:"fas fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"far fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"fas fa-copyright",searchTerms:["brand","mark","register","trademark"]},{title:"far fa-copyright",searchTerms:["brand","mark","register","trademark"]},{title:"fab fa-cotton-bureau",searchTerms:["clothing","t-shirts","tshirts"]},{title:"fas fa-couch",searchTerms:["chair","cushion","furniture","relax","sofa"]},{title:"fab fa-cpanel",searchTerms:[]},{title:"fab fa-creative-commons",searchTerms:[]},{title:"fab fa-creative-commons-by",searchTerms:[]},{title:"fab fa-creative-commons-nc",searchTerms:[]},{title:"fab fa-creative-commons-nc-eu",searchTerms:[]},{title:"fab fa-creative-commons-nc-jp",searchTerms:[]},{title:"fab fa-creative-commons-nd",searchTerms:[]},{title:"fab fa-creative-commons-pd",searchTerms:[]},{title:"fab fa-creative-commons-pd-alt",searchTerms:[]},{title:"fab fa-creative-commons-remix",searchTerms:[]},{title:"fab fa-creative-commons-sa",searchTerms:[]},{title:"fab fa-creative-commons-sampling",searchTerms:[]},{title:"fab fa-creative-commons-sampling-plus",searchTerms:[]},{title:"fab fa-creative-commons-share",searchTerms:[]},{title:"fab fa-creative-commons-zero",searchTerms:[]},{title:"fas fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"far fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"fab fa-critical-role",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-crop",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fas fa-crop-alt",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fas fa-cross",searchTerms:["catholicism","christianity","church","jesus"]},{title:"fas fa-crosshairs",searchTerms:["aim","bullseye","gpd","picker","position"]},{title:"fas fa-crow",searchTerms:["bird","bullfrog","fauna","halloween","holiday","toad"]},{title:"fas fa-crown",searchTerms:["award","favorite","king","queen","royal","tiara"]},{title:"fas fa-crutch",searchTerms:["cane","injury","mobility","wheelchair"]},{title:"fab fa-css3",searchTerms:["code"]},{title:"fab fa-css3-alt",searchTerms:[]},{title:"fas fa-cube",searchTerms:["3d","block","dice","package","square","tesseract"]},{title:"fas fa-cubes",searchTerms:["3d","block","dice","package","pyramid","square","stack","tesseract"]},{title:"fas fa-cut",searchTerms:["clip","scissors","snip"]},{title:"fab fa-cuttlefish",searchTerms:[]},{title:"fab fa-d-and-d",searchTerms:[]},{title:"fab fa-d-and-d-beyond",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{title:"fab fa-dailymotion",searchTerms:[]},{title:"fab fa-dashcube",searchTerms:[]},{title:"fas fa-database",searchTerms:["computer","development","directory","memory","storage"]},{title:"fas fa-deaf",searchTerms:["ear","hearing","sign language"]},{title:"fab fa-deezer",searchTerms:[]},{title:"fab fa-delicious",searchTerms:[]},{title:"fas fa-democrat",searchTerms:["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{title:"fab fa-deploydog",searchTerms:[]},{title:"fab fa-deskpro",searchTerms:[]},{title:"fas fa-desktop",searchTerms:["computer","cpu","demo","desktop","device","imac","machine","monitor","pc","screen"]},{title:"fab fa-dev",searchTerms:[]},{title:"fab fa-deviantart",searchTerms:[]},{title:"fas fa-dharmachakra",searchTerms:["buddhism","buddhist","wheel of dharma"]},{title:"fab fa-dhl",searchTerms:["Dalsey","Hillblom and Lynn","german","package","shipping"]},{title:"fas fa-diagnoses",searchTerms:["analyze","detect","diagnosis","examine","medicine"]},{title:"fab fa-diaspora",searchTerms:[]},{title:"fas fa-dice",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-d20",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-d6",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-five",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-four",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-one",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-six",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-three",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-two",searchTerms:["chance","gambling","game","roll"]},{title:"fab fa-digg",searchTerms:[]},{title:"fab fa-digital-ocean",searchTerms:[]},{title:"fas fa-digital-tachograph",searchTerms:["data","distance","speed","tachometer"]},{title:"fas fa-directions",searchTerms:["map","navigation","sign","turn"]},{title:"fab fa-discord",searchTerms:[]},{title:"fab fa-discourse",searchTerms:[]},{title:"fas fa-disease",searchTerms:["bacteria","cancer","covid-19","illness","infection","sickness","virus"]},{title:"fas fa-divide",searchTerms:["arithmetic","calculus","division","math"]},{title:"fas fa-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"far fa-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"fas fa-dna",searchTerms:["double helix","genetic","helix","molecule","protein"]},{title:"fab fa-dochub",searchTerms:[]},{title:"fab fa-docker",searchTerms:[]},{title:"fas fa-dog",searchTerms:["animal","canine","fauna","mammal","pet","pooch","puppy","woof"]},{title:"fas fa-dollar-sign",searchTerms:["$","cost","dollar-sign","money","price","usd"]},{title:"fas fa-dolly",searchTerms:["carry","shipping","transport"]},{title:"fas fa-dolly-flatbed",searchTerms:["carry","inventory","shipping","transport"]},{title:"fas fa-donate",searchTerms:["contribute","generosity","gift","give"]},{title:"fas fa-door-closed",searchTerms:["enter","exit","locked"]},{title:"fas fa-door-open",searchTerms:["enter","exit","welcome"]},{title:"fas fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"far fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"fas fa-dove",searchTerms:["bird","fauna","flying","peace","war"]},{title:"fas fa-download",searchTerms:["export","hard drive","save","transfer"]},{title:"fab fa-draft2digital",searchTerms:[]},{title:"fas fa-drafting-compass",searchTerms:["design","map","mechanical drawing","plot","plotting"]},{title:"fas fa-dragon",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","fire","lizard","serpent"]},{title:"fas fa-draw-polygon",searchTerms:["anchors","lines","object","render","shape"]},{title:"fab fa-dribbble",searchTerms:[]},{title:"fab fa-dribbble-square",searchTerms:[]},{title:"fab fa-dropbox",searchTerms:[]},{title:"fas fa-drum",searchTerms:["instrument","music","percussion","snare","sound"]},{title:"fas fa-drum-steelpan",searchTerms:["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{title:"fas fa-drumstick-bite",searchTerms:["bone","chicken","leg","meat","poultry","turkey"]},{title:"fab fa-drupal",searchTerms:[]},{title:"fas fa-dumbbell",searchTerms:["exercise","gym","strength","weight","weight-lifting"]},{title:"fas fa-dumpster",searchTerms:["alley","bin","commercial","trash","waste"]},{title:"fas fa-dumpster-fire",searchTerms:["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{title:"fas fa-dungeon",searchTerms:["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{title:"fab fa-dyalog",searchTerms:[]},{title:"fab fa-earlybirds",searchTerms:[]},{title:"fab fa-ebay",searchTerms:[]},{title:"fab fa-edge",searchTerms:["browser","ie"]},{title:"fab fa-edge-legacy",searchTerms:[]},{title:"fas fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"far fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"fas fa-egg",searchTerms:["breakfast","chicken","easter","shell","yolk"]},{title:"fas fa-eject",searchTerms:["abort","cancel","cd","discharge"]},{title:"fab fa-elementor",searchTerms:[]},{title:"fas fa-ellipsis-h",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fas fa-ellipsis-v",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fab fa-ello",searchTerms:[]},{title:"fab fa-ember",searchTerms:[]},{title:"fab fa-empire",searchTerms:[]},{title:"fas fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open-text",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-square",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fab fa-envira",searchTerms:["leaf"]},{title:"fas fa-equals",searchTerms:["arithmetic","even","match","math"]},{title:"fas fa-eraser",searchTerms:["art","delete","remove","rubber"]},{title:"fab fa-erlang",searchTerms:[]},{title:"fab fa-ethereum",searchTerms:[]},{title:"fas fa-ethernet",searchTerms:["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{title:"fab fa-etsy",searchTerms:[]},{title:"fas fa-euro-sign",searchTerms:["currency","dollar","exchange","money"]},{title:"fab fa-evernote",searchTerms:[]},{title:"fas fa-exchange-alt",searchTerms:["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{title:"fas fa-exclamation",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-circle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-triangle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-expand",searchTerms:["bigger","enlarge","fullscreen","resize"]},{title:"fas fa-expand-alt",searchTerms:["arrows","bigger","enlarge","fullscreen","resize"]},{title:"fas fa-expand-arrows-alt",searchTerms:["bigger","enlarge","fullscreen","move","resize"]},{title:"fab fa-expeditedssl",searchTerms:[]},{title:"fas fa-external-link-alt",searchTerms:["external-link","new","open","share"]},{title:"fas fa-external-link-square-alt",searchTerms:["external-link-square","new","open","share"]},{title:"fas fa-eye",searchTerms:["look","optic","see","seen","show","sight","views","visible"]},{title:"far fa-eye",searchTerms:["look","optic","see","seen","show","sight","views","visible"]},{title:"fas fa-eye-dropper",searchTerms:["beaker","clone","color","copy","eyedropper","pipette"]},{title:"fas fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"far fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"fab fa-facebook",searchTerms:["facebook-official","social network"]},{title:"fab fa-facebook-f",searchTerms:["facebook"]},{title:"fab fa-facebook-messenger",searchTerms:[]},{title:"fab fa-facebook-square",searchTerms:["social network"]},{title:"fas fa-fan",searchTerms:["ac","air conditioning","blade","blower","cool","hot"]},{title:"fab fa-fantasy-flight-games",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-fast-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-fast-forward",searchTerms:["end","last","next"]},{title:"fas fa-faucet",searchTerms:["covid-19","drip","house","hygiene","kitchen","sink","water"]},{title:"fas fa-fax",searchTerms:["business","communicate","copy","facsimile","send"]},{title:"fas fa-feather",searchTerms:["bird","light","plucked","quill","write"]},{title:"fas fa-feather-alt",searchTerms:["bird","light","plucked","quill","write"]},{title:"fab fa-fedex",searchTerms:["Federal Express","package","shipping"]},{title:"fab fa-fedora",searchTerms:["linux","operating system","os"]},{title:"fas fa-female",searchTerms:["human","person","profile","user","woman"]},{title:"fas fa-fighter-jet",searchTerms:["airplane","fast","fly","goose","maverick","plane","quick","top gun","transportation","travel"]},{title:"fab fa-figma",searchTerms:["app","design","interface"]},{title:"fas fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"far fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"fas fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"far fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"fas fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"far fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"fas fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"far fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"fas fa-file-code",searchTerms:["css","development","document","html"]},{title:"far fa-file-code",searchTerms:["css","development","document","html"]},{title:"fas fa-file-contract",searchTerms:["agreement","binding","document","legal","signature"]},{title:"fas fa-file-csv",searchTerms:["document","excel","numbers","spreadsheets","table"]},{title:"fas fa-file-download",searchTerms:["document","export","save"]},{title:"fas fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"far fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"fas fa-file-export",searchTerms:["download","save"]},{title:"fas fa-file-image",searchTerms:["document","image","jpg","photo","png"]},{title:"far fa-file-image",searchTerms:["document","image","jpg","photo","png"]},{title:"fas fa-file-import",searchTerms:["copy","document","send","upload"]},{title:"fas fa-file-invoice",searchTerms:["account","bill","charge","document","payment","receipt"]},{title:"fas fa-file-invoice-dollar",searchTerms:["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{title:"fas fa-file-medical",searchTerms:["document","health","history","prescription","record"]},{title:"fas fa-file-medical-alt",searchTerms:["document","health","history","prescription","record"]},{title:"fas fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"far fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"fas fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"far fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"fas fa-file-prescription",searchTerms:["document","drugs","medical","medicine","rx"]},{title:"fas fa-file-signature",searchTerms:["John Hancock","contract","document","name"]},{title:"fas fa-file-upload",searchTerms:["document","import","page","save"]},{title:"fas fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"far fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"fas fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"far fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"fas fa-fill",searchTerms:["bucket","color","paint","paint bucket"]},{title:"fas fa-fill-drip",searchTerms:["bucket","color","drop","paint","paint bucket","spill"]},{title:"fas fa-film",searchTerms:["cinema","movie","strip","video"]},{title:"fas fa-filter",searchTerms:["funnel","options","separate","sort"]},{title:"fas fa-fingerprint",searchTerms:["human","id","identification","lock","smudge","touch","unique","unlock"]},{title:"fas fa-fire",searchTerms:["burn","caliente","flame","heat","hot","popular"]},{title:"fas fa-fire-alt",searchTerms:["burn","caliente","flame","heat","hot","popular"]},{title:"fas fa-fire-extinguisher",searchTerms:["burn","caliente","fire fighter","flame","heat","hot","rescue"]},{title:"fab fa-firefox",searchTerms:["browser"]},{title:"fab fa-firefox-browser",searchTerms:["browser"]},{title:"fas fa-first-aid",searchTerms:["emergency","emt","health","medical","rescue"]},{title:"fab fa-first-order",searchTerms:[]},{title:"fab fa-first-order-alt",searchTerms:[]},{title:"fab fa-firstdraft",searchTerms:[]},{title:"fas fa-fish",searchTerms:["fauna","gold","seafood","swimming"]},{title:"fas fa-fist-raised",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","hand","ki","monk","resist","strength","unarmed combat"]},{title:"fas fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"far fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"fas fa-flag-checkered",searchTerms:["notice","notification","notify","pole","racing","report","symbol"]},{title:"fas fa-flag-usa",searchTerms:["betsy ross","country","old glory","stars","stripes","symbol"]},{title:"fas fa-flask",searchTerms:["beaker","experimental","labs","science"]},{title:"fab fa-flickr",searchTerms:[]},{title:"fab fa-flipboard",searchTerms:[]},{title:"fas fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"far fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"fab fa-fly",searchTerms:[]},{title:"fas fa-folder",searchTerms:["archive","directory","document","file"]},{title:"far fa-folder",searchTerms:["archive","directory","document","file"]},{title:"fas fa-folder-minus",searchTerms:["archive","delete","directory","document","file","negative","remove"]},{title:"fas fa-folder-open",searchTerms:["archive","directory","document","empty","file","new"]},{title:"far fa-folder-open",searchTerms:["archive","directory","document","empty","file","new"]},{title:"fas fa-folder-plus",searchTerms:["add","archive","create","directory","document","file","new","positive"]},{title:"fas fa-font",searchTerms:["alphabet","glyph","text","type","typeface"]},{title:"fab fa-font-awesome",searchTerms:["meanpath"]},{title:"fab fa-font-awesome-alt",searchTerms:[]},{title:"fab fa-font-awesome-flag",searchTerms:[]},{title:"far fa-font-awesome-logo-full",searchTerms:[]},{title:"fas fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-fonticons",searchTerms:[]},{title:"fab fa-fonticons-fi",searchTerms:[]},{title:"fas fa-football-ball",searchTerms:["ball","fall","nfl","pigskin","seasonal"]},{title:"fab fa-fort-awesome",searchTerms:["castle"]},{title:"fab fa-fort-awesome-alt",searchTerms:["castle"]},{title:"fab fa-forumbee",searchTerms:[]},{title:"fas fa-forward",searchTerms:["forward","next","skip"]},{title:"fab fa-foursquare",searchTerms:[]},{title:"fab fa-free-code-camp",searchTerms:[]},{title:"fab fa-freebsd",searchTerms:[]},{title:"fas fa-frog",searchTerms:["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{title:"fas fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fas fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fab fa-fulcrum",searchTerms:[]},{title:"fas fa-funnel-dollar",searchTerms:["filter","money","options","separate","sort"]},{title:"fas fa-futbol",searchTerms:["ball","football","mls","soccer"]},{title:"far fa-futbol",searchTerms:["ball","football","mls","soccer"]},{title:"fab fa-galactic-republic",searchTerms:["politics","star wars"]},{title:"fab fa-galactic-senate",searchTerms:["star wars"]},{title:"fas fa-gamepad",searchTerms:["arcade","controller","d-pad","joystick","video","video game"]},{title:"fas fa-gas-pump",searchTerms:["car","fuel","gasoline","petrol"]},{title:"fas fa-gavel",searchTerms:["hammer","judge","law","lawyer","opinion"]},{title:"fas fa-gem",searchTerms:["diamond","jewelry","sapphire","stone","treasure"]},{title:"far fa-gem",searchTerms:["diamond","jewelry","sapphire","stone","treasure"]},{title:"fas fa-genderless",searchTerms:["androgynous","asexual","sexless"]},{title:"fab fa-get-pocket",searchTerms:[]},{title:"fab fa-gg",searchTerms:[]},{title:"fab fa-gg-circle",searchTerms:[]},{title:"fas fa-ghost",searchTerms:["apparition","blinky","clyde","floating","halloween","holiday","inky","pinky","spirit"]},{title:"fas fa-gift",searchTerms:["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{title:"fas fa-gifts",searchTerms:["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{title:"fab fa-git",searchTerms:[]},{title:"fab fa-git-alt",searchTerms:[]},{title:"fab fa-git-square",searchTerms:[]},{title:"fab fa-github",searchTerms:["octocat"]},{title:"fab fa-github-alt",searchTerms:["octocat"]},{title:"fab fa-github-square",searchTerms:["octocat"]},{title:"fab fa-gitkraken",searchTerms:[]},{title:"fab fa-gitlab",searchTerms:["Axosoft"]},{title:"fab fa-gitter",searchTerms:[]},{title:"fas fa-glass-cheers",searchTerms:["alcohol","bar","beverage","celebration","champagne","clink","drink","holiday","new year's eve","party","toast"]},{title:"fas fa-glass-martini",searchTerms:["alcohol","bar","beverage","drink","liquor"]},{title:"fas fa-glass-martini-alt",searchTerms:["alcohol","bar","beverage","drink","liquor"]},{title:"fas fa-glass-whiskey",searchTerms:["alcohol","bar","beverage","bourbon","drink","liquor","neat","rye","scotch","whisky"]},{title:"fas fa-glasses",searchTerms:["hipster","nerd","reading","sight","spectacles","vision"]},{title:"fab fa-glide",searchTerms:[]},{title:"fab fa-glide-g",searchTerms:[]},{title:"fas fa-globe",searchTerms:["all","coordinates","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-africa",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-americas",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-asia",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-europe",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fab fa-gofore",searchTerms:[]},{title:"fas fa-golf-ball",searchTerms:["caddy","eagle","putt","tee"]},{title:"fab fa-goodreads",searchTerms:[]},{title:"fab fa-goodreads-g",searchTerms:[]},{title:"fab fa-google",searchTerms:[]},{title:"fab fa-google-drive",searchTerms:[]},{title:"fab fa-google-pay",searchTerms:[]},{title:"fab fa-google-play",searchTerms:[]},{title:"fab fa-google-plus",searchTerms:["google-plus-circle","google-plus-official"]},{title:"fab fa-google-plus-g",searchTerms:["google-plus","social network"]},{title:"fab fa-google-plus-square",searchTerms:["social network"]},{title:"fab fa-google-wallet",searchTerms:[]},{title:"fas fa-gopuram",searchTerms:["building","entrance","hinduism","temple","tower"]},{title:"fas fa-graduation-cap",searchTerms:["ceremony","college","graduate","learning","school","student"]},{title:"fab fa-gratipay",searchTerms:["favorite","heart","like","love"]},{title:"fab fa-grav",searchTerms:[]},{title:"fas fa-greater-than",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-greater-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-grimace",searchTerms:["cringe","emoticon","face","teeth"]},{title:"far fa-grimace",searchTerms:["cringe","emoticon","face","teeth"]},{title:"fas fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam-sweat",searchTerms:["embarass","emoticon","face","smile"]},{title:"far fa-grin-beam-sweat",searchTerms:["embarass","emoticon","face","smile"]},{title:"fas fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"far fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"fas fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"far fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"fas fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"far fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"fas fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"far fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"fas fa-grip-horizontal",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-lines",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-lines-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fab fa-gripfire",searchTerms:[]},{title:"fab fa-grunt",searchTerms:[]},{title:"fab fa-guilded",searchTerms:[]},{title:"fas fa-guitar",searchTerms:["acoustic","instrument","music","rock","rock and roll","song","strings"]},{title:"fab fa-gulp",searchTerms:[]},{title:"fas fa-h-square",searchTerms:["directions","emergency","hospital","hotel","map"]},{title:"fab fa-hacker-news",searchTerms:[]},{title:"fab fa-hacker-news-square",searchTerms:[]},{title:"fab fa-hackerrank",searchTerms:[]},{title:"fas fa-hamburger",searchTerms:["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{title:"fas fa-hammer",searchTerms:["admin","fix","repair","settings","tool"]},{title:"fas fa-hamsa",searchTerms:["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{title:"fas fa-hand-holding",searchTerms:["carry","lift"]},{title:"fas fa-hand-holding-heart",searchTerms:["carry","charity","gift","lift","package"]},{title:"fas fa-hand-holding-medical",searchTerms:["care","covid-19","donate","help"]},{title:"fas fa-hand-holding-usd",searchTerms:["$","carry","dollar sign","donation","giving","lift","money","price"]},{title:"fas fa-hand-holding-water",searchTerms:["carry","covid-19","drought","grow","lift"]},{title:"fas fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"far fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"fas fa-hand-middle-finger",searchTerms:["flip the bird","gesture","hate","rude"]},{title:"fas fa-hand-paper",searchTerms:["game","halt","roshambo","stop"]},{title:"far fa-hand-paper",searchTerms:["game","halt","roshambo","stop"]},{title:"fas fa-hand-peace",searchTerms:["rest","truce"]},{title:"far fa-hand-peace",searchTerms:["rest","truce"]},{title:"fas fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"far fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"fas fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"far fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"fas fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"far fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"fas fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"far fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"fas fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"far fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"fas fa-hand-rock",searchTerms:["fist","game","roshambo"]},{title:"far fa-hand-rock",searchTerms:["fist","game","roshambo"]},{title:"fas fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"far fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"fas fa-hand-sparkles",searchTerms:["clean","covid-19","hygiene","magic","soap","wash"]},{title:"fas fa-hand-spock",searchTerms:["live long","prosper","salute","star trek","vulcan"]},{title:"far fa-hand-spock",searchTerms:["live long","prosper","salute","star trek","vulcan"]},{title:"fas fa-hands",searchTerms:["carry","hold","lift"]},{title:"fas fa-hands-helping",searchTerms:["aid","assistance","handshake","partnership","volunteering"]},{title:"fas fa-hands-wash",searchTerms:["covid-19","hygiene","soap","wash"]},{title:"fas fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"far fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"fas fa-handshake-alt-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fas fa-handshake-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fas fa-hanukiah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-hard-hat",searchTerms:["construction","hardhat","helmet","safety"]},{title:"fas fa-hashtag",searchTerms:["Twitter","instagram","pound","social media","tag"]},{title:"fas fa-hat-cowboy",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fas fa-hat-cowboy-side",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fas fa-hat-wizard",searchTerms:["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{title:"fas fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"far fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"fas fa-head-side-cough",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fas fa-head-side-cough-slash",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fas fa-head-side-mask",searchTerms:["breath","covid-19","filter","respirator","virus"]},{title:"fas fa-head-side-virus",searchTerms:["cold","covid-19","flu","sick"]},{title:"fas fa-heading",searchTerms:["format","header","text","title"]},{title:"fas fa-headphones",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headphones-alt",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headset",searchTerms:["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{title:"fas fa-heart",searchTerms:["favorite","like","love","relationship","valentine"]},{title:"far fa-heart",searchTerms:["favorite","like","love","relationship","valentine"]},{title:"fas fa-heart-broken",searchTerms:["breakup","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{title:"fas fa-heartbeat",searchTerms:["ekg","electrocardiogram","health","lifeline","vital signs"]},{title:"fas fa-helicopter",searchTerms:["airwolf","apache","chopper","flight","fly","travel"]},{title:"fas fa-highlighter",searchTerms:["edit","marker","sharpie","update","write"]},{title:"fas fa-hiking",searchTerms:["activity","backpack","fall","fitness","outdoors","person","seasonal","walking"]},{title:"fas fa-hippo",searchTerms:["animal","fauna","hippopotamus","hungry","mammal"]},{title:"fab fa-hips",searchTerms:[]},{title:"fab fa-hire-a-helper",searchTerms:[]},{title:"fas fa-history",searchTerms:["Rewind","clock","reverse","time","time machine"]},{title:"fab fa-hive",searchTerms:[]},{title:"fas fa-hockey-puck",searchTerms:["ice","nhl","sport"]},{title:"fas fa-holly-berry",searchTerms:["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{title:"fas fa-home",searchTerms:["abode","building","house","main"]},{title:"fab fa-hooli",searchTerms:[]},{title:"fab fa-hornbill",searchTerms:[]},{title:"fas fa-horse",searchTerms:["equus","fauna","mammmal","mare","neigh","pony"]},{title:"fas fa-horse-head",searchTerms:["equus","fauna","mammmal","mare","neigh","pony"]},{title:"fas fa-hospital",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"far fa-hospital",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"fas fa-hospital-alt",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"fas fa-hospital-symbol",searchTerms:["clinic","covid-19","emergency","map"]},{title:"fas fa-hospital-user",searchTerms:["covid-19","doctor","network","patient","primary care"]},{title:"fas fa-hot-tub",searchTerms:["bath","jacuzzi","massage","sauna","spa"]},{title:"fas fa-hotdog",searchTerms:["bun","chili","frankfurt","frankfurter","kosher","polish","sandwich","sausage","vienna","weiner"]},{title:"fas fa-hotel",searchTerms:["building","inn","lodging","motel","resort","travel"]},{title:"fab fa-hotjar",searchTerms:[]},{title:"fas fa-hourglass",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"far fa-hourglass",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-end",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-half",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-start",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-house-damage",searchTerms:["building","devastation","disaster","home","insurance"]},{title:"fas fa-house-user",searchTerms:["covid-19","home","isolation","quarantine"]},{title:"fab fa-houzz",searchTerms:[]},{title:"fas fa-hryvnia",searchTerms:["currency","money","ukraine","ukrainian"]},{title:"fab fa-html5",searchTerms:[]},{title:"fab fa-hubspot",searchTerms:[]},{title:"fas fa-i-cursor",searchTerms:["editing","i-beam","type","writing"]},{title:"fas fa-ice-cream",searchTerms:["chocolate","cone","dessert","frozen","scoop","sorbet","vanilla","yogurt"]},{title:"fas fa-icicles",searchTerms:["cold","frozen","hanging","ice","seasonal","sharp"]},{title:"fas fa-icons",searchTerms:["bolt","emoji","heart","image","music","photo","symbols"]},{title:"fas fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"far fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"fas fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"far fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"fas fa-id-card-alt",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"fab fa-ideal",searchTerms:[]},{title:"fas fa-igloo",searchTerms:["dome","dwelling","eskimo","home","house","ice","snow"]},{title:"fas fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"far fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"fas fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"far fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"fab fa-imdb",searchTerms:[]},{title:"fas fa-inbox",searchTerms:["archive","desk","email","mail","message"]},{title:"fas fa-indent",searchTerms:["align","justify","paragraph","tab"]},{title:"fas fa-industry",searchTerms:["building","factory","industrial","manufacturing","mill","warehouse"]},{title:"fas fa-infinity",searchTerms:["eternity","forever","math"]},{title:"fas fa-info",searchTerms:["details","help","information","more","support"]},{title:"fas fa-info-circle",searchTerms:["details","help","information","more","support"]},{title:"fab fa-innosoft",searchTerms:[]},{title:"fab fa-instagram",searchTerms:[]},{title:"fab fa-instagram-square",searchTerms:[]},{title:"fab fa-instalod",searchTerms:[]},{title:"fab fa-intercom",searchTerms:["app","customer","messenger"]},{title:"fab fa-internet-explorer",searchTerms:["browser","ie"]},{title:"fab fa-invision",searchTerms:["app","design","interface"]},{title:"fab fa-ioxhost",searchTerms:[]},{title:"fas fa-italic",searchTerms:["edit","emphasis","font","format","text","type"]},{title:"fab fa-itch-io",searchTerms:[]},{title:"fab fa-itunes",searchTerms:[]},{title:"fab fa-itunes-note",searchTerms:[]},{title:"fab fa-java",searchTerms:[]},{title:"fas fa-jedi",searchTerms:["crest","force","sith","skywalker","star wars","yoda"]},{title:"fab fa-jedi-order",searchTerms:["star wars"]},{title:"fab fa-jenkins",searchTerms:[]},{title:"fab fa-jira",searchTerms:["atlassian"]},{title:"fab fa-joget",searchTerms:[]},{title:"fas fa-joint",searchTerms:["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{title:"fab fa-joomla",searchTerms:[]},{title:"fas fa-journal-whills",searchTerms:["book","force","jedi","sith","star wars","yoda"]},{title:"fab fa-js",searchTerms:[]},{title:"fab fa-js-square",searchTerms:[]},{title:"fab fa-jsfiddle",searchTerms:[]},{title:"fas fa-kaaba",searchTerms:["building","cube","islam","muslim"]},{title:"fab fa-kaggle",searchTerms:[]},{title:"fas fa-key",searchTerms:["lock","password","private","secret","unlock"]},{title:"fab fa-keybase",searchTerms:[]},{title:"fas fa-keyboard",searchTerms:["accessory","edit","input","text","type","write"]},{title:"far fa-keyboard",searchTerms:["accessory","edit","input","text","type","write"]},{title:"fab fa-keycdn",searchTerms:[]},{title:"fas fa-khanda",searchTerms:["chakkar","sikh","sikhism","sword"]},{title:"fab fa-kickstarter",searchTerms:[]},{title:"fab fa-kickstarter-k",searchTerms:[]},{title:"fas fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiwi-bird",searchTerms:["bird","fauna","new zealand"]},{title:"fab fa-korvue",searchTerms:[]},{title:"fas fa-landmark",searchTerms:["building","historic","memorable","monument","politics"]},{title:"fas fa-language",searchTerms:["dialect","idiom","localize","speech","translate","vernacular"]},{title:"fas fa-laptop",searchTerms:["computer","cpu","dell","demo","device","mac","macbook","machine","pc"]},{title:"fas fa-laptop-code",searchTerms:["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{title:"fas fa-laptop-house",searchTerms:["computer","covid-19","device","office","remote","work from home"]},{title:"fas fa-laptop-medical",searchTerms:["computer","device","ehr","electronic health records","history"]},{title:"fab fa-laravel",searchTerms:[]},{title:"fab fa-lastfm",searchTerms:[]},{title:"fab fa-lastfm-square",searchTerms:[]},{title:"fas fa-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"far fa-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"fas fa-laugh-beam",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-beam",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-layer-group",searchTerms:["arrange","develop","layers","map","stack"]},{title:"fas fa-leaf",searchTerms:["eco","flora","nature","plant","vegan"]},{title:"fab fa-leanpub",searchTerms:[]},{title:"fas fa-lemon",searchTerms:["citrus","lemonade","lime","tart"]},{title:"far fa-lemon",searchTerms:["citrus","lemonade","lime","tart"]},{title:"fab fa-less",searchTerms:[]},{title:"fas fa-less-than",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-less-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-level-down-alt",searchTerms:["arrow","level-down"]},{title:"fas fa-level-up-alt",searchTerms:["arrow","level-up"]},{title:"fas fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"far fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"fas fa-lightbulb",searchTerms:["energy","idea","inspiration","light"]},{title:"far fa-lightbulb",searchTerms:["energy","idea","inspiration","light"]},{title:"fab fa-line",searchTerms:[]},{title:"fas fa-link",searchTerms:["attach","attachment","chain","connect"]},{title:"fab fa-linkedin",searchTerms:["linkedin-square"]},{title:"fab fa-linkedin-in",searchTerms:["linkedin"]},{title:"fab fa-linode",searchTerms:[]},{title:"fab fa-linux",searchTerms:["tux"]},{title:"fas fa-lira-sign",searchTerms:["currency","money","try","turkish"]},{title:"fas fa-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"far fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-ol",searchTerms:["checklist","completed","done","finished","numbers","ol","todo","ul"]},{title:"fas fa-list-ul",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-location-arrow",searchTerms:["address","compass","coordinate","direction","gps","map","navigation","place"]},{title:"fas fa-lock",searchTerms:["admin","lock","open","password","private","protect","security"]},{title:"fas fa-lock-open",searchTerms:["admin","lock","open","password","private","protect","security"]},{title:"fas fa-long-arrow-alt-down",searchTerms:["download","long-arrow-down"]},{title:"fas fa-long-arrow-alt-left",searchTerms:["back","long-arrow-left","previous"]},{title:"fas fa-long-arrow-alt-right",searchTerms:["forward","long-arrow-right","next"]},{title:"fas fa-long-arrow-alt-up",searchTerms:["long-arrow-up","upload"]},{title:"fas fa-low-vision",searchTerms:["blind","eye","sight"]},{title:"fas fa-luggage-cart",searchTerms:["bag","baggage","suitcase","travel"]},{title:"fas fa-lungs",searchTerms:["air","breath","covid-19","organ","respiratory"]},{title:"fas fa-lungs-virus",searchTerms:["breath","covid-19","respiratory","sick"]},{title:"fab fa-lyft",searchTerms:[]},{title:"fab fa-magento",searchTerms:[]},{title:"fas fa-magic",searchTerms:["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{title:"fas fa-magnet",searchTerms:["Attract","lodestone","tool"]},{title:"fas fa-mail-bulk",searchTerms:["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{title:"fab fa-mailchimp",searchTerms:[]},{title:"fas fa-male",searchTerms:["human","man","person","profile","user"]},{title:"fab fa-mandalorian",searchTerms:[]},{title:"fas fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"far fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marked",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marked-alt",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marker",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marker-alt",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-pin",searchTerms:["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","travel"]},{title:"fas fa-map-signs",searchTerms:["directions","directory","map","signage","wayfinding"]},{title:"fab fa-markdown",searchTerms:[]},{title:"fas fa-marker",searchTerms:["design","edit","sharpie","update","write"]},{title:"fas fa-mars",searchTerms:["male"]},{title:"fas fa-mars-double",searchTerms:[]},{title:"fas fa-mars-stroke",searchTerms:[]},{title:"fas fa-mars-stroke-h",searchTerms:[]},{title:"fas fa-mars-stroke-v",searchTerms:[]},{title:"fas fa-mask",searchTerms:["carnivale","costume","disguise","halloween","secret","super hero"]},{title:"fab fa-mastodon",searchTerms:[]},{title:"fab fa-maxcdn",searchTerms:[]},{title:"fab fa-mdb",searchTerms:[]},{title:"fas fa-medal",searchTerms:["award","ribbon","star","trophy"]},{title:"fab fa-medapps",searchTerms:[]},{title:"fab fa-medium",searchTerms:[]},{title:"fab fa-medium-m",searchTerms:[]},{title:"fas fa-medkit",searchTerms:["first aid","firstaid","health","help","support"]},{title:"fab fa-medrt",searchTerms:[]},{title:"fab fa-meetup",searchTerms:[]},{title:"fab fa-megaport",searchTerms:[]},{title:"fas fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-memory",searchTerms:["DIMM","RAM","hardware","storage","technology"]},{title:"fab fa-mendeley",searchTerms:[]},{title:"fas fa-menorah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-mercury",searchTerms:["transgender"]},{title:"fas fa-meteor",searchTerms:["armageddon","asteroid","comet","shooting star","space"]},{title:"fab fa-microblog",searchTerms:[]},{title:"fas fa-microchip",searchTerms:["cpu","hardware","processor","technology"]},{title:"fas fa-microphone",searchTerms:["audio","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-alt",searchTerms:["audio","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-alt-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fas fa-microscope",searchTerms:["covid-19","electron","lens","optics","science","shrink"]},{title:"fab fa-microsoft",searchTerms:[]},{title:"fas fa-minus",searchTerms:["collapse","delete","hide","minify","negative","remove","trash"]},{title:"fas fa-minus-circle",searchTerms:["delete","hide","negative","remove","shape","trash"]},{title:"fas fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"far fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"fas fa-mitten",searchTerms:["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{title:"fab fa-mix",searchTerms:[]},{title:"fab fa-mixcloud",searchTerms:[]},{title:"fab fa-mixer",searchTerms:[]},{title:"fab fa-mizuni",searchTerms:[]},{title:"fas fa-mobile",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{title:"fas fa-mobile-alt",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{title:"fab fa-modx",searchTerms:[]},{title:"fab fa-monero",searchTerms:[]},{title:"fas fa-money-bill",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"far fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-wave",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-wave-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-check",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fas fa-money-check-alt",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fas fa-monument",searchTerms:["building","historic","landmark","memorable"]},{title:"fas fa-moon",searchTerms:["contrast","crescent","dark","lunar","night"]},{title:"far fa-moon",searchTerms:["contrast","crescent","dark","lunar","night"]},{title:"fas fa-mortar-pestle",searchTerms:["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{title:"fas fa-mosque",searchTerms:["building","islam","landmark","muslim"]},{title:"fas fa-motorcycle",searchTerms:["bike","machine","transportation","vehicle"]},{title:"fas fa-mountain",searchTerms:["glacier","hiking","hill","landscape","travel","view"]},{title:"fas fa-mouse",searchTerms:["click","computer","cursor","input","peripheral"]},{title:"fas fa-mouse-pointer",searchTerms:["arrow","cursor","select"]},{title:"fas fa-mug-hot",searchTerms:["caliente","cocoa","coffee","cup","drink","holiday","hot chocolate","steam","tea","warmth"]},{title:"fas fa-music",searchTerms:["lyrics","melody","note","sing","sound"]},{title:"fab fa-napster",searchTerms:[]},{title:"fab fa-neos",searchTerms:[]},{title:"fas fa-network-wired",searchTerms:["computer","connect","ethernet","internet","intranet"]},{title:"fas fa-neuter",searchTerms:[]},{title:"fas fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","press"]},{title:"far fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","press"]},{title:"fab fa-nimblr",searchTerms:[]},{title:"fab fa-node",searchTerms:[]},{title:"fab fa-node-js",searchTerms:[]},{title:"fas fa-not-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-notes-medical",searchTerms:["clipboard","doctor","ehr","health","history","records"]},{title:"fab fa-npm",searchTerms:[]},{title:"fab fa-ns8",searchTerms:[]},{title:"fab fa-nutritionix",searchTerms:[]},{title:"fas fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"far fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"fas fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"far fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"fab fa-octopus-deploy",searchTerms:[]},{title:"fab fa-odnoklassniki",searchTerms:[]},{title:"fab fa-odnoklassniki-square",searchTerms:[]},{title:"fas fa-oil-can",searchTerms:["auto","crude","gasoline","grease","lubricate","petroleum"]},{title:"fab fa-old-republic",searchTerms:["politics","star wars"]},{title:"fas fa-om",searchTerms:["buddhism","hinduism","jainism","mantra"]},{title:"fab fa-opencart",searchTerms:[]},{title:"fab fa-openid",searchTerms:[]},{title:"fab fa-opera",searchTerms:[]},{title:"fab fa-optin-monster",searchTerms:[]},{title:"fab fa-orcid",searchTerms:[]},{title:"fab fa-osi",searchTerms:[]},{title:"fas fa-otter",searchTerms:["animal","badger","fauna","fur","mammal","marten"]},{title:"fas fa-outdent",searchTerms:["align","justify","paragraph","tab"]},{title:"fab fa-page4",searchTerms:[]},{title:"fab fa-pagelines",searchTerms:["eco","flora","leaf","leaves","nature","plant","tree"]},{title:"fas fa-pager",searchTerms:["beeper","cellphone","communication"]},{title:"fas fa-paint-brush",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fas fa-paint-roller",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fas fa-palette",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fab fa-palfed",searchTerms:[]},{title:"fas fa-pallet",searchTerms:["archive","box","inventory","shipping","warehouse"]},{title:"fas fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"far fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"fas fa-paperclip",searchTerms:["attach","attachment","connect","link"]},{title:"fas fa-parachute-box",searchTerms:["aid","assistance","rescue","supplies"]},{title:"fas fa-paragraph",searchTerms:["edit","format","text","writing"]},{title:"fas fa-parking",searchTerms:["auto","car","garage","meter"]},{title:"fas fa-passport",searchTerms:["document","id","identification","issued","travel"]},{title:"fas fa-pastafarianism",searchTerms:["agnosticism","atheism","flying spaghetti monster","fsm"]},{title:"fas fa-paste",searchTerms:["clipboard","copy","document","paper"]},{title:"fab fa-patreon",searchTerms:[]},{title:"fas fa-pause",searchTerms:["hold","wait"]},{title:"fas fa-pause-circle",searchTerms:["hold","wait"]},{title:"far fa-pause-circle",searchTerms:["hold","wait"]},{title:"fas fa-paw",searchTerms:["animal","cat","dog","pet","print"]},{title:"fab fa-paypal",searchTerms:[]},{title:"fas fa-peace",searchTerms:["serenity","tranquility","truce","war"]},{title:"fas fa-pen",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-alt",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-fancy",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-nib",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-square",searchTerms:["edit","pencil-square","update","write"]},{title:"fas fa-pencil-alt",searchTerms:["design","edit","pencil","update","write"]},{title:"fas fa-pencil-ruler",searchTerms:["design","draft","draw","pencil"]},{title:"fab fa-penny-arcade",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","pax","tabletop"]},{title:"fas fa-people-arrows",searchTerms:["covid-19","personal space","social distance","space","spread","users"]},{title:"fas fa-people-carry",searchTerms:["box","carry","fragile","help","movers","package"]},{title:"fas fa-pepper-hot",searchTerms:["buffalo wings","capsicum","chili","chilli","habanero","jalapeno","mexican","spicy","tabasco","vegetable"]},{title:"fab fa-perbyte",searchTerms:[]},{title:"fas fa-percent",searchTerms:["discount","fraction","proportion","rate","ratio"]},{title:"fas fa-percentage",searchTerms:["discount","fraction","proportion","rate","ratio"]},{title:"fab fa-periscope",searchTerms:[]},{title:"fas fa-person-booth",searchTerms:["changing","changing room","election","human","person","vote","voting"]},{title:"fab fa-phabricator",searchTerms:[]},{title:"fab fa-phoenix-framework",searchTerms:[]},{title:"fab fa-phoenix-squadron",searchTerms:[]},{title:"fas fa-phone",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-alt",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-slash",searchTerms:["call","cancel","earphone","mute","number","support","telephone","voice"]},{title:"fas fa-phone-square",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-square-alt",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-volume",searchTerms:["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{title:"fas fa-photo-video",searchTerms:["av","film","image","library","media"]},{title:"fab fa-php",searchTerms:[]},{title:"fab fa-pied-piper",searchTerms:[]},{title:"fab fa-pied-piper-alt",searchTerms:[]},{title:"fab fa-pied-piper-hat",searchTerms:["clothing"]},{title:"fab fa-pied-piper-pp",searchTerms:[]},{title:"fab fa-pied-piper-square",searchTerms:[]},{title:"fas fa-piggy-bank",searchTerms:["bank","save","savings"]},{title:"fas fa-pills",searchTerms:["drugs","medicine","prescription","tablets"]},{title:"fab fa-pinterest",searchTerms:[]},{title:"fab fa-pinterest-p",searchTerms:[]},{title:"fab fa-pinterest-square",searchTerms:[]},{title:"fas fa-pizza-slice",searchTerms:["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{title:"fas fa-place-of-worship",searchTerms:["building","church","holy","mosque","synagogue"]},{title:"fas fa-plane",searchTerms:["airplane","destination","fly","location","mode","travel","trip"]},{title:"fas fa-plane-arrival",searchTerms:["airplane","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{title:"fas fa-plane-departure",searchTerms:["airplane","departing","destination","fly","location","mode","take off","taking off","travel","trip"]},{title:"fas fa-plane-slash",searchTerms:["airplane mode","canceled","covid-19","delayed","grounded","travel"]},{title:"fas fa-play",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fas fa-play-circle",searchTerms:["audio","music","playing","sound","start","video"]},{title:"far fa-play-circle",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fab fa-playstation",searchTerms:[]},{title:"fas fa-plug",searchTerms:["connect","electric","online","power"]},{title:"fas fa-plus",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-plus-circle",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-plus-square",searchTerms:["add","create","expand","new","positive","shape"]},{title:"far fa-plus-square",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-podcast",searchTerms:["audio","broadcast","music","sound"]},{title:"fas fa-poll",searchTerms:["results","survey","trend","vote","voting"]},{title:"fas fa-poll-h",searchTerms:["results","survey","trend","vote","voting"]},{title:"fas fa-poo",searchTerms:["crap","poop","shit","smile","turd"]},{title:"fas fa-poo-storm",searchTerms:["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{title:"fas fa-poop",searchTerms:["crap","poop","shit","smile","turd"]},{title:"fas fa-portrait",searchTerms:["id","image","photo","picture","selfie"]},{title:"fas fa-pound-sign",searchTerms:["currency","gbp","money"]},{title:"fas fa-power-off",searchTerms:["cancel","computer","on","reboot","restart"]},{title:"fas fa-pray",searchTerms:["kneel","preach","religion","worship"]},{title:"fas fa-praying-hands",searchTerms:["kneel","preach","religion","worship"]},{title:"fas fa-prescription",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-prescription-bottle",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-prescription-bottle-alt",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-print",searchTerms:["business","copy","document","office","paper"]},{title:"fas fa-procedures",searchTerms:["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{title:"fab fa-product-hunt",searchTerms:[]},{title:"fas fa-project-diagram",searchTerms:["chart","graph","network","pert"]},{title:"fas fa-pump-medical",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{title:"fas fa-pump-soap",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{title:"fab fa-pushed",searchTerms:[]},{title:"fas fa-puzzle-piece",searchTerms:["add-on","addon","game","section"]},{title:"fab fa-python",searchTerms:[]},{title:"fab fa-qq",searchTerms:[]},{title:"fas fa-qrcode",searchTerms:["barcode","info","information","scan"]},{title:"fas fa-question",searchTerms:["help","information","support","unknown"]},{title:"fas fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"far fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"fas fa-quidditch",searchTerms:["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{title:"fab fa-quinscape",searchTerms:[]},{title:"fab fa-quora",searchTerms:[]},{title:"fas fa-quote-left",searchTerms:["mention","note","phrase","text","type"]},{title:"fas fa-quote-right",searchTerms:["mention","note","phrase","text","type"]},{title:"fas fa-quran",searchTerms:["book","islam","muslim","religion"]},{title:"fab fa-r-project",searchTerms:[]},{title:"fas fa-radiation",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{title:"fas fa-radiation-alt",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{title:"fas fa-rainbow",searchTerms:["gold","leprechaun","prism","rain","sky"]},{title:"fas fa-random",searchTerms:["arrows","shuffle","sort","swap","switch","transfer"]},{title:"fab fa-raspberry-pi",searchTerms:[]},{title:"fab fa-ravelry",searchTerms:[]},{title:"fab fa-react",searchTerms:[]},{title:"fab fa-reacteurope",searchTerms:[]},{title:"fab fa-readme",searchTerms:[]},{title:"fab fa-rebel",searchTerms:[]},{title:"fas fa-receipt",searchTerms:["check","invoice","money","pay","table"]},{title:"fas fa-record-vinyl",searchTerms:["LP","album","analog","music","phonograph","sound"]},{title:"fas fa-recycle",searchTerms:["Waste","compost","garbage","reuse","trash"]},{title:"fab fa-red-river",searchTerms:[]},{title:"fab fa-reddit",searchTerms:[]},{title:"fab fa-reddit-alien",searchTerms:[]},{title:"fab fa-reddit-square",searchTerms:[]},{title:"fab fa-redhat",searchTerms:["linux","operating system","os"]},{title:"fas fa-redo",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-redo-alt",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-registered",searchTerms:["copyright","mark","trademark"]},{title:"far fa-registered",searchTerms:["copyright","mark","trademark"]},{title:"fas fa-remove-format",searchTerms:["cancel","font","format","remove","style","text"]},{title:"fab fa-renren",searchTerms:[]},{title:"fas fa-reply",searchTerms:["mail","message","respond"]},{title:"fas fa-reply-all",searchTerms:["mail","message","respond"]},{title:"fab fa-replyd",searchTerms:[]},{title:"fas fa-republican",searchTerms:["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{title:"fab fa-researchgate",searchTerms:[]},{title:"fab fa-resolving",searchTerms:[]},{title:"fas fa-restroom",searchTerms:["bathroom","john","loo","potty","washroom","waste","wc"]},{title:"fas fa-retweet",searchTerms:["refresh","reload","share","swap"]},{title:"fab fa-rev",searchTerms:[]},{title:"fas fa-ribbon",searchTerms:["badge","cause","lapel","pin"]},{title:"fas fa-ring",searchTerms:["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{title:"fas fa-road",searchTerms:["highway","map","pavement","route","street","travel"]},{title:"fas fa-robot",searchTerms:["android","automate","computer","cyborg"]},{title:"fas fa-rocket",searchTerms:["aircraft","app","jet","launch","nasa","space"]},{title:"fab fa-rocketchat",searchTerms:[]},{title:"fab fa-rockrms",searchTerms:[]},{title:"fas fa-route",searchTerms:["directions","navigation","travel"]},{title:"fas fa-rss",searchTerms:["blog","feed","journal","news","writing"]},{title:"fas fa-rss-square",searchTerms:["blog","feed","journal","news","writing"]},{title:"fas fa-ruble-sign",searchTerms:["currency","money","rub"]},{title:"fas fa-ruler",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-combined",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-horizontal",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-vertical",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-running",searchTerms:["exercise","health","jog","person","run","sport","sprint"]},{title:"fas fa-rupee-sign",searchTerms:["currency","indian","inr","money"]},{title:"fab fa-rust",searchTerms:[]},{title:"fas fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"fas fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"fab fa-safari",searchTerms:["browser"]},{title:"fab fa-salesforce",searchTerms:[]},{title:"fab fa-sass",searchTerms:[]},{title:"fas fa-satellite",searchTerms:["communications","hardware","orbit","space"]},{title:"fas fa-satellite-dish",searchTerms:["SETI","communications","hardware","receiver","saucer","signal","space"]},{title:"fas fa-save",searchTerms:["disk","download","floppy","floppy-o"]},{title:"far fa-save",searchTerms:["disk","download","floppy","floppy-o"]},{title:"fab fa-schlix",searchTerms:[]},{title:"fas fa-school",searchTerms:["building","education","learn","student","teacher"]},{title:"fas fa-screwdriver",searchTerms:["admin","fix","mechanic","repair","settings","tool"]},{title:"fab fa-scribd",searchTerms:[]},{title:"fas fa-scroll",searchTerms:["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script"]},{title:"fas fa-sd-card",searchTerms:["image","memory","photo","save"]},{title:"fas fa-search",searchTerms:["bigger","enlarge","find","magnify","preview","zoom"]},{title:"fas fa-search-dollar",searchTerms:["bigger","enlarge","find","magnify","money","preview","zoom"]},{title:"fas fa-search-location",searchTerms:["bigger","enlarge","find","magnify","preview","zoom"]},{title:"fas fa-search-minus",searchTerms:["minify","negative","smaller","zoom","zoom out"]},{title:"fas fa-search-plus",searchTerms:["bigger","enlarge","magnify","positive","zoom","zoom in"]},{title:"fab fa-searchengin",searchTerms:[]},{title:"fas fa-seedling",searchTerms:["flora","grow","plant","vegan"]},{title:"fab fa-sellcast",searchTerms:["eercast"]},{title:"fab fa-sellsy",searchTerms:[]},{title:"fas fa-server",searchTerms:["computer","cpu","database","hardware","network"]},{title:"fab fa-servicestack",searchTerms:[]},{title:"fas fa-shapes",searchTerms:["blocks","build","circle","square","triangle"]},{title:"fas fa-share",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-alt",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-alt-square",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-square",searchTerms:["forward","save","send","social"]},{title:"far fa-share-square",searchTerms:["forward","save","send","social"]},{title:"fas fa-shekel-sign",searchTerms:["currency","ils","money"]},{title:"fas fa-shield-alt",searchTerms:["achievement","award","block","defend","security","winner"]},{title:"fas fa-shield-virus",searchTerms:["antibodies","barrier","covid-19","health","protect"]},{title:"fas fa-ship",searchTerms:["boat","sea","water"]},{title:"fas fa-shipping-fast",searchTerms:["express","fedex","mail","overnight","package","ups"]},{title:"fab fa-shirtsinbulk",searchTerms:[]},{title:"fas fa-shoe-prints",searchTerms:["feet","footprints","steps","walk"]},{title:"fab fa-shopify",searchTerms:[]},{title:"fas fa-shopping-bag",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fas fa-shopping-basket",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fas fa-shopping-cart",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fab fa-shopware",searchTerms:[]},{title:"fas fa-shower",searchTerms:["bath","clean","faucet","water"]},{title:"fas fa-shuttle-van",searchTerms:["airport","machine","public-transportation","transportation","travel","vehicle"]},{title:"fas fa-sign",searchTerms:["directions","real estate","signage","wayfinding"]},{title:"fas fa-sign-in-alt",searchTerms:["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{title:"fas fa-sign-language",searchTerms:["Translate","asl","deaf","hands"]},{title:"fas fa-sign-out-alt",searchTerms:["arrow","exit","leave","log out","logout","sign-out"]},{title:"fas fa-signal",searchTerms:["bars","graph","online","reception","status"]},{title:"fas fa-signature",searchTerms:["John Hancock","cursive","name","writing"]},{title:"fas fa-sim-card",searchTerms:["hard drive","hardware","portable","storage","technology","tiny"]},{title:"fab fa-simplybuilt",searchTerms:[]},{title:"fas fa-sink",searchTerms:["bathroom","covid-19","faucet","kitchen","wash"]},{title:"fab fa-sistrix",searchTerms:[]},{title:"fas fa-sitemap",searchTerms:["directory","hierarchy","ia","information architecture","organization"]},{title:"fab fa-sith",searchTerms:[]},{title:"fas fa-skating",searchTerms:["activity","figure skating","fitness","ice","person","winter"]},{title:"fab fa-sketch",searchTerms:["app","design","interface"]},{title:"fas fa-skiing",searchTerms:["activity","downhill","fast","fitness","olympics","outdoors","person","seasonal","slalom"]},{title:"fas fa-skiing-nordic",searchTerms:["activity","cross country","fitness","outdoors","person","seasonal"]},{title:"fas fa-skull",searchTerms:["bones","skeleton","x-ray","yorick"]},{title:"fas fa-skull-crossbones",searchTerms:["Dungeons & Dragons","alert","bones","d","danger","dead","deadly","death","dnd","fantasy","halloween","holiday","jolly-roger","pirate","poison","skeleton","warning"]},{title:"fab fa-skyatlas",searchTerms:[]},{title:"fab fa-skype",searchTerms:[]},{title:"fab fa-slack",searchTerms:["anchor","hash","hashtag"]},{title:"fab fa-slack-hash",searchTerms:["anchor","hash","hashtag"]},{title:"fas fa-slash",searchTerms:["cancel","close","mute","off","stop","x"]},{title:"fas fa-sleigh",searchTerms:["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{title:"fas fa-sliders-h",searchTerms:["adjust","settings","sliders","toggle"]},{title:"fab fa-slideshare",searchTerms:[]},{title:"fas fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"far fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"fas fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"far fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"fas fa-smile-wink",searchTerms:["emoticon","face","happy","hint","joke"]},{title:"far fa-smile-wink",searchTerms:["emoticon","face","happy","hint","joke"]},{title:"fas fa-smog",searchTerms:["dragon","fog","haze","pollution","smoke","weather"]},{title:"fas fa-smoking",searchTerms:["cancer","cigarette","nicotine","smoking status","tobacco"]},{title:"fas fa-smoking-ban",searchTerms:["ban","cancel","no smoking","non-smoking"]},{title:"fas fa-sms",searchTerms:["chat","conversation","message","mobile","notification","phone","sms","texting"]},{title:"fab fa-snapchat",searchTerms:[]},{title:"fab fa-snapchat-ghost",searchTerms:[]},{title:"fab fa-snapchat-square",searchTerms:[]},{title:"fas fa-snowboarding",searchTerms:["activity","fitness","olympics","outdoors","person"]},{title:"fas fa-snowflake",searchTerms:["precipitation","rain","winter"]},{title:"far fa-snowflake",searchTerms:["precipitation","rain","winter"]},{title:"fas fa-snowman",searchTerms:["decoration","frost","frosty","holiday"]},{title:"fas fa-snowplow",searchTerms:["clean up","cold","road","storm","winter"]},{title:"fas fa-soap",searchTerms:["bubbles","clean","covid-19","hygiene","wash"]},{title:"fas fa-socks",searchTerms:["business socks","business time","clothing","feet","flight of the conchords","wednesday"]},{title:"fas fa-solar-panel",searchTerms:["clean","eco-friendly","energy","green","sun"]},{title:"fas fa-sort",searchTerms:["filter","order"]},{title:"fas fa-sort-alpha-down",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fas fa-sort-alpha-down-alt",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fas fa-sort-alpha-up",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fas fa-sort-alpha-up-alt",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fas fa-sort-amount-down",searchTerms:["arrange","filter","number","order","sort-amount-asc"]},{title:"fas fa-sort-amount-down-alt",searchTerms:["arrange","filter","order","sort-amount-asc"]},{title:"fas fa-sort-amount-up",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fas fa-sort-amount-up-alt",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fas fa-sort-down",searchTerms:["arrow","descending","filter","order","sort-desc"]},{title:"fas fa-sort-numeric-down",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fas fa-sort-numeric-down-alt",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fas fa-sort-numeric-up",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fas fa-sort-numeric-up-alt",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fas fa-sort-up",searchTerms:["arrow","ascending","filter","order","sort-asc"]},{title:"fab fa-soundcloud",searchTerms:[]},{title:"fab fa-sourcetree",searchTerms:[]},{title:"fas fa-spa",searchTerms:["flora","massage","mindfulness","plant","wellness"]},{title:"fas fa-space-shuttle",searchTerms:["astronaut","machine","nasa","rocket","space","transportation"]},{title:"fab fa-speakap",searchTerms:[]},{title:"fab fa-speaker-deck",searchTerms:[]},{title:"fas fa-spell-check",searchTerms:["dictionary","edit","editor","grammar","text"]},{title:"fas fa-spider",searchTerms:["arachnid","bug","charlotte","crawl","eight","halloween"]},{title:"fas fa-spinner",searchTerms:["circle","loading","progress"]},{title:"fas fa-splotch",searchTerms:["Ink","blob","blotch","glob","stain"]},{title:"fab fa-spotify",searchTerms:[]},{title:"fas fa-spray-can",searchTerms:["Paint","aerosol","design","graffiti","tag"]},{title:"fas fa-square",searchTerms:["block","box","shape"]},{title:"far fa-square",searchTerms:["block","box","shape"]},{title:"fas fa-square-full",searchTerms:["block","box","shape"]},{title:"fas fa-square-root-alt",searchTerms:["arithmetic","calculus","division","math"]},{title:"fab fa-squarespace",searchTerms:[]},{title:"fab fa-stack-exchange",searchTerms:[]},{title:"fab fa-stack-overflow",searchTerms:[]},{title:"fab fa-stackpath",searchTerms:[]},{title:"fas fa-stamp",searchTerms:["art","certificate","imprint","rubber","seal"]},{title:"fas fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"far fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"fas fa-star-and-crescent",searchTerms:["islam","muslim","religion"]},{title:"fas fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"far fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-half-alt",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-of-david",searchTerms:["jewish","judaism","religion"]},{title:"fas fa-star-of-life",searchTerms:["doctor","emt","first aid","health","medical"]},{title:"fab fa-staylinked",searchTerms:[]},{title:"fab fa-steam",searchTerms:[]},{title:"fab fa-steam-square",searchTerms:[]},{title:"fab fa-steam-symbol",searchTerms:[]},{title:"fas fa-step-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-step-forward",searchTerms:["end","last","next"]},{title:"fas fa-stethoscope",searchTerms:["covid-19","diagnosis","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{title:"fab fa-sticker-mule",searchTerms:[]},{title:"fas fa-sticky-note",searchTerms:["message","note","paper","reminder","sticker"]},{title:"far fa-sticky-note",searchTerms:["message","note","paper","reminder","sticker"]},{title:"fas fa-stop",searchTerms:["block","box","square"]},{title:"fas fa-stop-circle",searchTerms:["block","box","circle","square"]},{title:"far fa-stop-circle",searchTerms:["block","box","circle","square"]},{title:"fas fa-stopwatch",searchTerms:["clock","reminder","time"]},{title:"fas fa-stopwatch-20",searchTerms:["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{title:"fas fa-store",searchTerms:["building","buy","purchase","shopping"]},{title:"fas fa-store-alt",searchTerms:["building","buy","purchase","shopping"]},{title:"fas fa-store-alt-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fas fa-store-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fab fa-strava",searchTerms:[]},{title:"fas fa-stream",searchTerms:["flow","list","timeline"]},{title:"fas fa-street-view",searchTerms:["directions","location","map","navigation"]},{title:"fas fa-strikethrough",searchTerms:["cancel","edit","font","format","text","type"]},{title:"fab fa-stripe",searchTerms:[]},{title:"fab fa-stripe-s",searchTerms:[]},{title:"fas fa-stroopwafel",searchTerms:["caramel","cookie","dessert","sweets","waffle"]},{title:"fab fa-studiovinari",searchTerms:[]},{title:"fab fa-stumbleupon",searchTerms:[]},{title:"fab fa-stumbleupon-circle",searchTerms:[]},{title:"fas fa-subscript",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-subway",searchTerms:["machine","railway","train","transportation","vehicle"]},{title:"fas fa-suitcase",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fas fa-suitcase-rolling",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fas fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"far fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"fab fa-superpowers",searchTerms:[]},{title:"fas fa-superscript",searchTerms:["edit","exponential","font","format","text","type"]},{title:"fab fa-supple",searchTerms:[]},{title:"fas fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"far fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"fab fa-suse",searchTerms:["linux","operating system","os"]},{title:"fas fa-swatchbook",searchTerms:["Pantone","color","design","hue","palette"]},{title:"fab fa-swift",searchTerms:[]},{title:"fas fa-swimmer",searchTerms:["athlete","head","man","olympics","person","pool","water"]},{title:"fas fa-swimming-pool",searchTerms:["ladder","recreation","swim","water"]},{title:"fab fa-symfony",searchTerms:[]},{title:"fas fa-synagogue",searchTerms:["building","jewish","judaism","religion","star of david","temple"]},{title:"fas fa-sync",searchTerms:["exchange","refresh","reload","rotate","swap"]},{title:"fas fa-sync-alt",searchTerms:["exchange","refresh","reload","rotate","swap"]},{title:"fas fa-syringe",searchTerms:["covid-19","doctor","immunizations","medical","needle"]},{title:"fas fa-table",searchTerms:["data","excel","spreadsheet"]},{title:"fas fa-table-tennis",searchTerms:["ball","paddle","ping pong"]},{title:"fas fa-tablet",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablet-alt",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablets",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fas fa-tachometer-alt",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fas fa-tag",searchTerms:["discount","label","price","shopping"]},{title:"fas fa-tags",searchTerms:["discount","label","price","shopping"]},{title:"fas fa-tape",searchTerms:["design","package","sticky"]},{title:"fas fa-tasks",searchTerms:["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{title:"fas fa-taxi",searchTerms:["cab","cabbie","car","car service","lyft","machine","transportation","travel","uber","vehicle"]},{title:"fab fa-teamspeak",searchTerms:[]},{title:"fas fa-teeth",searchTerms:["bite","dental","dentist","gums","mouth","smile","tooth"]},{title:"fas fa-teeth-open",searchTerms:["dental","dentist","gums bite","mouth","smile","tooth"]},{title:"fab fa-telegram",searchTerms:[]},{title:"fab fa-telegram-plane",searchTerms:[]},{title:"fas fa-temperature-high",searchTerms:["cook","covid-19","mercury","summer","thermometer","warm"]},{title:"fas fa-temperature-low",searchTerms:["cold","cool","covid-19","mercury","thermometer","winter"]},{title:"fab fa-tencent-weibo",searchTerms:[]},{title:"fas fa-tenge",searchTerms:["currency","kazakhstan","money","price"]},{title:"fas fa-terminal",searchTerms:["code","command","console","development","prompt"]},{title:"fas fa-text-height",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-text-width",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-th",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-large",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fab fa-the-red-yeti",searchTerms:[]},{title:"fas fa-theater-masks",searchTerms:["comedy","perform","theatre","tragedy"]},{title:"fab fa-themeco",searchTerms:[]},{title:"fab fa-themeisle",searchTerms:[]},{title:"fas fa-thermometer",searchTerms:["covid-19","mercury","status","temperature"]},{title:"fas fa-thermometer-empty",searchTerms:["cold","mercury","status","temperature"]},{title:"fas fa-thermometer-full",searchTerms:["fever","hot","mercury","status","temperature"]},{title:"fas fa-thermometer-half",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-quarter",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-three-quarters",searchTerms:["mercury","status","temperature"]},{title:"fab fa-think-peaks",searchTerms:[]},{title:"fas fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{title:"far fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{title:"fas fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{title:"far fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{title:"fas fa-thumbtack",searchTerms:["coordinates","location","marker","pin","thumb-tack"]},{title:"fas fa-ticket-alt",searchTerms:["movie","pass","support","ticket"]},{title:"fab fa-tiktok",searchTerms:[]},{title:"fas fa-times",searchTerms:["close","cross","error","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"far fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-tint",searchTerms:["color","drop","droplet","raindrop","waterdrop"]},{title:"fas fa-tint-slash",searchTerms:["color","drop","droplet","raindrop","waterdrop"]},{title:"fas fa-tired",searchTerms:["angry","emoticon","face","grumpy","upset"]},{title:"far fa-tired",searchTerms:["angry","emoticon","face","grumpy","upset"]},{title:"fas fa-toggle-off",searchTerms:["switch"]},{title:"fas fa-toggle-on",searchTerms:["switch"]},{title:"fas fa-toilet",searchTerms:["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","washroom","waste","wc"]},{title:"fas fa-toilet-paper",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","prank","restroom","roll"]},{title:"fas fa-toilet-paper-slash",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","restroom","roll","trouble","ut oh"]},{title:"fas fa-toolbox",searchTerms:["admin","container","fix","repair","settings","tools"]},{title:"fas fa-tools",searchTerms:["admin","fix","repair","screwdriver","settings","tools","wrench"]},{title:"fas fa-tooth",searchTerms:["bicuspid","dental","dentist","molar","mouth","teeth"]},{title:"fas fa-torah",searchTerms:["book","jewish","judaism","religion","scroll"]},{title:"fas fa-torii-gate",searchTerms:["building","shintoism"]},{title:"fas fa-tractor",searchTerms:["agriculture","farm","vehicle"]},{title:"fab fa-trade-federation",searchTerms:[]},{title:"fas fa-trademark",searchTerms:["copyright","register","symbol"]},{title:"fas fa-traffic-light",searchTerms:["direction","road","signal","travel"]},{title:"fas fa-trailer",searchTerms:["carry","haul","moving","travel"]},{title:"fas fa-train",searchTerms:["bullet","commute","locomotive","railway","subway"]},{title:"fas fa-tram",searchTerms:["crossing","machine","mountains","seasonal","transportation"]},{title:"fas fa-transgender",searchTerms:["intersex"]},{title:"fas fa-transgender-alt",searchTerms:["intersex"]},{title:"fas fa-trash",searchTerms:["delete","garbage","hide","remove"]},{title:"fas fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"far fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"fas fa-trash-restore",searchTerms:["back","control z","oops","undo"]},{title:"fas fa-trash-restore-alt",searchTerms:["back","control z","oops","undo"]},{title:"fas fa-tree",searchTerms:["bark","fall","flora","forest","nature","plant","seasonal"]},{title:"fab fa-trello",searchTerms:["atlassian"]},{title:"fas fa-trophy",searchTerms:["achievement","award","cup","game","winner"]},{title:"fas fa-truck",searchTerms:["cargo","delivery","shipping","vehicle"]},{title:"fas fa-truck-loading",searchTerms:["box","cargo","delivery","inventory","moving","rental","vehicle"]},{title:"fas fa-truck-monster",searchTerms:["offroad","vehicle","wheel"]},{title:"fas fa-truck-moving",searchTerms:["cargo","inventory","rental","vehicle"]},{title:"fas fa-truck-pickup",searchTerms:["cargo","vehicle"]},{title:"fas fa-tshirt",searchTerms:["clothing","fashion","garment","shirt"]},{title:"fas fa-tty",searchTerms:["communication","deaf","telephone","teletypewriter","text"]},{title:"fab fa-tumblr",searchTerms:[]},{title:"fab fa-tumblr-square",searchTerms:[]},{title:"fas fa-tv",searchTerms:["computer","display","monitor","television"]},{title:"fab fa-twitch",searchTerms:[]},{title:"fab fa-twitter",searchTerms:["social network","tweet"]},{title:"fab fa-twitter-square",searchTerms:["social network","tweet"]},{title:"fab fa-typo3",searchTerms:[]},{title:"fab fa-uber",searchTerms:[]},{title:"fab fa-ubuntu",searchTerms:["linux","operating system","os"]},{title:"fab fa-uikit",searchTerms:[]},{title:"fab fa-umbraco",searchTerms:[]},{title:"fas fa-umbrella",searchTerms:["protection","rain","storm","wet"]},{title:"fas fa-umbrella-beach",searchTerms:["protection","recreation","sand","shade","summer","sun"]},{title:"fab fa-uncharted",searchTerms:[]},{title:"fas fa-underline",searchTerms:["edit","emphasis","format","text","writing"]},{title:"fas fa-undo",searchTerms:["back","control z","exchange","oops","return","rotate","swap"]},{title:"fas fa-undo-alt",searchTerms:["back","control z","exchange","oops","return","swap"]},{title:"fab fa-uniregistry",searchTerms:[]},{title:"fab fa-unity",searchTerms:[]},{title:"fas fa-universal-access",searchTerms:["accessibility","hearing","person","seeing","visual impairment"]},{title:"fas fa-university",searchTerms:["bank","building","college","higher education - students","institution"]},{title:"fas fa-unlink",searchTerms:["attachment","chain","chain-broken","remove"]},{title:"fas fa-unlock",searchTerms:["admin","lock","password","private","protect"]},{title:"fas fa-unlock-alt",searchTerms:["admin","lock","password","private","protect"]},{title:"fab fa-unsplash",searchTerms:[]},{title:"fab fa-untappd",searchTerms:[]},{title:"fas fa-upload",searchTerms:["hard drive","import","publish"]},{title:"fab fa-ups",searchTerms:["United Parcel Service","package","shipping"]},{title:"fab fa-usb",searchTerms:[]},{title:"fas fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt-slash",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-astronaut",searchTerms:["avatar","clothing","cosmonaut","nasa","space","suit"]},{title:"fas fa-user-check",searchTerms:["accept","check","person","verified"]},{title:"fas fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-clock",searchTerms:["alert","person","remind","time"]},{title:"fas fa-user-cog",searchTerms:["admin","cog","person","settings"]},{title:"fas fa-user-edit",searchTerms:["edit","pen","pencil","person","update","write"]},{title:"fas fa-user-friends",searchTerms:["group","people","person","team","users"]},{title:"fas fa-user-graduate",searchTerms:["cap","clothing","commencement","gown","graduation","person","student"]},{title:"fas fa-user-injured",searchTerms:["cast","injury","ouch","patient","person","sling"]},{title:"fas fa-user-lock",searchTerms:["admin","lock","person","private","unlock"]},{title:"fas fa-user-md",searchTerms:["covid-19","job","medical","nurse","occupation","physician","profile","surgeon"]},{title:"fas fa-user-minus",searchTerms:["delete","negative","remove"]},{title:"fas fa-user-ninja",searchTerms:["assassin","avatar","dangerous","deadly","sneaky"]},{title:"fas fa-user-nurse",searchTerms:["covid-19","doctor","midwife","practitioner","surgeon"]},{title:"fas fa-user-plus",searchTerms:["add","avatar","positive","sign up","signup","team"]},{title:"fas fa-user-secret",searchTerms:["clothing","coat","hat","incognito","person","privacy","spy","whisper"]},{title:"fas fa-user-shield",searchTerms:["admin","person","private","protect","safe"]},{title:"fas fa-user-slash",searchTerms:["ban","delete","remove"]},{title:"fas fa-user-tag",searchTerms:["avatar","discount","label","person","role","special"]},{title:"fas fa-user-tie",searchTerms:["avatar","business","clothing","formal","professional","suit"]},{title:"fas fa-user-times",searchTerms:["archive","delete","remove","x"]},{title:"fas fa-users",searchTerms:["friends","group","people","persons","profiles","team"]},{title:"fas fa-users-cog",searchTerms:["admin","cog","group","person","settings","team"]},{title:"fas fa-users-slash",searchTerms:["disband","friends","group","people","persons","profiles","separate","team","ungroup"]},{title:"fab fa-usps",searchTerms:["american","package","shipping","usa"]},{title:"fab fa-ussunnah",searchTerms:[]},{title:"fas fa-utensil-spoon",searchTerms:["cutlery","dining","scoop","silverware","spoon"]},{title:"fas fa-utensils",searchTerms:["cutlery","dining","dinner","eat","food","fork","knife","restaurant"]},{title:"fab fa-vaadin",searchTerms:[]},{title:"fas fa-vector-square",searchTerms:["anchors","lines","object","render","shape"]},{title:"fas fa-venus",searchTerms:["female"]},{title:"fas fa-venus-double",searchTerms:["female"]},{title:"fas fa-venus-mars",searchTerms:["Gender"]},{title:"fas fa-vest",searchTerms:["biker","fashion","style"]},{title:"fas fa-vest-patches",searchTerms:["biker","fashion","style"]},{title:"fab fa-viacoin",searchTerms:[]},{title:"fab fa-viadeo",searchTerms:[]},{title:"fab fa-viadeo-square",searchTerms:[]},{title:"fas fa-vial",searchTerms:["experiment","lab","sample","science","test","test tube"]},{title:"fas fa-vials",searchTerms:["experiment","lab","sample","science","test","test tube"]},{title:"fab fa-viber",searchTerms:[]},{title:"fas fa-video",searchTerms:["camera","film","movie","record","video-camera"]},{title:"fas fa-video-slash",searchTerms:["add","create","film","new","positive","record","video"]},{title:"fas fa-vihara",searchTerms:["buddhism","buddhist","building","monastery"]},{title:"fab fa-vimeo",searchTerms:[]},{title:"fab fa-vimeo-square",searchTerms:[]},{title:"fab fa-vimeo-v",searchTerms:["vimeo"]},{title:"fab fa-vine",searchTerms:[]},{title:"fas fa-virus",searchTerms:["bug","covid-19","flu","health","sick","viral"]},{title:"fas fa-virus-slash",searchTerms:["bug","covid-19","cure","eliminate","flu","health","sick","viral"]},{title:"fas fa-viruses",searchTerms:["bugs","covid-19","flu","health","multiply","sick","spread","viral"]},{title:"fab fa-vk",searchTerms:[]},{title:"fab fa-vnv",searchTerms:[]},{title:"fas fa-voicemail",searchTerms:["answer","inbox","message","phone"]},{title:"fas fa-volleyball-ball",searchTerms:["beach","olympics","sport"]},{title:"fas fa-volume-down",searchTerms:["audio","lower","music","quieter","sound","speaker"]},{title:"fas fa-volume-mute",searchTerms:["audio","music","quiet","sound","speaker"]},{title:"fas fa-volume-off",searchTerms:["audio","ban","music","mute","quiet","silent","sound"]},{title:"fas fa-volume-up",searchTerms:["audio","higher","louder","music","sound","speaker"]},{title:"fas fa-vote-yea",searchTerms:["accept","cast","election","politics","positive","yes"]},{title:"fas fa-vr-cardboard",searchTerms:["3d","augment","google","reality","virtual"]},{title:"fab fa-vuejs",searchTerms:[]},{title:"fas fa-walking",searchTerms:["exercise","health","pedometer","person","steps"]},{title:"fas fa-wallet",searchTerms:["billfold","cash","currency","money"]},{title:"fas fa-warehouse",searchTerms:["building","capacity","garage","inventory","storage"]},{title:"fab fa-watchman-monitoring",searchTerms:[]},{title:"fas fa-water",searchTerms:["lake","liquid","ocean","sea","swim","wet"]},{title:"fas fa-wave-square",searchTerms:["frequency","pulse","signal"]},{title:"fab fa-waze",searchTerms:[]},{title:"fab fa-weebly",searchTerms:[]},{title:"fab fa-weibo",searchTerms:[]},{title:"fas fa-weight",searchTerms:["health","measurement","scale","weight"]},{title:"fas fa-weight-hanging",searchTerms:["anvil","heavy","measurement"]},{title:"fab fa-weixin",searchTerms:[]},{title:"fab fa-whatsapp",searchTerms:[]},{title:"fab fa-whatsapp-square",searchTerms:[]},{title:"fas fa-wheelchair",searchTerms:["accessible","handicap","person"]},{title:"fab fa-whmcs",searchTerms:[]},{title:"fas fa-wifi",searchTerms:["connection","hotspot","internet","network","wireless"]},{title:"fab fa-wikipedia-w",searchTerms:[]},{title:"fas fa-wind",searchTerms:["air","blow","breeze","fall","seasonal","weather"]},{title:"fas fa-window-close",searchTerms:["browser","cancel","computer","development"]},{title:"far fa-window-close",searchTerms:["browser","cancel","computer","development"]},{title:"fas fa-window-maximize",searchTerms:["browser","computer","development","expand"]},{title:"far fa-window-maximize",searchTerms:["browser","computer","development","expand"]},{title:"fas fa-window-minimize",searchTerms:["browser","collapse","computer","development"]},{title:"far fa-window-minimize",searchTerms:["browser","collapse","computer","development"]},{title:"fas fa-window-restore",searchTerms:["browser","computer","development"]},{title:"far fa-window-restore",searchTerms:["browser","computer","development"]},{title:"fab fa-windows",searchTerms:["microsoft","operating system","os"]},{title:"fas fa-wine-bottle",searchTerms:["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{title:"fas fa-wine-glass",searchTerms:["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{title:"fas fa-wine-glass-alt",searchTerms:["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{title:"fab fa-wix",searchTerms:[]},{title:"fab fa-wizards-of-the-coast",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fab fa-wodu",searchTerms:[]},{title:"fab fa-wolf-pack-battalion",searchTerms:[]},{title:"fas fa-won-sign",searchTerms:["currency","krw","money"]},{title:"fab fa-wordpress",searchTerms:[]},{title:"fab fa-wordpress-simple",searchTerms:[]},{title:"fab fa-wpbeginner",searchTerms:[]},{title:"fab fa-wpexplorer",searchTerms:[]},{title:"fab fa-wpforms",searchTerms:[]},{title:"fab fa-wpressr",searchTerms:["rendact"]},{title:"fas fa-wrench",searchTerms:["construction","fix","mechanic","plumbing","settings","spanner","tool","update"]},{title:"fas fa-x-ray",searchTerms:["health","medical","radiological images","radiology","skeleton"]},{title:"fab fa-xbox",searchTerms:[]},{title:"fab fa-xing",searchTerms:[]},{title:"fab fa-xing-square",searchTerms:[]},{title:"fab fa-y-combinator",searchTerms:[]},{title:"fab fa-yahoo",searchTerms:[]},{title:"fab fa-yammer",searchTerms:[]},{title:"fab fa-yandex",searchTerms:[]},{title:"fab fa-yandex-international",searchTerms:[]},{title:"fab fa-yarn",searchTerms:[]},{title:"fab fa-yelp",searchTerms:[]},{title:"fas fa-yen-sign",searchTerms:["currency","jpy","money"]},{title:"fas fa-yin-yang",searchTerms:["daoism","opposites","taoism"]},{title:"fab fa-yoast",searchTerms:[]},{title:"fab fa-youtube",searchTerms:["film","video","youtube-play","youtube-square"]},{title:"fab fa-youtube-square",searchTerms:[]},{title:"fab fa-zhihu",searchTerms:[]}]})}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets/js/flatpickr.min.js b/vendor/ayecode/wp-ayecode-ui/assets/js/flatpickr.min.js index 61d719b..3f81c32 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/js/flatpickr.min.js +++ b/vendor/ayecode/wp-ayecode-ui/assets/js/flatpickr.min.js @@ -1,3 +1 @@ -(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?module.exports=factory():typeof define==="function"&&define.amd?define(factory):(global=global||self,global.flatpickr=factory())})(this,function(){"use strict";var __assign=function(){__assign=Object.assign||function __assign(t){for(var s,i=1,n=arguments.length;i",noCalendar:false,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:undefined,prevArrow:"",shorthandCurrentMonth:false,showMonths:1,"static":false,time_24hr:false,weekNumbers:false,wrap:false};var english={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(nth){var s=nth%100;if(s>3&&s<21)return"th";switch(s%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:false};var pad=function(number){return("0"+number).slice(-2)};var int=function(bool){return bool===true?1:0};function debounce(func,wait,immediate){if(immediate===void 0){immediate=false}var timeout;return function(){var context=this,args=arguments;timeout!==null&&clearTimeout(timeout);timeout=window.setTimeout(function(){timeout=null;if(!immediate)func.apply(context,args)},wait);if(immediate&&!timeout)func.apply(context,args)}}var arrayify=function(obj){return obj instanceof Array?obj:[obj]};function toggleClass(elem,className,bool){if(bool===true)return elem.classList.add(className);elem.classList.remove(className)}function createElement(tag,className,content){var e=window.document.createElement(tag);className=className||"";content=content||"";e.className=className;if(content!==undefined)e.textContent=content;return e}function clearNode(node){while(node.firstChild)node.removeChild(node.firstChild)}function findParent(node,condition){if(condition(node))return node;else if(node.parentNode)return findParent(node.parentNode,condition);return undefined}function createNumberInput(inputClassName,opts){var wrapper=createElement("div","numInputWrapper"),numInput=createElement("input","numInput "+inputClassName),arrowUp=createElement("span","arrowUp"),arrowDown=createElement("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1){numInput.type="number"}else{numInput.type="text";numInput.pattern="\\d*"}if(opts!==undefined)for(var key in opts)numInput.setAttribute(key,opts[key]);wrapper.appendChild(numInput);wrapper.appendChild(arrowUp);wrapper.appendChild(arrowDown);return wrapper}function getEventTarget(event){if(typeof event.composedPath==="function"){var path=event.composedPath();return path[0]}return event.target}var doNothing=function(){return undefined};var monthToStr=function(monthNumber,shorthand,locale){return locale.months[shorthand?"shorthand":"longhand"][monthNumber]};var revFormat={D:doNothing,F:function(dateObj,monthName,locale){dateObj.setMonth(locale.months.longhand.indexOf(monthName))},G:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},H:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},J:function(dateObj,day){dateObj.setDate(parseFloat(day))},K:function(dateObj,amPM,locale){dateObj.setHours(dateObj.getHours()%12+12*int(new RegExp(locale.amPM[1],"i").test(amPM)))},M:function(dateObj,shortMonth,locale){dateObj.setMonth(locale.months.shorthand.indexOf(shortMonth))},S:function(dateObj,seconds){dateObj.setSeconds(parseFloat(seconds))},U:function(_,unixSeconds){return new Date(parseFloat(unixSeconds)*1e3)},W:function(dateObj,weekNum,locale){var weekNumber=parseInt(weekNum);var date=new Date(dateObj.getFullYear(),0,2+(weekNumber-1)*7,0,0,0,0);date.setDate(date.getDate()-date.getDay()+locale.firstDayOfWeek);return date},Y:function(dateObj,year){dateObj.setFullYear(parseFloat(year))},Z:function(_,ISODate){return new Date(ISODate)},d:function(dateObj,day){dateObj.setDate(parseFloat(day))},h:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},i:function(dateObj,minutes){dateObj.setMinutes(parseFloat(minutes))},j:function(dateObj,day){dateObj.setDate(parseFloat(day))},l:doNothing,m:function(dateObj,month){dateObj.setMonth(parseFloat(month)-1)},n:function(dateObj,month){dateObj.setMonth(parseFloat(month)-1)},s:function(dateObj,seconds){dateObj.setSeconds(parseFloat(seconds))},u:function(_,unixMillSeconds){return new Date(parseFloat(unixMillSeconds))},w:doNothing,y:function(dateObj,year){dateObj.setFullYear(2e3+parseFloat(year))}};var tokenRegex={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"};var formats={Z:function(date){return date.toISOString()},D:function(date,locale,options){return locale.weekdays.shorthand[formats.w(date,locale,options)]},F:function(date,locale,options){return monthToStr(formats.n(date,locale,options)-1,false,locale)},G:function(date,locale,options){return pad(formats.h(date,locale,options))},H:function(date){return pad(date.getHours())},J:function(date,locale){return locale.ordinal!==undefined?date.getDate()+locale.ordinal(date.getDate()):date.getDate()},K:function(date,locale){return locale.amPM[int(date.getHours()>11)]},M:function(date,locale){return monthToStr(date.getMonth(),true,locale)},S:function(date){return pad(date.getSeconds())},U:function(date){return date.getTime()/1e3},W:function(date,_,options){return options.getWeek(date)},Y:function(date){return date.getFullYear()},d:function(date){return pad(date.getDate())},h:function(date){return date.getHours()%12?date.getHours()%12:12},i:function(date){return pad(date.getMinutes())},j:function(date){return date.getDate()},l:function(date,locale){return locale.weekdays.longhand[date.getDay()]},m:function(date){return pad(date.getMonth()+1)},n:function(date){return date.getMonth()+1},s:function(date){return date.getSeconds()},u:function(date){return date.getTime()},w:function(date){return date.getDay()},y:function(date){return String(date.getFullYear()).substring(2)}};var createDateFormatter=function(_a){var _b=_a.config,config=_b===void 0?defaults:_b,_c=_a.l10n,l10n=_c===void 0?english:_c;return function(dateObj,frmt,overrideLocale){var locale=overrideLocale||l10n;if(config.formatDate!==undefined){return config.formatDate(dateObj,frmt,locale)}return frmt.split("").map(function(c,i,arr){return formats[c]&&arr[i-1]!=="\\"?formats[c](dateObj,locale,config):c!=="\\"?c:""}).join("")}};var createDateParser=function(_a){var _b=_a.config,config=_b===void 0?defaults:_b,_c=_a.l10n,l10n=_c===void 0?english:_c;return function(date,givenFormat,timeless,customLocale){if(date!==0&&!date)return undefined;var locale=customLocale||l10n;var parsedDate;var dateOrig=date;if(date instanceof Date)parsedDate=new Date(date.getTime());else if(typeof date!=="string"&&date.toFixed!==undefined)parsedDate=new Date(date);else if(typeof date==="string"){var format=givenFormat||(config||defaults).dateFormat;var datestr=String(date).trim();if(datestr==="today"){parsedDate=new Date;timeless=true}else if(/Z$/.test(datestr)||/GMT$/.test(datestr))parsedDate=new Date(date);else if(config&&config.parseDate)parsedDate=config.parseDate(date,format);else{parsedDate=!config||!config.noCalendar?new Date((new Date).getFullYear(),0,1,0,0,0,0):new Date((new Date).setHours(0,0,0,0));var matched=void 0,ops=[];for(var i=0,matchIndex=0,regexStr="";iMath.min(ts1,ts2)&&ts0||self.config.noCalendar;var isSafari=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);if(!self.isMobile&&isSafari){positionCalendar()}triggerEvent("onReady")}function bindToInstance(fn){return fn.bind(self)}function setCalendarWidth(){var config=self.config;if(config.weekNumbers===false&&config.showMonths===1)return;else if(config.noCalendar!==true){window.requestAnimationFrame(function(){if(self.calendarContainer!==undefined){self.calendarContainer.style.visibility="hidden";self.calendarContainer.style.display="block"}if(self.daysContainer!==undefined){var daysWidth=(self.days.offsetWidth+1)*config.showMonths;self.daysContainer.style.width=daysWidth+"px";self.calendarContainer.style.width=daysWidth+(self.weekWrapper!==undefined?self.weekWrapper.offsetWidth:0)+"px";self.calendarContainer.style.removeProperty("visibility");self.calendarContainer.style.removeProperty("display")}})}}function updateTime(e){if(self.selectedDates.length===0){setDefaultTime()}if(e!==undefined&&e.type!=="blur"){timeWrapper(e)}var prevValue=self._input.value;setHoursFromInputs();updateValue();if(self._input.value!==prevValue){self._debouncedChange()}}function ampm2military(hour,amPM){return hour%12+12*int(amPM===self.l10n.amPM[1])}function military2ampm(hour){switch(hour%24){case 0:case 12:return 12;default:return hour%12}}function setHoursFromInputs(){if(self.hourElement===undefined||self.minuteElement===undefined)return;var hours=(parseInt(self.hourElement.value.slice(-2),10)||0)%24,minutes=(parseInt(self.minuteElement.value,10)||0)%60,seconds=self.secondElement!==undefined?(parseInt(self.secondElement.value,10)||0)%60:0;if(self.amPM!==undefined){hours=ampm2military(hours,self.amPM.textContent)}var limitMinHours=self.config.minTime!==undefined||self.config.minDate&&self.minDateHasTime&&self.latestSelectedDateObj&&compareDates(self.latestSelectedDateObj,self.config.minDate,true)===0;var limitMaxHours=self.config.maxTime!==undefined||self.config.maxDate&&self.maxDateHasTime&&self.latestSelectedDateObj&&compareDates(self.latestSelectedDateObj,self.config.maxDate,true)===0;if(limitMaxHours){var maxTime=self.config.maxTime!==undefined?self.config.maxTime:self.config.maxDate;hours=Math.min(hours,maxTime.getHours());if(hours===maxTime.getHours())minutes=Math.min(minutes,maxTime.getMinutes());if(minutes===maxTime.getMinutes())seconds=Math.min(seconds,maxTime.getSeconds())}if(limitMinHours){var minTime=self.config.minTime!==undefined?self.config.minTime:self.config.minDate;hours=Math.max(hours,minTime.getHours());if(hours===minTime.getHours())minutes=Math.max(minutes,minTime.getMinutes());if(minutes===minTime.getMinutes())seconds=Math.max(seconds,minTime.getSeconds())}setHours(hours,minutes,seconds)}function setHoursFromDate(dateObj){var date=dateObj||self.latestSelectedDateObj;if(date)setHours(date.getHours(),date.getMinutes(),date.getSeconds())}function setDefaultHours(){var hours=self.config.defaultHour;var minutes=self.config.defaultMinute;var seconds=self.config.defaultSeconds;if(self.config.minDate!==undefined){var minHr=self.config.minDate.getHours();var minMinutes=self.config.minDate.getMinutes();hours=Math.max(hours,minHr);if(hours===minHr)minutes=Math.max(minMinutes,minutes);if(hours===minHr&&minutes===minMinutes)seconds=self.config.minDate.getSeconds()}if(self.config.maxDate!==undefined){var maxHr=self.config.maxDate.getHours();var maxMinutes=self.config.maxDate.getMinutes();hours=Math.min(hours,maxHr);if(hours===maxHr)minutes=Math.min(maxMinutes,minutes);if(hours===maxHr&&minutes===maxMinutes)seconds=self.config.maxDate.getSeconds()}setHours(hours,minutes,seconds)}function setHours(hours,minutes,seconds){if(self.latestSelectedDateObj!==undefined){self.latestSelectedDateObj.setHours(hours%24,minutes,seconds||0,0)}if(!self.hourElement||!self.minuteElement||self.isMobile)return;self.hourElement.value=pad(!self.config.time_24hr?(12+hours)%12+12*int(hours%12===0):hours);self.minuteElement.value=pad(minutes);if(self.amPM!==undefined)self.amPM.textContent=self.l10n.amPM[int(hours>=12)];if(self.secondElement!==undefined)self.secondElement.value=pad(seconds)}function onYearInput(event){var year=parseInt(event.target.value)+(event.delta||0);if(year/1e3>1||event.key==="Enter"&&!/[^\d]/.test(year.toString())){changeYear(year)}}function bind(element,event,handler,options){if(event instanceof Array)return event.forEach(function(ev){return bind(element,ev,handler,options)});if(element instanceof Array)return element.forEach(function(el){return bind(el,event,handler,options)});element.addEventListener(event,handler,options);self._handlers.push({element:element,event:event,handler:handler,options:options})}function onClick(handler){return function(evt){evt.which===1&&handler(evt)}}function triggerChange(){triggerEvent("onChange")}function bindEvents(){if(self.config.wrap){["open","close","toggle","clear"].forEach(function(evt){Array.prototype.forEach.call(self.element.querySelectorAll("[data-"+evt+"]"),function(el){return bind(el,"click",self[evt])})})}if(self.isMobile){setupMobile();return}var debouncedResize=debounce(onResize,50);self._debouncedChange=debounce(triggerChange,DEBOUNCED_CHANGE_MS);if(self.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent))bind(self.daysContainer,"mouseover",function(e){if(self.config.mode==="range")onMouseOver(e.target)});bind(window.document.body,"keydown",onKeyDown);if(!self.config.inline&&!self.config.static)bind(window,"resize",debouncedResize);if(window.ontouchstart!==undefined)bind(window.document,"touchstart",documentClick);else bind(window.document,"mousedown",onClick(documentClick));bind(window.document,"focus",documentClick,{capture:true});if(self.config.clickOpens===true){bind(self._input,"focus",self.open);bind(self._input,"mousedown",onClick(self.open))}if(self.daysContainer!==undefined){bind(self.monthNav,"mousedown",onClick(onMonthNavClick));bind(self.monthNav,["keyup","increment"],onYearInput);bind(self.daysContainer,"mousedown",onClick(selectDate))}if(self.timeContainer!==undefined&&self.minuteElement!==undefined&&self.hourElement!==undefined){var selText=function(e){return e.target.select()};bind(self.timeContainer,["increment"],updateTime);bind(self.timeContainer,"blur",updateTime,{capture:true});bind(self.timeContainer,"mousedown",onClick(timeIncrement));bind([self.hourElement,self.minuteElement],["focus","click"],selText);if(self.secondElement!==undefined)bind(self.secondElement,"focus",function(){return self.secondElement&&self.secondElement.select()});if(self.amPM!==undefined){bind(self.amPM,"mousedown",onClick(function(e){updateTime(e);triggerChange()}))}}}function jumpToDate(jumpDate,triggerChange){var jumpTo=jumpDate!==undefined?self.parseDate(jumpDate):self.latestSelectedDateObj||(self.config.minDate&&self.config.minDate>self.now?self.config.minDate:self.config.maxDate&&self.config.maxDate1);self.calendarContainer.appendChild(fragment);var customAppend=self.config.appendTo!==undefined&&self.config.appendTo.nodeType!==undefined;if(self.config.inline||self.config.static){self.calendarContainer.classList.add(self.config.inline?"inline":"static");if(self.config.inline){if(!customAppend&&self.element.parentNode)self.element.parentNode.insertBefore(self.calendarContainer,self._input.nextSibling);else if(self.config.appendTo!==undefined)self.config.appendTo.appendChild(self.calendarContainer)}if(self.config.static){var wrapper=createElement("div","flatpickr-wrapper");if(self.element.parentNode)self.element.parentNode.insertBefore(wrapper,self.element);wrapper.appendChild(self.element);if(self.altInput)wrapper.appendChild(self.altInput);wrapper.appendChild(self.calendarContainer)}}if(!self.config.static&&!self.config.inline)(self.config.appendTo!==undefined?self.config.appendTo:window.document.body).appendChild(self.calendarContainer)}function createDay(className,date,dayNumber,i){var dateIsEnabled=isEnabled(date,true),dayElement=createElement("span","flatpickr-day "+className,date.getDate().toString());dayElement.dateObj=date;dayElement.$i=i;dayElement.setAttribute("aria-label",self.formatDate(date,self.config.ariaDateFormat));if(className.indexOf("hidden")===-1&&compareDates(date,self.now)===0){self.todayDateElem=dayElement;dayElement.classList.add("today");dayElement.setAttribute("aria-current","date")}if(dateIsEnabled){dayElement.tabIndex=-1;if(isDateSelected(date)){dayElement.classList.add("selected");self.selectedDateElem=dayElement;if(self.config.mode==="range"){toggleClass(dayElement,"startRange",self.selectedDates[0]&&compareDates(date,self.selectedDates[0],true)===0);toggleClass(dayElement,"endRange",self.selectedDates[1]&&compareDates(date,self.selectedDates[1],true)===0);if(className==="nextMonthDay")dayElement.classList.add("inRange")}}}else{dayElement.classList.add("flatpickr-disabled")}if(self.config.mode==="range"){if(isDateInRange(date)&&!isDateSelected(date))dayElement.classList.add("inRange")}if(self.weekNumbers&&self.config.showMonths===1&&className!=="prevMonthDay"&&dayNumber%7===1){self.weekNumbers.insertAdjacentHTML("beforeend",""+self.config.getWeek(date)+"")}triggerEvent("onDayCreate",dayElement);return dayElement}function focusOnDayElem(targetNode){targetNode.focus();if(self.config.mode==="range")onMouseOver(targetNode)}function getFirstAvailableDay(delta){var startMonth=delta>0?0:self.config.showMonths-1;var endMonth=delta>0?self.config.showMonths:-1;for(var m=startMonth;m!=endMonth;m+=delta){var month=self.daysContainer.children[m];var startIndex=delta>0?0:month.children.length-1;var endIndex=delta>0?month.children.length:-1;for(var i=startIndex;i!=endIndex;i+=delta){var c=month.children[i];if(c.className.indexOf("hidden")===-1&&isEnabled(c.dateObj))return c}}return undefined}function getNextAvailableDay(current,delta){var givenMonth=current.className.indexOf("Month")===-1?current.dateObj.getMonth():self.currentMonth;var endMonth=delta>0?self.config.showMonths:-1;var loopDelta=delta>0?1:-1;for(var m=givenMonth-self.currentMonth;m!=endMonth;m+=loopDelta){var month=self.daysContainer.children[m];var startIndex=givenMonth-self.currentMonth===m?current.$i+delta:delta<0?month.children.length-1:0;var numMonthDays=month.children.length;for(var i=startIndex;i>=0&&i0?numMonthDays:-1);i+=loopDelta){var c=month.children[i];if(c.className.indexOf("hidden")===-1&&isEnabled(c.dateObj)&&Math.abs(current.$i-i)>=Math.abs(delta))return focusOnDayElem(c)}}self.changeMonth(loopDelta);focusOnDay(getFirstAvailableDay(loopDelta),0);return undefined}function focusOnDay(current,offset){var dayFocused=isInView(document.activeElement||document.body);var startElem=current!==undefined?current:dayFocused?document.activeElement:self.selectedDateElem!==undefined&&isInView(self.selectedDateElem)?self.selectedDateElem:self.todayDateElem!==undefined&&isInView(self.todayDateElem)?self.todayDateElem:getFirstAvailableDay(offset>0?1:-1);if(startElem===undefined)return self._input.focus();if(!dayFocused)return focusOnDayElem(startElem);getNextAvailableDay(startElem,offset)}function buildMonthDays(year,month){var firstOfMonth=(new Date(year,month,1).getDay()-self.l10n.firstDayOfWeek+7)%7;var prevMonthDays=self.utils.getDaysInMonth((month-1+12)%12);var daysInMonth=self.utils.getDaysInMonth(month),days=window.document.createDocumentFragment(),isMultiMonth=self.config.showMonths>1,prevMonthDayClass=isMultiMonth?"prevMonthDay hidden":"prevMonthDay",nextMonthDayClass=isMultiMonth?"nextMonthDay hidden":"nextMonthDay";var dayNumber=prevMonthDays+1-firstOfMonth,dayIndex=0;for(;dayNumber<=prevMonthDays;dayNumber++,dayIndex++){days.appendChild(createDay(prevMonthDayClass,new Date(year,month-1,dayNumber),dayNumber,dayIndex))}for(dayNumber=1;dayNumber<=daysInMonth;dayNumber++,dayIndex++){days.appendChild(createDay("",new Date(year,month,dayNumber),dayNumber,dayIndex))}for(var dayNum=daysInMonth+1;dayNum<=42-firstOfMonth&&(self.config.showMonths===1||dayIndex%7!==0);dayNum++,dayIndex++){days.appendChild(createDay(nextMonthDayClass,new Date(year,month+1,dayNum%daysInMonth),dayNum,dayIndex))}var dayContainer=createElement("div","dayContainer");dayContainer.appendChild(days);return dayContainer}function buildDays(){if(self.daysContainer===undefined){return}clearNode(self.daysContainer);if(self.weekNumbers)clearNode(self.weekNumbers);var frag=document.createDocumentFragment();for(var i=0;i1||self.config.monthSelectorType!=="dropdown")return;var shouldBuildMonth=function(month){if(self.config.minDate!==undefined&&self.currentYear===self.config.minDate.getFullYear()&&monthself.config.maxDate.getMonth())};self.monthsDropdownContainer.tabIndex=-1;self.monthsDropdownContainer.innerHTML="";for(var i=0;i<12;i++){if(!shouldBuildMonth(i))continue;var month=createElement("option","flatpickr-monthDropdown-month");month.value=new Date(self.currentYear,i).getMonth().toString();month.textContent=monthToStr(i,self.config.shorthandCurrentMonth,self.l10n);month.tabIndex=-1;if(self.currentMonth===i){month.selected=true}self.monthsDropdownContainer.appendChild(month)}}function buildMonth(){var container=createElement("div","flatpickr-month");var monthNavFragment=window.document.createDocumentFragment();var monthElement;if(self.config.showMonths>1||self.config.monthSelectorType==="static"){monthElement=createElement("span","cur-month")}else{self.monthsDropdownContainer=createElement("select","flatpickr-monthDropdown-months");bind(self.monthsDropdownContainer,"change",function(e){var target=e.target;var selectedMonth=parseInt(target.value,10);self.changeMonth(selectedMonth-self.currentMonth);triggerEvent("onMonthChange")});buildMonthSwitch();monthElement=self.monthsDropdownContainer}var yearInput=createNumberInput("cur-year",{tabindex:"-1"});var yearElement=yearInput.getElementsByTagName("input")[0];yearElement.setAttribute("aria-label",self.l10n.yearAriaLabel);if(self.config.minDate){yearElement.setAttribute("min",self.config.minDate.getFullYear().toString())}if(self.config.maxDate){yearElement.setAttribute("max",self.config.maxDate.getFullYear().toString());yearElement.disabled=!!self.config.minDate&&self.config.minDate.getFullYear()===self.config.maxDate.getFullYear()}var currentMonth=createElement("div","flatpickr-current-month");currentMonth.appendChild(monthElement);currentMonth.appendChild(yearInput);monthNavFragment.appendChild(currentMonth);container.appendChild(monthNavFragment);return{container:container,yearElement:yearElement,monthElement:monthElement}}function buildMonths(){clearNode(self.monthNav);self.monthNav.appendChild(self.prevMonthNav);if(self.config.showMonths){self.yearElements=[];self.monthElements=[]}for(var m=self.config.showMonths;m--;){var month=buildMonth();self.yearElements.push(month.yearElement);self.monthElements.push(month.monthElement);self.monthNav.appendChild(month.container)}self.monthNav.appendChild(self.nextMonthNav)}function buildMonthNav(){self.monthNav=createElement("div","flatpickr-months");self.yearElements=[];self.monthElements=[];self.prevMonthNav=createElement("span","flatpickr-prev-month");self.prevMonthNav.innerHTML=self.config.prevArrow;self.nextMonthNav=createElement("span","flatpickr-next-month");self.nextMonthNav.innerHTML=self.config.nextArrow;buildMonths();Object.defineProperty(self,"_hidePrevMonthArrow",{get:function(){return self.__hidePrevMonthArrow},set:function(bool){if(self.__hidePrevMonthArrow!==bool){toggleClass(self.prevMonthNav,"flatpickr-disabled",bool);self.__hidePrevMonthArrow=bool}}});Object.defineProperty(self,"_hideNextMonthArrow",{get:function(){return self.__hideNextMonthArrow},set:function(bool){if(self.__hideNextMonthArrow!==bool){toggleClass(self.nextMonthNav,"flatpickr-disabled",bool);self.__hideNextMonthArrow=bool}}});self.currentYearElement=self.yearElements[0];updateNavigationCurrentMonth();return self.monthNav}function buildTime(){self.calendarContainer.classList.add("hasTime");if(self.config.noCalendar)self.calendarContainer.classList.add("noCalendar");self.timeContainer=createElement("div","flatpickr-time");self.timeContainer.tabIndex=-1;var separator=createElement("span","flatpickr-time-separator",":");var hourInput=createNumberInput("flatpickr-hour",{"aria-label":self.l10n.hourAriaLabel});self.hourElement=hourInput.getElementsByTagName("input")[0];var minuteInput=createNumberInput("flatpickr-minute",{"aria-label":self.l10n.minuteAriaLabel});self.minuteElement=minuteInput.getElementsByTagName("input")[0];self.hourElement.tabIndex=self.minuteElement.tabIndex=-1;self.hourElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getHours():self.config.time_24hr?self.config.defaultHour:military2ampm(self.config.defaultHour));self.minuteElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getMinutes():self.config.defaultMinute); -self.hourElement.setAttribute("step",self.config.hourIncrement.toString());self.minuteElement.setAttribute("step",self.config.minuteIncrement.toString());self.hourElement.setAttribute("min",self.config.time_24hr?"0":"1");self.hourElement.setAttribute("max",self.config.time_24hr?"23":"12");self.minuteElement.setAttribute("min","0");self.minuteElement.setAttribute("max","59");self.timeContainer.appendChild(hourInput);self.timeContainer.appendChild(separator);self.timeContainer.appendChild(minuteInput);if(self.config.time_24hr)self.timeContainer.classList.add("time24hr");if(self.config.enableSeconds){self.timeContainer.classList.add("hasSeconds");var secondInput=createNumberInput("flatpickr-second");self.secondElement=secondInput.getElementsByTagName("input")[0];self.secondElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getSeconds():self.config.defaultSeconds);self.secondElement.setAttribute("step",self.minuteElement.getAttribute("step"));self.secondElement.setAttribute("min","0");self.secondElement.setAttribute("max","59");self.timeContainer.appendChild(createElement("span","flatpickr-time-separator",":"));self.timeContainer.appendChild(secondInput)}if(!self.config.time_24hr){self.amPM=createElement("span","flatpickr-am-pm",self.l10n.amPM[int((self.latestSelectedDateObj?self.hourElement.value:self.config.defaultHour)>11)]);self.amPM.title=self.l10n.toggleTitle;self.amPM.tabIndex=-1;self.timeContainer.appendChild(self.amPM)}return self.timeContainer}function buildWeekdays(){if(!self.weekdayContainer)self.weekdayContainer=createElement("div","flatpickr-weekdays");else clearNode(self.weekdayContainer);for(var i=self.config.showMonths;i--;){var container=createElement("div","flatpickr-weekdaycontainer");self.weekdayContainer.appendChild(container)}updateWeekdays();return self.weekdayContainer}function updateWeekdays(){if(!self.weekdayContainer){return}var firstDayOfWeek=self.l10n.firstDayOfWeek;var weekdays=self.l10n.weekdays.shorthand.slice();if(firstDayOfWeek>0&&firstDayOfWeek\n "+weekdays.join("")+"\n \n "}}function buildWeeks(){self.calendarContainer.classList.add("hasWeeks");var weekWrapper=createElement("div","flatpickr-weekwrapper");weekWrapper.appendChild(createElement("span","flatpickr-weekday",self.l10n.weekAbbreviation));var weekNumbers=createElement("div","flatpickr-weeks");weekWrapper.appendChild(weekNumbers);return{weekWrapper:weekWrapper,weekNumbers:weekNumbers}}function changeMonth(value,isOffset){if(isOffset===void 0){isOffset=true}var delta=isOffset?value:value-self.currentMonth;if(delta<0&&self._hidePrevMonthArrow===true||delta>0&&self._hideNextMonthArrow===true)return;self.currentMonth+=delta;if(self.currentMonth<0||self.currentMonth>11){self.currentYear+=self.currentMonth>11?1:-1;self.currentMonth=(self.currentMonth+12)%12;triggerEvent("onYearChange");buildMonthSwitch()}buildDays();triggerEvent("onMonthChange");updateNavigationCurrentMonth()}function clear(triggerChangeEvent,toInitial){if(triggerChangeEvent===void 0){triggerChangeEvent=true}if(toInitial===void 0){toInitial=true}self.input.value="";if(self.altInput!==undefined)self.altInput.value="";if(self.mobileInput!==undefined)self.mobileInput.value="";self.selectedDates=[];self.latestSelectedDateObj=undefined;if(toInitial===true){self.currentYear=self._initialDate.getFullYear();self.currentMonth=self._initialDate.getMonth()}self.showTimeInput=false;if(self.config.enableTime===true){setDefaultHours()}self.redraw();if(triggerChangeEvent)triggerEvent("onChange")}function close(){self.isOpen=false;if(!self.isMobile){if(self.calendarContainer!==undefined){self.calendarContainer.classList.remove("open")}if(self._input!==undefined){self._input.classList.remove("active")}}triggerEvent("onClose")}function destroy(){if(self.config!==undefined)triggerEvent("onDestroy");for(var i=self._handlers.length;i--;){var h=self._handlers[i];h.element.removeEventListener(h.event,h.handler,h.options)}self._handlers=[];if(self.mobileInput){if(self.mobileInput.parentNode)self.mobileInput.parentNode.removeChild(self.mobileInput);self.mobileInput=undefined}else if(self.calendarContainer&&self.calendarContainer.parentNode){if(self.config.static&&self.calendarContainer.parentNode){var wrapper=self.calendarContainer.parentNode;wrapper.lastChild&&wrapper.removeChild(wrapper.lastChild);if(wrapper.parentNode){while(wrapper.firstChild)wrapper.parentNode.insertBefore(wrapper.firstChild,wrapper);wrapper.parentNode.removeChild(wrapper)}}else self.calendarContainer.parentNode.removeChild(self.calendarContainer)}if(self.altInput){self.input.type="text";if(self.altInput.parentNode)self.altInput.parentNode.removeChild(self.altInput);delete self.altInput}if(self.input){self.input.type=self.input._type;self.input.classList.remove("flatpickr-input");self.input.removeAttribute("readonly");self.input.value=""}["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(k){try{delete self[k]}catch(_){}})}function isCalendarElem(elem){if(self.config.appendTo&&self.config.appendTo.contains(elem))return true;return self.calendarContainer.contains(elem)}function documentClick(e){if(self.isOpen&&!self.config.inline){var eventTarget_1=getEventTarget(e);var isCalendarElement=isCalendarElem(eventTarget_1);var isInput=eventTarget_1===self.input||eventTarget_1===self.altInput||self.element.contains(eventTarget_1)||e.path&&e.path.indexOf&&(~e.path.indexOf(self.input)||~e.path.indexOf(self.altInput));var lostFocus=e.type==="blur"?isInput&&e.relatedTarget&&!isCalendarElem(e.relatedTarget):!isInput&&!isCalendarElement&&!isCalendarElem(e.relatedTarget);var isIgnored=!self.config.ignoredFocusElements.some(function(elem){return elem.contains(eventTarget_1)});if(lostFocus&&isIgnored){if(self.timeContainer!==undefined&&self.minuteElement!==undefined&&self.hourElement!==undefined){updateTime()}self.close();if(self.config.mode==="range"&&self.selectedDates.length===1){self.clear(false);self.redraw()}}}}function changeYear(newYear){if(!newYear||self.config.minDate&&newYearself.config.maxDate.getFullYear())return;var newYearNum=newYear,isNewYear=self.currentYear!==newYearNum;self.currentYear=newYearNum||self.currentYear;if(self.config.maxDate&&self.currentYear===self.config.maxDate.getFullYear()){self.currentMonth=Math.min(self.config.maxDate.getMonth(),self.currentMonth)}else if(self.config.minDate&&self.currentYear===self.config.minDate.getFullYear()){self.currentMonth=Math.max(self.config.minDate.getMonth(),self.currentMonth)}if(isNewYear){self.redraw();triggerEvent("onYearChange");buildMonthSwitch()}}function isEnabled(date,timeless){if(timeless===void 0){timeless=true}var dateToCheck=self.parseDate(date,undefined,timeless);if(self.config.minDate&&dateToCheck&&compareDates(dateToCheck,self.config.minDate,timeless!==undefined?timeless:!self.minDateHasTime)<0||self.config.maxDate&&dateToCheck&&compareDates(dateToCheck,self.config.maxDate,timeless!==undefined?timeless:!self.maxDateHasTime)>0)return false;if(self.config.enable.length===0&&self.config.disable.length===0)return true;if(dateToCheck===undefined)return false;var bool=self.config.enable.length>0,array=bool?self.config.enable:self.config.disable;for(var i=0,d=void 0;i=d.from.getTime()&&dateToCheck.getTime()<=d.to.getTime())return bool}return!bool}function isInView(elem){if(self.daysContainer!==undefined)return elem.className.indexOf("hidden")===-1&&self.daysContainer.contains(elem);return false}function onKeyDown(e){var isInput=e.target===self._input;var allowInput=self.config.allowInput;var allowKeydown=self.isOpen&&(!allowInput||!isInput);var allowInlineKeydown=self.config.inline&&isInput&&!allowInput;if(e.keyCode===13&&isInput){if(allowInput){self.setDate(self._input.value,true,e.target===self.altInput?self.config.altFormat:self.config.dateFormat);return e.target.blur()}else{self.open()}}else if(isCalendarElem(e.target)||allowKeydown||allowInlineKeydown){var isTimeObj=!!self.timeContainer&&self.timeContainer.contains(e.target);switch(e.keyCode){case 13:if(isTimeObj){e.preventDefault();updateTime();focusAndClose()}else selectDate(e);break;case 27:e.preventDefault();focusAndClose();break;case 8:case 46:if(isInput&&!self.config.allowInput){e.preventDefault();self.clear()}break;case 37:case 39:if(!isTimeObj&&!isInput){e.preventDefault();if(self.daysContainer!==undefined&&(allowInput===false||document.activeElement&&isInView(document.activeElement))){var delta_1=e.keyCode===39?1:-1;if(!e.ctrlKey)focusOnDay(undefined,delta_1);else{e.stopPropagation();changeMonth(delta_1);focusOnDay(getFirstAvailableDay(1),0)}}}else if(self.hourElement)self.hourElement.focus();break;case 38:case 40:e.preventDefault();var delta=e.keyCode===40?1:-1;if(self.daysContainer&&e.target.$i!==undefined||e.target===self.input||e.target===self.altInput){if(e.ctrlKey){e.stopPropagation();changeYear(self.currentYear-delta);focusOnDay(getFirstAvailableDay(1),0)}else if(!isTimeObj)focusOnDay(undefined,delta*7)}else if(e.target===self.currentYearElement){changeYear(self.currentYear-delta)}else if(self.config.enableTime){if(!isTimeObj&&self.hourElement)self.hourElement.focus();updateTime(e);self._debouncedChange()}break;case 9:if(isTimeObj){var elems=[self.hourElement,self.minuteElement,self.secondElement,self.amPM].concat(self.pluginElements).filter(function(x){return x});var i=elems.indexOf(e.target);if(i!==-1){var target=elems[i+(e.shiftKey?-1:1)];e.preventDefault();(target||self._input).focus()}}else if(!self.config.noCalendar&&self.daysContainer&&self.daysContainer.contains(e.target)&&e.shiftKey){e.preventDefault();self._input.focus()}break;default:break}}if(self.amPM!==undefined&&e.target===self.amPM){switch(e.key){case self.l10n.amPM[0].charAt(0):case self.l10n.amPM[0].charAt(0).toLowerCase():self.amPM.textContent=self.l10n.amPM[0];setHoursFromInputs();updateValue();break;case self.l10n.amPM[1].charAt(0):case self.l10n.amPM[1].charAt(0).toLowerCase():self.amPM.textContent=self.l10n.amPM[1];setHoursFromInputs();updateValue();break}}if(isInput||isCalendarElem(e.target)){triggerEvent("onKeyDown",e)}}function onMouseOver(elem){if(self.selectedDates.length!==1||elem&&(!elem.classList.contains("flatpickr-day")||elem.classList.contains("flatpickr-disabled")))return;var hoverDate=elem?elem.dateObj.getTime():self.days.firstElementChild.dateObj.getTime(),initialDate=self.parseDate(self.selectedDates[0],undefined,true).getTime(),rangeStartDate=Math.min(hoverDate,self.selectedDates[0].getTime()),rangeEndDate=Math.max(hoverDate,self.selectedDates[0].getTime());var containsDisabled=false;var minRange=0,maxRange=0;for(var t=rangeStartDate;trangeStartDate&&tminRange))minRange=t;else if(t>initialDate&&(!maxRange||t0&×tamp0&×tamp>maxRange;if(outOfRange){dayElem.classList.add("notAllowed");["inRange","startRange","endRange"].forEach(function(c){dayElem.classList.remove(c)});return"continue"}else if(containsDisabled&&!outOfRange)return"continue";["startRange","inRange","endRange","notAllowed"].forEach(function(c){dayElem.classList.remove(c)});if(elem!==undefined){elem.classList.add(hoverDate<=self.selectedDates[0].getTime()?"startRange":"endRange");if(initialDatehoverDate&×tamp===initialDate)dayElem.classList.add("endRange");if(timestamp>=minRange&&(maxRange===0||timestamp<=maxRange)&&isBetween(timestamp,initialDate,hoverDate))dayElem.classList.add("inRange")}};for(var i=0,l=month.children.length;i0||dateObj.getMinutes()>0||dateObj.getSeconds()>0}if(self.selectedDates){self.selectedDates=self.selectedDates.filter(function(d){return isEnabled(d)});if(!self.selectedDates.length&&type==="min")setHoursFromDate(dateObj);updateValue()}if(self.daysContainer){redraw();if(dateObj!==undefined)self.currentYearElement[type]=dateObj.getFullYear().toString();else self.currentYearElement.removeAttribute(type);self.currentYearElement.disabled=!!inverseDateObj&&dateObj!==undefined&&inverseDateObj.getFullYear()===dateObj.getFullYear()}}}function parseConfig(){var boolOpts=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"];var userConfig=__assign({},instanceConfig,JSON.parse(JSON.stringify(element.dataset||{})));var formats={};self.config.parseDate=userConfig.parseDate;self.config.formatDate=userConfig.formatDate;Object.defineProperty(self.config,"enable",{get:function(){return self.config._enable},set:function(dates){self.config._enable=parseDateRules(dates)}});Object.defineProperty(self.config,"disable",{get:function(){return self.config._disable},set:function(dates){self.config._disable=parseDateRules(dates)}});var timeMode=userConfig.mode==="time";if(!userConfig.dateFormat&&(userConfig.enableTime||timeMode)){var defaultDateFormat=flatpickr.defaultConfig.dateFormat||defaults.dateFormat;formats.dateFormat=userConfig.noCalendar||timeMode?"H:i"+(userConfig.enableSeconds?":S":""):defaultDateFormat+" H:i"+(userConfig.enableSeconds?":S":"")}if(userConfig.altInput&&(userConfig.enableTime||timeMode)&&!userConfig.altFormat){var defaultAltFormat=flatpickr.defaultConfig.altFormat||defaults.altFormat;formats.altFormat=userConfig.noCalendar||timeMode?"h:i"+(userConfig.enableSeconds?":S K":" K"):defaultAltFormat+(" h:i"+(userConfig.enableSeconds?":S":"")+" K")}if(!userConfig.altInputClass){self.config.altInputClass=self.input.className+" "+self.config.altInputClass}Object.defineProperty(self.config,"minDate",{get:function(){return self.config._minDate},set:minMaxDateSetter("min")});Object.defineProperty(self.config,"maxDate",{get:function(){return self.config._maxDate},set:minMaxDateSetter("max")});var minMaxTimeSetter=function(type){return function(val){self.config[type==="min"?"_minTime":"_maxTime"]=self.parseDate(val,"H:i:S")}};Object.defineProperty(self.config,"minTime",{get:function(){return self.config._minTime},set:minMaxTimeSetter("min")});Object.defineProperty(self.config,"maxTime",{get:function(){return self.config._maxTime},set:minMaxTimeSetter("max")});if(userConfig.mode==="time"){self.config.noCalendar=true;self.config.enableTime=true}Object.assign(self.config,formats,userConfig);for(var i=0;i-1){self.config[key]=arrayify(pluginConf[key]).map(bindToInstance).concat(self.config[key])}else if(typeof userConfig[key]==="undefined")self.config[key]=pluginConf[key]}}triggerEvent("onParseConfig")}function setupLocale(){if(typeof self.config.locale!=="object"&&typeof flatpickr.l10ns[self.config.locale]==="undefined")self.config.errorHandler(new Error("flatpickr: invalid locale "+self.config.locale));self.l10n=__assign({},flatpickr.l10ns["default"],typeof self.config.locale==="object"?self.config.locale:self.config.locale!=="default"?flatpickr.l10ns[self.config.locale]:undefined);tokenRegex.K="("+self.l10n.amPM[0]+"|"+self.l10n.amPM[1]+"|"+self.l10n.amPM[0].toLowerCase()+"|"+self.l10n.amPM[1].toLowerCase()+")";var userConfig=__assign({},instanceConfig,JSON.parse(JSON.stringify(element.dataset||{})));if(userConfig.time_24hr===undefined&&flatpickr.defaultConfig.time_24hr===undefined){self.config.time_24hr=self.l10n.time_24hr}self.formatDate=createDateFormatter(self);self.parseDate=createDateParser({config:self.config,l10n:self.l10n})}function positionCalendar(customPositionElement){if(self.calendarContainer===undefined)return;triggerEvent("onPreCalendarPosition");var positionElement=customPositionElement||self._positionElement;var calendarHeight=Array.prototype.reduce.call(self.calendarContainer.children,function(acc,child){return acc+child.offsetHeight},0),calendarWidth=self.calendarContainer.offsetWidth,configPos=self.config.position.split(" "),configPosVertical=configPos[0],configPosHorizontal=configPos.length>1?configPos[1]:null,inputBounds=positionElement.getBoundingClientRect(),distanceFromBottom=window.innerHeight-inputBounds.bottom,showOnTop=configPosVertical==="above"||configPosVertical!=="below"&&distanceFromBottomcalendarHeight;var top=window.pageYOffset+inputBounds.top+(!showOnTop?positionElement.offsetHeight+2:-calendarHeight-2);toggleClass(self.calendarContainer,"arrowTop",!showOnTop);toggleClass(self.calendarContainer,"arrowBottom",showOnTop);if(self.config.inline)return;var left=window.pageXOffset+inputBounds.left-(configPosHorizontal!=null&&configPosHorizontal==="center"?(calendarWidth-inputBounds.width)/2:0);var right=window.document.body.offsetWidth-(window.pageXOffset+inputBounds.right);var rightMost=left+calendarWidth>window.document.body.offsetWidth;var centerMost=right+calendarWidth>window.document.body.offsetWidth;toggleClass(self.calendarContainer,"rightMost",rightMost);if(self.config.static)return;self.calendarContainer.style.top=top+"px";if(!rightMost){self.calendarContainer.style.left=left+"px";self.calendarContainer.style.right="auto"}else if(!centerMost){self.calendarContainer.style.left="auto";self.calendarContainer.style.right=right+"px"}else{var doc=document.styleSheets[0];if(doc===undefined)return;var bodyWidth=window.document.body.offsetWidth;var centerLeft=Math.max(0,bodyWidth/2-calendarWidth/2);var centerBefore=".flatpickr-calendar.centerMost:before";var centerAfter=".flatpickr-calendar.centerMost:after";var centerIndex=doc.cssRules.length;var centerStyle="{left:"+inputBounds.left+"px;right:auto;}";toggleClass(self.calendarContainer,"rightMost",false);toggleClass(self.calendarContainer,"centerMost",true);doc.insertRule(centerBefore+","+centerAfter+centerStyle,centerIndex);self.calendarContainer.style.left=centerLeft+"px";self.calendarContainer.style.right="auto"}}function redraw(){if(self.config.noCalendar||self.isMobile)return;updateNavigationCurrentMonth();buildDays()}function focusAndClose(){self._input.focus();if(window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==undefined){setTimeout(self.close,0)}else{self.close()}}function selectDate(e){e.preventDefault();e.stopPropagation();var isSelectable=function(day){return day.classList&&day.classList.contains("flatpickr-day")&&!day.classList.contains("flatpickr-disabled")&&!day.classList.contains("notAllowed")};var t=findParent(e.target,isSelectable);if(t===undefined)return;var target=t;var selectedDate=self.latestSelectedDateObj=new Date(target.dateObj.getTime());var shouldChangeMonth=(selectedDate.getMonth()self.currentMonth+self.config.showMonths-1)&&self.config.mode!=="range";self.selectedDateElem=target;if(self.config.mode==="single")self.selectedDates=[selectedDate];else if(self.config.mode==="multiple"){var selectedIndex=isDateSelected(selectedDate);if(selectedIndex)self.selectedDates.splice(parseInt(selectedIndex),1);else self.selectedDates.push(selectedDate)}else if(self.config.mode==="range"){if(self.selectedDates.length===2){self.clear(false,false)}self.latestSelectedDateObj=selectedDate;self.selectedDates.push(selectedDate);if(compareDates(selectedDate,self.selectedDates[0],true)!==0)self.selectedDates.sort(function(a,b){return a.getTime()-b.getTime()})}setHoursFromInputs();if(shouldChangeMonth){var isNewYear=self.currentYear!==selectedDate.getFullYear();self.currentYear=selectedDate.getFullYear();self.currentMonth=selectedDate.getMonth();if(isNewYear){triggerEvent("onYearChange");buildMonthSwitch()}triggerEvent("onMonthChange")}updateNavigationCurrentMonth();buildDays();updateValue();if(self.config.enableTime)setTimeout(function(){return self.showTimeInput=true},50);if(!shouldChangeMonth&&self.config.mode!=="range"&&self.config.showMonths===1)focusOnDayElem(target);else if(self.selectedDateElem!==undefined&&self.hourElement===undefined){self.selectedDateElem&&self.selectedDateElem.focus()}if(self.hourElement!==undefined)self.hourElement!==undefined&&self.hourElement.focus();if(self.config.closeOnSelect){var single=self.config.mode==="single"&&!self.config.enableTime;var range=self.config.mode==="range"&&self.selectedDates.length===2&&!self.config.enableTime;if(single||range){focusAndClose()}}triggerChange()}var CALLBACKS={locale:[setupLocale,updateWeekdays],showMonths:[buildMonths,setCalendarWidth,buildWeekdays],minDate:[jumpToDate],maxDate:[jumpToDate]};function set(option,value){if(option!==null&&typeof option==="object"){Object.assign(self.config,option);for(var key in option){if(CALLBACKS[key]!==undefined)CALLBACKS[key].forEach(function(x){return x()})}}else{self.config[option]=value;if(CALLBACKS[option]!==undefined)CALLBACKS[option].forEach(function(x){return x()});else if(HOOKS.indexOf(option)>-1)self.config[option]=arrayify(value)}self.redraw();updateValue(false)}function setSelectedDate(inputDate,format){var dates=[];if(inputDate instanceof Array)dates=inputDate.map(function(d){return self.parseDate(d,format)});else if(inputDate instanceof Date||typeof inputDate==="number")dates=[self.parseDate(inputDate,format)];else if(typeof inputDate==="string"){switch(self.config.mode){case"single":case"time":dates=[self.parseDate(inputDate,format)];break;case"multiple":dates=inputDate.split(self.config.conjunction).map(function(date){return self.parseDate(date,format)});break;case"range":dates=inputDate.split(self.l10n.rangeSeparator).map(function(date){return self.parseDate(date,format)});break;default:break}}else self.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(inputDate)));self.selectedDates=dates.filter(function(d){return d instanceof Date&&isEnabled(d,false)});if(self.config.mode==="range")self.selectedDates.sort(function(a,b){return a.getTime()-b.getTime()})}function setDate(date,triggerChange,format){if(triggerChange===void 0){triggerChange=false}if(format===void 0){format=self.config.dateFormat}if(date!==0&&!date||date instanceof Array&&date.length===0)return self.clear(triggerChange);setSelectedDate(date,format);self.showTimeInput=self.selectedDates.length>0;self.latestSelectedDateObj=self.selectedDates[self.selectedDates.length-1];self.redraw();jumpToDate();setHoursFromDate();if(self.selectedDates.length===0){self.clear(false)}updateValue(triggerChange);if(triggerChange)triggerEvent("onChange")}function parseDateRules(arr){return arr.slice().map(function(rule){if(typeof rule==="string"||typeof rule==="number"||rule instanceof Date){return self.parseDate(rule,undefined,true)}else if(rule&&typeof rule==="object"&&rule.from&&rule.to)return{from:self.parseDate(rule.from,undefined),to:self.parseDate(rule.to,undefined)};return rule}).filter(function(x){return x})}function setupDates(){self.selectedDates=[];self.now=self.parseDate(self.config.now)||new Date;var preloadedDate=self.config.defaultDate||((self.input.nodeName==="INPUT"||self.input.nodeName==="TEXTAREA")&&self.input.placeholder&&self.input.value===self.input.placeholder?null:self.input.value);if(preloadedDate)setSelectedDate(preloadedDate,self.config.dateFormat);self._initialDate=self.selectedDates.length>0?self.selectedDates[0]:self.config.minDate&&self.config.minDate.getTime()>self.now.getTime()?self.config.minDate:self.config.maxDate&&self.config.maxDate.getTime()0)self.latestSelectedDateObj=self.selectedDates[0];if(self.config.minTime!==undefined)self.config.minTime=self.parseDate(self.config.minTime,"H:i");if(self.config.maxTime!==undefined)self.config.maxTime=self.parseDate(self.config.maxTime,"H:i");self.minDateHasTime=!!self.config.minDate&&(self.config.minDate.getHours()>0||self.config.minDate.getMinutes()>0||self.config.minDate.getSeconds()>0);self.maxDateHasTime=!!self.config.maxDate&&(self.config.maxDate.getHours()>0||self.config.maxDate.getMinutes()>0||self.config.maxDate.getSeconds()>0);Object.defineProperty(self,"showTimeInput",{get:function(){return self._showTimeInput},set:function(bool){self._showTimeInput=bool;if(self.calendarContainer)toggleClass(self.calendarContainer,"showTimeInput",bool);self.isOpen&&positionCalendar()}})}function setupInputs(){self.input=self.config.wrap?element.querySelector("[data-input]"):element;if(!self.input){self.config.errorHandler(new Error("Invalid input element specified"));return}self.input._type=self.input.type;self.input.type="text";self.input.classList.add("flatpickr-input");self._input=self.input;if(self.config.altInput){self.altInput=createElement(self.input.nodeName,self.config.altInputClass);self._input=self.altInput;self.altInput.placeholder=self.input.placeholder;self.altInput.disabled=self.input.disabled;self.altInput.required=self.input.required;self.altInput.tabIndex=self.input.tabIndex;self.altInput.type="text";self.input.setAttribute("type","hidden");if(!self.config.static&&self.input.parentNode)self.input.parentNode.insertBefore(self.altInput,self.input.nextSibling)}if(!self.config.allowInput)self._input.setAttribute("readonly","readonly");self._positionElement=self.config.positionElement||self._input}function setupMobile(){var inputType=self.config.enableTime?self.config.noCalendar?"time":"datetime-local":"date";self.mobileInput=createElement("input",self.input.className+" flatpickr-mobile");self.mobileInput.step=self.input.getAttribute("step")||"any";self.mobileInput.tabIndex=1;self.mobileInput.type=inputType;self.mobileInput.disabled=self.input.disabled;self.mobileInput.required=self.input.required;self.mobileInput.placeholder=self.input.placeholder;self.mobileFormatStr=inputType==="datetime-local"?"Y-m-d\\TH:i:S":inputType==="date"?"Y-m-d":"H:i:S";if(self.selectedDates.length>0){self.mobileInput.defaultValue=self.mobileInput.value=self.formatDate(self.selectedDates[0],self.mobileFormatStr)}if(self.config.minDate)self.mobileInput.min=self.formatDate(self.config.minDate,"Y-m-d");if(self.config.maxDate)self.mobileInput.max=self.formatDate(self.config.maxDate,"Y-m-d");self.input.type="hidden";if(self.altInput!==undefined)self.altInput.type="hidden";try{if(self.input.parentNode)self.input.parentNode.insertBefore(self.mobileInput,self.input.nextSibling)}catch(_a){}bind(self.mobileInput,"change",function(e){self.setDate(e.target.value,false,self.mobileFormatStr);triggerEvent("onChange");triggerEvent("onClose")})}function toggle(e){if(self.isOpen===true)return self.close();self.open(e)}function triggerEvent(event,data){if(self.config===undefined)return;var hooks=self.config[event];if(hooks!==undefined&&hooks.length>0){for(var i=0;hooks[i]&&i=0&&compareDates(date,self.selectedDates[1])<=0}function updateNavigationCurrentMonth(){if(self.config.noCalendar||self.isMobile||!self.monthNav)return;self.yearElements.forEach(function(yearElement,i){var d=new Date(self.currentYear,self.currentMonth,1);d.setMonth(self.currentMonth+i);if(self.config.showMonths>1||self.config.monthSelectorType==="static"){self.monthElements[i].textContent=monthToStr(d.getMonth(),self.config.shorthandCurrentMonth,self.l10n)+" "}else{self.monthsDropdownContainer.value=d.getMonth().toString()}yearElement.value=d.getFullYear().toString()});self._hidePrevMonthArrow=self.config.minDate!==undefined&&(self.currentYear===self.config.minDate.getFullYear()?self.currentMonth<=self.config.minDate.getMonth():self.currentYearself.config.maxDate.getMonth():self.currentYear>self.config.maxDate.getFullYear())}function getDateStr(format){return self.selectedDates.map(function(dObj){return self.formatDate(dObj,format)}).filter(function(d,i,arr){return self.config.mode!=="range"||self.config.enableTime||arr.indexOf(d)===i}).join(self.config.mode!=="range"?self.config.conjunction:self.l10n.rangeSeparator); -}function updateValue(triggerChange){if(triggerChange===void 0){triggerChange=true}if(self.mobileInput!==undefined&&self.mobileFormatStr){self.mobileInput.value=self.latestSelectedDateObj!==undefined?self.formatDate(self.latestSelectedDateObj,self.mobileFormatStr):""}self.input.value=getDateStr(self.config.dateFormat);if(self.altInput!==undefined){self.altInput.value=getDateStr(self.config.altFormat)}if(triggerChange!==false)triggerEvent("onValueUpdate")}function onMonthNavClick(e){var isPrevMonth=self.prevMonthNav.contains(e.target);var isNextMonth=self.nextMonthNav.contains(e.target);if(isPrevMonth||isNextMonth){changeMonth(isPrevMonth?-1:1)}else if(self.yearElements.indexOf(e.target)>=0){e.target.select()}else if(e.target.classList.contains("arrowUp")){self.changeYear(self.currentYear+1)}else if(e.target.classList.contains("arrowDown")){self.changeYear(self.currentYear-1)}}function timeWrapper(e){e.preventDefault();var isKeyDown=e.type==="keydown",input=e.target;if(self.amPM!==undefined&&e.target===self.amPM){self.amPM.textContent=self.l10n.amPM[int(self.amPM.textContent===self.l10n.amPM[0])]}var min=parseFloat(input.getAttribute("min")),max=parseFloat(input.getAttribute("max")),step=parseFloat(input.getAttribute("step")),curValue=parseInt(input.value,10),delta=e.delta||(isKeyDown?e.which===38?1:-1:0);var newValue=curValue+step*delta;if(typeof input.value!=="undefined"&&input.value.length===2){var isHourElem=input===self.hourElement,isMinuteElem=input===self.minuteElement;if(newValuemax){newValue=input===self.hourElement?newValue-max-int(!self.amPM):min;if(isMinuteElem)incrementNumInput(undefined,1,self.hourElement)}if(self.amPM&&isHourElem&&(step===1?newValue+curValue===23:Math.abs(newValue-curValue)>step)){self.amPM.textContent=self.l10n.amPM[int(self.amPM.textContent===self.l10n.amPM[0])]}input.value=pad(newValue)}}init();return self}function _flatpickr(nodeList,config){var nodes=Array.prototype.slice.call(nodeList).filter(function(x){return x instanceof HTMLElement});var instances=[];for(var i=0;i",noCalendar:false,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:undefined,prevArrow:"",shorthandCurrentMonth:false,showMonths:1,static:false,time_24hr:false,weekNumbers:false,wrap:false};var english={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(nth){var s=nth%100;if(s>3&&s<21)return"th";switch(s%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:false};var pad=function(number){return("0"+number).slice(-2)};var int=function(bool){return bool===true?1:0};function debounce(func,wait,immediate){if(immediate===void 0){immediate=false}var timeout;return function(){var context=this,args=arguments;timeout!==null&&clearTimeout(timeout);timeout=window.setTimeout(function(){timeout=null;if(!immediate)func.apply(context,args)},wait);if(immediate&&!timeout)func.apply(context,args)}}var arrayify=function(obj){return obj instanceof Array?obj:[obj]};function toggleClass(elem,className,bool){if(bool===true)return elem.classList.add(className);elem.classList.remove(className)}function createElement(tag,className,content){var e=window.document.createElement(tag);className=className||"";content=content||"";e.className=className;if(content!==undefined)e.textContent=content;return e}function clearNode(node){while(node.firstChild)node.removeChild(node.firstChild)}function findParent(node,condition){if(condition(node))return node;else if(node.parentNode)return findParent(node.parentNode,condition);return undefined}function createNumberInput(inputClassName,opts){var wrapper=createElement("div","numInputWrapper"),numInput=createElement("input","numInput "+inputClassName),arrowUp=createElement("span","arrowUp"),arrowDown=createElement("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1){numInput.type="number"}else{numInput.type="text";numInput.pattern="\\d*"}if(opts!==undefined)for(var key in opts)numInput.setAttribute(key,opts[key]);wrapper.appendChild(numInput);wrapper.appendChild(arrowUp);wrapper.appendChild(arrowDown);return wrapper}function getEventTarget(event){if(typeof event.composedPath==="function"){var path=event.composedPath();return path[0]}return event.target}var doNothing=function(){return undefined};var monthToStr=function(monthNumber,shorthand,locale){return locale.months[shorthand?"shorthand":"longhand"][monthNumber]};var revFormat={D:doNothing,F:function(dateObj,monthName,locale){dateObj.setMonth(locale.months.longhand.indexOf(monthName))},G:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},H:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},J:function(dateObj,day){dateObj.setDate(parseFloat(day))},K:function(dateObj,amPM,locale){dateObj.setHours(dateObj.getHours()%12+12*int(new RegExp(locale.amPM[1],"i").test(amPM)))},M:function(dateObj,shortMonth,locale){dateObj.setMonth(locale.months.shorthand.indexOf(shortMonth))},S:function(dateObj,seconds){dateObj.setSeconds(parseFloat(seconds))},U:function(_,unixSeconds){return new Date(parseFloat(unixSeconds)*1e3)},W:function(dateObj,weekNum,locale){var weekNumber=parseInt(weekNum);var date=new Date(dateObj.getFullYear(),0,2+(weekNumber-1)*7,0,0,0,0);date.setDate(date.getDate()-date.getDay()+locale.firstDayOfWeek);return date},Y:function(dateObj,year){dateObj.setFullYear(parseFloat(year))},Z:function(_,ISODate){return new Date(ISODate)},d:function(dateObj,day){dateObj.setDate(parseFloat(day))},h:function(dateObj,hour){dateObj.setHours(parseFloat(hour))},i:function(dateObj,minutes){dateObj.setMinutes(parseFloat(minutes))},j:function(dateObj,day){dateObj.setDate(parseFloat(day))},l:doNothing,m:function(dateObj,month){dateObj.setMonth(parseFloat(month)-1)},n:function(dateObj,month){dateObj.setMonth(parseFloat(month)-1)},s:function(dateObj,seconds){dateObj.setSeconds(parseFloat(seconds))},u:function(_,unixMillSeconds){return new Date(parseFloat(unixMillSeconds))},w:doNothing,y:function(dateObj,year){dateObj.setFullYear(2e3+parseFloat(year))}};var tokenRegex={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"};var formats={Z:function(date){return date.toISOString()},D:function(date,locale,options){return locale.weekdays.shorthand[formats.w(date,locale,options)]},F:function(date,locale,options){return monthToStr(formats.n(date,locale,options)-1,false,locale)},G:function(date,locale,options){return pad(formats.h(date,locale,options))},H:function(date){return pad(date.getHours())},J:function(date,locale){return locale.ordinal!==undefined?date.getDate()+locale.ordinal(date.getDate()):date.getDate()},K:function(date,locale){return locale.amPM[int(date.getHours()>11)]},M:function(date,locale){return monthToStr(date.getMonth(),true,locale)},S:function(date){return pad(date.getSeconds())},U:function(date){return date.getTime()/1e3},W:function(date,_,options){return options.getWeek(date)},Y:function(date){return date.getFullYear()},d:function(date){return pad(date.getDate())},h:function(date){return date.getHours()%12?date.getHours()%12:12},i:function(date){return pad(date.getMinutes())},j:function(date){return date.getDate()},l:function(date,locale){return locale.weekdays.longhand[date.getDay()]},m:function(date){return pad(date.getMonth()+1)},n:function(date){return date.getMonth()+1},s:function(date){return date.getSeconds()},u:function(date){return date.getTime()},w:function(date){return date.getDay()},y:function(date){return String(date.getFullYear()).substring(2)}};var createDateFormatter=function(_a){var _b=_a.config,config=_b===void 0?defaults:_b,_c=_a.l10n,l10n=_c===void 0?english:_c;return function(dateObj,frmt,overrideLocale){var locale=overrideLocale||l10n;if(config.formatDate!==undefined){return config.formatDate(dateObj,frmt,locale)}return frmt.split("").map(function(c,i,arr){return formats[c]&&arr[i-1]!=="\\"?formats[c](dateObj,locale,config):c!=="\\"?c:""}).join("")}};var createDateParser=function(_a){var _b=_a.config,config=_b===void 0?defaults:_b,_c=_a.l10n,l10n=_c===void 0?english:_c;return function(date,givenFormat,timeless,customLocale){if(date!==0&&!date)return undefined;var locale=customLocale||l10n;var parsedDate;var dateOrig=date;if(date instanceof Date)parsedDate=new Date(date.getTime());else if(typeof date!=="string"&&date.toFixed!==undefined)parsedDate=new Date(date);else if(typeof date==="string"){var format=givenFormat||(config||defaults).dateFormat;var datestr=String(date).trim();if(datestr==="today"){parsedDate=new Date;timeless=true}else if(/Z$/.test(datestr)||/GMT$/.test(datestr))parsedDate=new Date(date);else if(config&&config.parseDate)parsedDate=config.parseDate(date,format);else{parsedDate=!config||!config.noCalendar?new Date((new Date).getFullYear(),0,1,0,0,0,0):new Date((new Date).setHours(0,0,0,0));var matched=void 0,ops=[];for(var i=0,matchIndex=0,regexStr="";iMath.min(ts1,ts2)&&ts0||self.config.noCalendar;var isSafari=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);if(!self.isMobile&&isSafari){positionCalendar()}triggerEvent("onReady")}function bindToInstance(fn){return fn.bind(self)}function setCalendarWidth(){var config=self.config;if(config.weekNumbers===false&&config.showMonths===1)return;else if(config.noCalendar!==true){window.requestAnimationFrame(function(){if(self.calendarContainer!==undefined){self.calendarContainer.style.visibility="hidden";self.calendarContainer.style.display="block"}if(self.daysContainer!==undefined){var daysWidth=(self.days.offsetWidth+1)*config.showMonths;self.daysContainer.style.width=daysWidth+"px";self.calendarContainer.style.width=daysWidth+(self.weekWrapper!==undefined?self.weekWrapper.offsetWidth:0)+"px";self.calendarContainer.style.removeProperty("visibility");self.calendarContainer.style.removeProperty("display")}})}}function updateTime(e){if(self.selectedDates.length===0){setDefaultTime()}if(e!==undefined&&e.type!=="blur"){timeWrapper(e)}var prevValue=self._input.value;setHoursFromInputs();updateValue();if(self._input.value!==prevValue){self._debouncedChange()}}function ampm2military(hour,amPM){return hour%12+12*int(amPM===self.l10n.amPM[1])}function military2ampm(hour){switch(hour%24){case 0:case 12:return 12;default:return hour%12}}function setHoursFromInputs(){if(self.hourElement===undefined||self.minuteElement===undefined)return;var hours=(parseInt(self.hourElement.value.slice(-2),10)||0)%24,minutes=(parseInt(self.minuteElement.value,10)||0)%60,seconds=self.secondElement!==undefined?(parseInt(self.secondElement.value,10)||0)%60:0;if(self.amPM!==undefined){hours=ampm2military(hours,self.amPM.textContent)}var limitMinHours=self.config.minTime!==undefined||self.config.minDate&&self.minDateHasTime&&self.latestSelectedDateObj&&compareDates(self.latestSelectedDateObj,self.config.minDate,true)===0;var limitMaxHours=self.config.maxTime!==undefined||self.config.maxDate&&self.maxDateHasTime&&self.latestSelectedDateObj&&compareDates(self.latestSelectedDateObj,self.config.maxDate,true)===0;if(limitMaxHours){var maxTime=self.config.maxTime!==undefined?self.config.maxTime:self.config.maxDate;hours=Math.min(hours,maxTime.getHours());if(hours===maxTime.getHours())minutes=Math.min(minutes,maxTime.getMinutes());if(minutes===maxTime.getMinutes())seconds=Math.min(seconds,maxTime.getSeconds())}if(limitMinHours){var minTime=self.config.minTime!==undefined?self.config.minTime:self.config.minDate;hours=Math.max(hours,minTime.getHours());if(hours===minTime.getHours())minutes=Math.max(minutes,minTime.getMinutes());if(minutes===minTime.getMinutes())seconds=Math.max(seconds,minTime.getSeconds())}setHours(hours,minutes,seconds)}function setHoursFromDate(dateObj){var date=dateObj||self.latestSelectedDateObj;if(date)setHours(date.getHours(),date.getMinutes(),date.getSeconds())}function setDefaultHours(){var hours=self.config.defaultHour;var minutes=self.config.defaultMinute;var seconds=self.config.defaultSeconds;if(self.config.minDate!==undefined){var minHr=self.config.minDate.getHours();var minMinutes=self.config.minDate.getMinutes();hours=Math.max(hours,minHr);if(hours===minHr)minutes=Math.max(minMinutes,minutes);if(hours===minHr&&minutes===minMinutes)seconds=self.config.minDate.getSeconds()}if(self.config.maxDate!==undefined){var maxHr=self.config.maxDate.getHours();var maxMinutes=self.config.maxDate.getMinutes();hours=Math.min(hours,maxHr);if(hours===maxHr)minutes=Math.min(maxMinutes,minutes);if(hours===maxHr&&minutes===maxMinutes)seconds=self.config.maxDate.getSeconds()}setHours(hours,minutes,seconds)}function setHours(hours,minutes,seconds){if(self.latestSelectedDateObj!==undefined){self.latestSelectedDateObj.setHours(hours%24,minutes,seconds||0,0)}if(!self.hourElement||!self.minuteElement||self.isMobile)return;self.hourElement.value=pad(!self.config.time_24hr?(12+hours)%12+12*int(hours%12===0):hours);self.minuteElement.value=pad(minutes);if(self.amPM!==undefined)self.amPM.textContent=self.l10n.amPM[int(hours>=12)];if(self.secondElement!==undefined)self.secondElement.value=pad(seconds)}function onYearInput(event){var year=parseInt(event.target.value)+(event.delta||0);if(year/1e3>1||event.key==="Enter"&&!/[^\d]/.test(year.toString())){changeYear(year)}}function bind(element,event,handler,options){if(event instanceof Array)return event.forEach(function(ev){return bind(element,ev,handler,options)});if(element instanceof Array)return element.forEach(function(el){return bind(el,event,handler,options)});element.addEventListener(event,handler,options);self._handlers.push({element:element,event:event,handler:handler,options:options})}function onClick(handler){return function(evt){evt.which===1&&handler(evt)}}function triggerChange(){triggerEvent("onChange")}function bindEvents(){if(self.config.wrap){["open","close","toggle","clear"].forEach(function(evt){Array.prototype.forEach.call(self.element.querySelectorAll("[data-"+evt+"]"),function(el){return bind(el,"click",self[evt])})})}if(self.isMobile){setupMobile();return}var debouncedResize=debounce(onResize,50);self._debouncedChange=debounce(triggerChange,DEBOUNCED_CHANGE_MS);if(self.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent))bind(self.daysContainer,"mouseover",function(e){if(self.config.mode==="range")onMouseOver(e.target)});bind(window.document.body,"keydown",onKeyDown);if(!self.config.inline&&!self.config.static)bind(window,"resize",debouncedResize);if(window.ontouchstart!==undefined)bind(window.document,"touchstart",documentClick);else bind(window.document,"mousedown",onClick(documentClick));bind(window.document,"focus",documentClick,{capture:true});if(self.config.clickOpens===true){bind(self._input,"focus",self.open);bind(self._input,"mousedown",onClick(self.open))}if(self.daysContainer!==undefined){bind(self.monthNav,"mousedown",onClick(onMonthNavClick));bind(self.monthNav,["keyup","increment"],onYearInput);bind(self.daysContainer,"mousedown",onClick(selectDate))}if(self.timeContainer!==undefined&&self.minuteElement!==undefined&&self.hourElement!==undefined){var selText=function(e){return e.target.select()};bind(self.timeContainer,["increment"],updateTime);bind(self.timeContainer,"blur",updateTime,{capture:true});bind(self.timeContainer,"mousedown",onClick(timeIncrement));bind([self.hourElement,self.minuteElement],["focus","click"],selText);if(self.secondElement!==undefined)bind(self.secondElement,"focus",function(){return self.secondElement&&self.secondElement.select()});if(self.amPM!==undefined){bind(self.amPM,"mousedown",onClick(function(e){updateTime(e);triggerChange()}))}}}function jumpToDate(jumpDate,triggerChange){var jumpTo=jumpDate!==undefined?self.parseDate(jumpDate):self.latestSelectedDateObj||(self.config.minDate&&self.config.minDate>self.now?self.config.minDate:self.config.maxDate&&self.config.maxDate1);self.calendarContainer.appendChild(fragment);var customAppend=self.config.appendTo!==undefined&&self.config.appendTo.nodeType!==undefined;if(self.config.inline||self.config.static){self.calendarContainer.classList.add(self.config.inline?"inline":"static");if(self.config.inline){if(!customAppend&&self.element.parentNode)self.element.parentNode.insertBefore(self.calendarContainer,self._input.nextSibling);else if(self.config.appendTo!==undefined)self.config.appendTo.appendChild(self.calendarContainer)}if(self.config.static){var wrapper=createElement("div","flatpickr-wrapper");if(self.element.parentNode)self.element.parentNode.insertBefore(wrapper,self.element);wrapper.appendChild(self.element);if(self.altInput)wrapper.appendChild(self.altInput);wrapper.appendChild(self.calendarContainer)}}if(!self.config.static&&!self.config.inline)(self.config.appendTo!==undefined?self.config.appendTo:window.document.body).appendChild(self.calendarContainer)}function createDay(className,date,dayNumber,i){var dateIsEnabled=isEnabled(date,true),dayElement=createElement("span","flatpickr-day "+className,date.getDate().toString());dayElement.dateObj=date;dayElement.$i=i;dayElement.setAttribute("aria-label",self.formatDate(date,self.config.ariaDateFormat));if(className.indexOf("hidden")===-1&&compareDates(date,self.now)===0){self.todayDateElem=dayElement;dayElement.classList.add("today");dayElement.setAttribute("aria-current","date")}if(dateIsEnabled){dayElement.tabIndex=-1;if(isDateSelected(date)){dayElement.classList.add("selected");self.selectedDateElem=dayElement;if(self.config.mode==="range"){toggleClass(dayElement,"startRange",self.selectedDates[0]&&compareDates(date,self.selectedDates[0],true)===0);toggleClass(dayElement,"endRange",self.selectedDates[1]&&compareDates(date,self.selectedDates[1],true)===0);if(className==="nextMonthDay")dayElement.classList.add("inRange")}}}else{dayElement.classList.add("flatpickr-disabled")}if(self.config.mode==="range"){if(isDateInRange(date)&&!isDateSelected(date))dayElement.classList.add("inRange")}if(self.weekNumbers&&self.config.showMonths===1&&className!=="prevMonthDay"&&dayNumber%7===1){self.weekNumbers.insertAdjacentHTML("beforeend",""+self.config.getWeek(date)+"")}triggerEvent("onDayCreate",dayElement);return dayElement}function focusOnDayElem(targetNode){targetNode.focus();if(self.config.mode==="range")onMouseOver(targetNode)}function getFirstAvailableDay(delta){var startMonth=delta>0?0:self.config.showMonths-1;var endMonth=delta>0?self.config.showMonths:-1;for(var m=startMonth;m!=endMonth;m+=delta){var month=self.daysContainer.children[m];var startIndex=delta>0?0:month.children.length-1;var endIndex=delta>0?month.children.length:-1;for(var i=startIndex;i!=endIndex;i+=delta){var c=month.children[i];if(c.className.indexOf("hidden")===-1&&isEnabled(c.dateObj))return c}}return undefined}function getNextAvailableDay(current,delta){var givenMonth=current.className.indexOf("Month")===-1?current.dateObj.getMonth():self.currentMonth;var endMonth=delta>0?self.config.showMonths:-1;var loopDelta=delta>0?1:-1;for(var m=givenMonth-self.currentMonth;m!=endMonth;m+=loopDelta){var month=self.daysContainer.children[m];var startIndex=givenMonth-self.currentMonth===m?current.$i+delta:delta<0?month.children.length-1:0;var numMonthDays=month.children.length;for(var i=startIndex;i>=0&&i0?numMonthDays:-1);i+=loopDelta){var c=month.children[i];if(c.className.indexOf("hidden")===-1&&isEnabled(c.dateObj)&&Math.abs(current.$i-i)>=Math.abs(delta))return focusOnDayElem(c)}}self.changeMonth(loopDelta);focusOnDay(getFirstAvailableDay(loopDelta),0);return undefined}function focusOnDay(current,offset){var dayFocused=isInView(document.activeElement||document.body);var startElem=current!==undefined?current:dayFocused?document.activeElement:self.selectedDateElem!==undefined&&isInView(self.selectedDateElem)?self.selectedDateElem:self.todayDateElem!==undefined&&isInView(self.todayDateElem)?self.todayDateElem:getFirstAvailableDay(offset>0?1:-1);if(startElem===undefined)return self._input.focus();if(!dayFocused)return focusOnDayElem(startElem);getNextAvailableDay(startElem,offset)}function buildMonthDays(year,month){var firstOfMonth=(new Date(year,month,1).getDay()-self.l10n.firstDayOfWeek+7)%7;var prevMonthDays=self.utils.getDaysInMonth((month-1+12)%12);var daysInMonth=self.utils.getDaysInMonth(month),days=window.document.createDocumentFragment(),isMultiMonth=self.config.showMonths>1,prevMonthDayClass=isMultiMonth?"prevMonthDay hidden":"prevMonthDay",nextMonthDayClass=isMultiMonth?"nextMonthDay hidden":"nextMonthDay";var dayNumber=prevMonthDays+1-firstOfMonth,dayIndex=0;for(;dayNumber<=prevMonthDays;dayNumber++,dayIndex++){days.appendChild(createDay(prevMonthDayClass,new Date(year,month-1,dayNumber),dayNumber,dayIndex))}for(dayNumber=1;dayNumber<=daysInMonth;dayNumber++,dayIndex++){days.appendChild(createDay("",new Date(year,month,dayNumber),dayNumber,dayIndex))}for(var dayNum=daysInMonth+1;dayNum<=42-firstOfMonth&&(self.config.showMonths===1||dayIndex%7!==0);dayNum++,dayIndex++){days.appendChild(createDay(nextMonthDayClass,new Date(year,month+1,dayNum%daysInMonth),dayNum,dayIndex))}var dayContainer=createElement("div","dayContainer");dayContainer.appendChild(days);return dayContainer}function buildDays(){if(self.daysContainer===undefined){return}clearNode(self.daysContainer);if(self.weekNumbers)clearNode(self.weekNumbers);var frag=document.createDocumentFragment();for(var i=0;i1||self.config.monthSelectorType!=="dropdown")return;var shouldBuildMonth=function(month){if(self.config.minDate!==undefined&&self.currentYear===self.config.minDate.getFullYear()&&monthself.config.maxDate.getMonth())};self.monthsDropdownContainer.tabIndex=-1;self.monthsDropdownContainer.innerHTML="";for(var i=0;i<12;i++){if(!shouldBuildMonth(i))continue;var month=createElement("option","flatpickr-monthDropdown-month");month.value=new Date(self.currentYear,i).getMonth().toString();month.textContent=monthToStr(i,self.config.shorthandCurrentMonth,self.l10n);month.tabIndex=-1;if(self.currentMonth===i){month.selected=true}self.monthsDropdownContainer.appendChild(month)}}function buildMonth(){var container=createElement("div","flatpickr-month");var monthNavFragment=window.document.createDocumentFragment();var monthElement;if(self.config.showMonths>1||self.config.monthSelectorType==="static"){monthElement=createElement("span","cur-month")}else{self.monthsDropdownContainer=createElement("select","flatpickr-monthDropdown-months");bind(self.monthsDropdownContainer,"change",function(e){var target=e.target;var selectedMonth=parseInt(target.value,10);self.changeMonth(selectedMonth-self.currentMonth);triggerEvent("onMonthChange")});buildMonthSwitch();monthElement=self.monthsDropdownContainer}var yearInput=createNumberInput("cur-year",{tabindex:"-1"});var yearElement=yearInput.getElementsByTagName("input")[0];yearElement.setAttribute("aria-label",self.l10n.yearAriaLabel);if(self.config.minDate){yearElement.setAttribute("min",self.config.minDate.getFullYear().toString())}if(self.config.maxDate){yearElement.setAttribute("max",self.config.maxDate.getFullYear().toString());yearElement.disabled=!!self.config.minDate&&self.config.minDate.getFullYear()===self.config.maxDate.getFullYear()}var currentMonth=createElement("div","flatpickr-current-month");currentMonth.appendChild(monthElement);currentMonth.appendChild(yearInput);monthNavFragment.appendChild(currentMonth);container.appendChild(monthNavFragment);return{container:container,yearElement:yearElement,monthElement:monthElement}}function buildMonths(){clearNode(self.monthNav);self.monthNav.appendChild(self.prevMonthNav);if(self.config.showMonths){self.yearElements=[];self.monthElements=[]}for(var m=self.config.showMonths;m--;){var month=buildMonth();self.yearElements.push(month.yearElement);self.monthElements.push(month.monthElement);self.monthNav.appendChild(month.container)}self.monthNav.appendChild(self.nextMonthNav)}function buildMonthNav(){self.monthNav=createElement("div","flatpickr-months");self.yearElements=[];self.monthElements=[];self.prevMonthNav=createElement("span","flatpickr-prev-month");self.prevMonthNav.innerHTML=self.config.prevArrow;self.nextMonthNav=createElement("span","flatpickr-next-month");self.nextMonthNav.innerHTML=self.config.nextArrow;buildMonths();Object.defineProperty(self,"_hidePrevMonthArrow",{get:function(){return self.__hidePrevMonthArrow},set:function(bool){if(self.__hidePrevMonthArrow!==bool){toggleClass(self.prevMonthNav,"flatpickr-disabled",bool);self.__hidePrevMonthArrow=bool}}});Object.defineProperty(self,"_hideNextMonthArrow",{get:function(){return self.__hideNextMonthArrow},set:function(bool){if(self.__hideNextMonthArrow!==bool){toggleClass(self.nextMonthNav,"flatpickr-disabled",bool);self.__hideNextMonthArrow=bool}}});self.currentYearElement=self.yearElements[0];updateNavigationCurrentMonth();return self.monthNav}function buildTime(){self.calendarContainer.classList.add("hasTime");if(self.config.noCalendar)self.calendarContainer.classList.add("noCalendar");self.timeContainer=createElement("div","flatpickr-time");self.timeContainer.tabIndex=-1;var separator=createElement("span","flatpickr-time-separator",":");var hourInput=createNumberInput("flatpickr-hour",{"aria-label":self.l10n.hourAriaLabel});self.hourElement=hourInput.getElementsByTagName("input")[0];var minuteInput=createNumberInput("flatpickr-minute",{"aria-label":self.l10n.minuteAriaLabel});self.minuteElement=minuteInput.getElementsByTagName("input")[0];self.hourElement.tabIndex=self.minuteElement.tabIndex=-1;self.hourElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getHours():self.config.time_24hr?self.config.defaultHour:military2ampm(self.config.defaultHour));self.minuteElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getMinutes():self.config.defaultMinute);self.hourElement.setAttribute("step",self.config.hourIncrement.toString());self.minuteElement.setAttribute("step",self.config.minuteIncrement.toString());self.hourElement.setAttribute("min",self.config.time_24hr?"0":"1");self.hourElement.setAttribute("max",self.config.time_24hr?"23":"12");self.minuteElement.setAttribute("min","0");self.minuteElement.setAttribute("max","59");self.timeContainer.appendChild(hourInput);self.timeContainer.appendChild(separator);self.timeContainer.appendChild(minuteInput);if(self.config.time_24hr)self.timeContainer.classList.add("time24hr");if(self.config.enableSeconds){self.timeContainer.classList.add("hasSeconds");var secondInput=createNumberInput("flatpickr-second");self.secondElement=secondInput.getElementsByTagName("input")[0];self.secondElement.value=pad(self.latestSelectedDateObj?self.latestSelectedDateObj.getSeconds():self.config.defaultSeconds);self.secondElement.setAttribute("step",self.minuteElement.getAttribute("step"));self.secondElement.setAttribute("min","0");self.secondElement.setAttribute("max","59");self.timeContainer.appendChild(createElement("span","flatpickr-time-separator",":"));self.timeContainer.appendChild(secondInput)}if(!self.config.time_24hr){self.amPM=createElement("span","flatpickr-am-pm",self.l10n.amPM[int((self.latestSelectedDateObj?self.hourElement.value:self.config.defaultHour)>11)]);self.amPM.title=self.l10n.toggleTitle;self.amPM.tabIndex=-1;self.timeContainer.appendChild(self.amPM)}return self.timeContainer}function buildWeekdays(){if(!self.weekdayContainer)self.weekdayContainer=createElement("div","flatpickr-weekdays");else clearNode(self.weekdayContainer);for(var i=self.config.showMonths;i--;){var container=createElement("div","flatpickr-weekdaycontainer");self.weekdayContainer.appendChild(container)}updateWeekdays();return self.weekdayContainer}function updateWeekdays(){if(!self.weekdayContainer){return}var firstDayOfWeek=self.l10n.firstDayOfWeek;var weekdays=self.l10n.weekdays.shorthand.slice();if(firstDayOfWeek>0&&firstDayOfWeek\n "+weekdays.join("")+"\n \n "}}function buildWeeks(){self.calendarContainer.classList.add("hasWeeks");var weekWrapper=createElement("div","flatpickr-weekwrapper");weekWrapper.appendChild(createElement("span","flatpickr-weekday",self.l10n.weekAbbreviation));var weekNumbers=createElement("div","flatpickr-weeks");weekWrapper.appendChild(weekNumbers);return{weekWrapper:weekWrapper,weekNumbers:weekNumbers}}function changeMonth(value,isOffset){if(isOffset===void 0){isOffset=true}var delta=isOffset?value:value-self.currentMonth;if(delta<0&&self._hidePrevMonthArrow===true||delta>0&&self._hideNextMonthArrow===true)return;self.currentMonth+=delta;if(self.currentMonth<0||self.currentMonth>11){self.currentYear+=self.currentMonth>11?1:-1;self.currentMonth=(self.currentMonth+12)%12;triggerEvent("onYearChange");buildMonthSwitch()}buildDays();triggerEvent("onMonthChange");updateNavigationCurrentMonth()}function clear(triggerChangeEvent,toInitial){if(triggerChangeEvent===void 0){triggerChangeEvent=true}if(toInitial===void 0){toInitial=true}self.input.value="";if(self.altInput!==undefined)self.altInput.value="";if(self.mobileInput!==undefined)self.mobileInput.value="";self.selectedDates=[];self.latestSelectedDateObj=undefined;if(toInitial===true){self.currentYear=self._initialDate.getFullYear();self.currentMonth=self._initialDate.getMonth()}self.showTimeInput=false;if(self.config.enableTime===true){setDefaultHours()}self.redraw();if(triggerChangeEvent)triggerEvent("onChange")}function close(){self.isOpen=false;if(!self.isMobile){if(self.calendarContainer!==undefined){self.calendarContainer.classList.remove("open")}if(self._input!==undefined){self._input.classList.remove("active")}}triggerEvent("onClose")}function destroy(){if(self.config!==undefined)triggerEvent("onDestroy");for(var i=self._handlers.length;i--;){var h=self._handlers[i];h.element.removeEventListener(h.event,h.handler,h.options)}self._handlers=[];if(self.mobileInput){if(self.mobileInput.parentNode)self.mobileInput.parentNode.removeChild(self.mobileInput);self.mobileInput=undefined}else if(self.calendarContainer&&self.calendarContainer.parentNode){if(self.config.static&&self.calendarContainer.parentNode){var wrapper=self.calendarContainer.parentNode;wrapper.lastChild&&wrapper.removeChild(wrapper.lastChild);if(wrapper.parentNode){while(wrapper.firstChild)wrapper.parentNode.insertBefore(wrapper.firstChild,wrapper);wrapper.parentNode.removeChild(wrapper)}}else self.calendarContainer.parentNode.removeChild(self.calendarContainer)}if(self.altInput){self.input.type="text";if(self.altInput.parentNode)self.altInput.parentNode.removeChild(self.altInput);delete self.altInput}if(self.input){self.input.type=self.input._type;self.input.classList.remove("flatpickr-input");self.input.removeAttribute("readonly");self.input.value=""}["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(k){try{delete self[k]}catch(_){}})}function isCalendarElem(elem){if(self.config.appendTo&&self.config.appendTo.contains(elem))return true;return self.calendarContainer.contains(elem)}function documentClick(e){if(self.isOpen&&!self.config.inline){var eventTarget_1=getEventTarget(e);var isCalendarElement=isCalendarElem(eventTarget_1);var isInput=eventTarget_1===self.input||eventTarget_1===self.altInput||self.element.contains(eventTarget_1)||e.path&&e.path.indexOf&&(~e.path.indexOf(self.input)||~e.path.indexOf(self.altInput));var lostFocus=e.type==="blur"?isInput&&e.relatedTarget&&!isCalendarElem(e.relatedTarget):!isInput&&!isCalendarElement&&!isCalendarElem(e.relatedTarget);var isIgnored=!self.config.ignoredFocusElements.some(function(elem){return elem.contains(eventTarget_1)});if(lostFocus&&isIgnored){if(self.timeContainer!==undefined&&self.minuteElement!==undefined&&self.hourElement!==undefined){updateTime()}self.close();if(self.config.mode==="range"&&self.selectedDates.length===1){self.clear(false);self.redraw()}}}}function changeYear(newYear){if(!newYear||self.config.minDate&&newYearself.config.maxDate.getFullYear())return;var newYearNum=newYear,isNewYear=self.currentYear!==newYearNum;self.currentYear=newYearNum||self.currentYear;if(self.config.maxDate&&self.currentYear===self.config.maxDate.getFullYear()){self.currentMonth=Math.min(self.config.maxDate.getMonth(),self.currentMonth)}else if(self.config.minDate&&self.currentYear===self.config.minDate.getFullYear()){self.currentMonth=Math.max(self.config.minDate.getMonth(),self.currentMonth)}if(isNewYear){self.redraw();triggerEvent("onYearChange");buildMonthSwitch()}}function isEnabled(date,timeless){if(timeless===void 0){timeless=true}var dateToCheck=self.parseDate(date,undefined,timeless);if(self.config.minDate&&dateToCheck&&compareDates(dateToCheck,self.config.minDate,timeless!==undefined?timeless:!self.minDateHasTime)<0||self.config.maxDate&&dateToCheck&&compareDates(dateToCheck,self.config.maxDate,timeless!==undefined?timeless:!self.maxDateHasTime)>0)return false;if(self.config.enable.length===0&&self.config.disable.length===0)return true;if(dateToCheck===undefined)return false;var bool=self.config.enable.length>0,array=bool?self.config.enable:self.config.disable;for(var i=0,d=void 0;i=d.from.getTime()&&dateToCheck.getTime()<=d.to.getTime())return bool}return!bool}function isInView(elem){if(self.daysContainer!==undefined)return elem.className.indexOf("hidden")===-1&&self.daysContainer.contains(elem);return false}function onKeyDown(e){var isInput=e.target===self._input;var allowInput=self.config.allowInput;var allowKeydown=self.isOpen&&(!allowInput||!isInput);var allowInlineKeydown=self.config.inline&&isInput&&!allowInput;if(e.keyCode===13&&isInput){if(allowInput){self.setDate(self._input.value,true,e.target===self.altInput?self.config.altFormat:self.config.dateFormat);return e.target.blur()}else{self.open()}}else if(isCalendarElem(e.target)||allowKeydown||allowInlineKeydown){var isTimeObj=!!self.timeContainer&&self.timeContainer.contains(e.target);switch(e.keyCode){case 13:if(isTimeObj){e.preventDefault();updateTime();focusAndClose()}else selectDate(e);break;case 27:e.preventDefault();focusAndClose();break;case 8:case 46:if(isInput&&!self.config.allowInput){e.preventDefault();self.clear()}break;case 37:case 39:if(!isTimeObj&&!isInput){e.preventDefault();if(self.daysContainer!==undefined&&(allowInput===false||document.activeElement&&isInView(document.activeElement))){var delta_1=e.keyCode===39?1:-1;if(!e.ctrlKey)focusOnDay(undefined,delta_1);else{e.stopPropagation();changeMonth(delta_1);focusOnDay(getFirstAvailableDay(1),0)}}}else if(self.hourElement)self.hourElement.focus();break;case 38:case 40:e.preventDefault();var delta=e.keyCode===40?1:-1;if(self.daysContainer&&e.target.$i!==undefined||e.target===self.input||e.target===self.altInput){if(e.ctrlKey){e.stopPropagation();changeYear(self.currentYear-delta);focusOnDay(getFirstAvailableDay(1),0)}else if(!isTimeObj)focusOnDay(undefined,delta*7)}else if(e.target===self.currentYearElement){changeYear(self.currentYear-delta)}else if(self.config.enableTime){if(!isTimeObj&&self.hourElement)self.hourElement.focus();updateTime(e);self._debouncedChange()}break;case 9:if(isTimeObj){var elems=[self.hourElement,self.minuteElement,self.secondElement,self.amPM].concat(self.pluginElements).filter(function(x){return x});var i=elems.indexOf(e.target);if(i!==-1){var target=elems[i+(e.shiftKey?-1:1)];e.preventDefault();(target||self._input).focus()}}else if(!self.config.noCalendar&&self.daysContainer&&self.daysContainer.contains(e.target)&&e.shiftKey){e.preventDefault();self._input.focus()}break;default:break}}if(self.amPM!==undefined&&e.target===self.amPM){switch(e.key){case self.l10n.amPM[0].charAt(0):case self.l10n.amPM[0].charAt(0).toLowerCase():self.amPM.textContent=self.l10n.amPM[0];setHoursFromInputs();updateValue();break;case self.l10n.amPM[1].charAt(0):case self.l10n.amPM[1].charAt(0).toLowerCase():self.amPM.textContent=self.l10n.amPM[1];setHoursFromInputs();updateValue();break}}if(isInput||isCalendarElem(e.target)){triggerEvent("onKeyDown",e)}}function onMouseOver(elem){if(self.selectedDates.length!==1||elem&&(!elem.classList.contains("flatpickr-day")||elem.classList.contains("flatpickr-disabled")))return;var hoverDate=elem?elem.dateObj.getTime():self.days.firstElementChild.dateObj.getTime(),initialDate=self.parseDate(self.selectedDates[0],undefined,true).getTime(),rangeStartDate=Math.min(hoverDate,self.selectedDates[0].getTime()),rangeEndDate=Math.max(hoverDate,self.selectedDates[0].getTime());var containsDisabled=false;var minRange=0,maxRange=0;for(var t=rangeStartDate;trangeStartDate&&tminRange))minRange=t;else if(t>initialDate&&(!maxRange||t0&×tamp0&×tamp>maxRange;if(outOfRange){dayElem.classList.add("notAllowed");["inRange","startRange","endRange"].forEach(function(c){dayElem.classList.remove(c)});return"continue"}else if(containsDisabled&&!outOfRange)return"continue";["startRange","inRange","endRange","notAllowed"].forEach(function(c){dayElem.classList.remove(c)});if(elem!==undefined){elem.classList.add(hoverDate<=self.selectedDates[0].getTime()?"startRange":"endRange");if(initialDatehoverDate&×tamp===initialDate)dayElem.classList.add("endRange");if(timestamp>=minRange&&(maxRange===0||timestamp<=maxRange)&&isBetween(timestamp,initialDate,hoverDate))dayElem.classList.add("inRange")}};for(var i=0,l=month.children.length;i0||dateObj.getMinutes()>0||dateObj.getSeconds()>0}if(self.selectedDates){self.selectedDates=self.selectedDates.filter(function(d){return isEnabled(d)});if(!self.selectedDates.length&&type==="min")setHoursFromDate(dateObj);updateValue()}if(self.daysContainer){redraw();if(dateObj!==undefined)self.currentYearElement[type]=dateObj.getFullYear().toString();else self.currentYearElement.removeAttribute(type);self.currentYearElement.disabled=!!inverseDateObj&&dateObj!==undefined&&inverseDateObj.getFullYear()===dateObj.getFullYear()}}}function parseConfig(){var boolOpts=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"];var userConfig=__assign({},instanceConfig,JSON.parse(JSON.stringify(element.dataset||{})));var formats={};self.config.parseDate=userConfig.parseDate;self.config.formatDate=userConfig.formatDate;Object.defineProperty(self.config,"enable",{get:function(){return self.config._enable},set:function(dates){self.config._enable=parseDateRules(dates)}});Object.defineProperty(self.config,"disable",{get:function(){return self.config._disable},set:function(dates){self.config._disable=parseDateRules(dates)}});var timeMode=userConfig.mode==="time";if(!userConfig.dateFormat&&(userConfig.enableTime||timeMode)){var defaultDateFormat=flatpickr.defaultConfig.dateFormat||defaults.dateFormat;formats.dateFormat=userConfig.noCalendar||timeMode?"H:i"+(userConfig.enableSeconds?":S":""):defaultDateFormat+" H:i"+(userConfig.enableSeconds?":S":"")}if(userConfig.altInput&&(userConfig.enableTime||timeMode)&&!userConfig.altFormat){var defaultAltFormat=flatpickr.defaultConfig.altFormat||defaults.altFormat;formats.altFormat=userConfig.noCalendar||timeMode?"h:i"+(userConfig.enableSeconds?":S K":" K"):defaultAltFormat+(" h:i"+(userConfig.enableSeconds?":S":"")+" K")}if(!userConfig.altInputClass){self.config.altInputClass=self.input.className+" "+self.config.altInputClass}Object.defineProperty(self.config,"minDate",{get:function(){return self.config._minDate},set:minMaxDateSetter("min")});Object.defineProperty(self.config,"maxDate",{get:function(){return self.config._maxDate},set:minMaxDateSetter("max")});var minMaxTimeSetter=function(type){return function(val){self.config[type==="min"?"_minTime":"_maxTime"]=self.parseDate(val,"H:i:S")}};Object.defineProperty(self.config,"minTime",{get:function(){return self.config._minTime},set:minMaxTimeSetter("min")});Object.defineProperty(self.config,"maxTime",{get:function(){return self.config._maxTime},set:minMaxTimeSetter("max")});if(userConfig.mode==="time"){self.config.noCalendar=true;self.config.enableTime=true}Object.assign(self.config,formats,userConfig);for(var i=0;i-1){self.config[key]=arrayify(pluginConf[key]).map(bindToInstance).concat(self.config[key])}else if(typeof userConfig[key]==="undefined")self.config[key]=pluginConf[key]}}triggerEvent("onParseConfig")}function setupLocale(){if(typeof self.config.locale!=="object"&&typeof flatpickr.l10ns[self.config.locale]==="undefined")self.config.errorHandler(new Error("flatpickr: invalid locale "+self.config.locale));self.l10n=__assign({},flatpickr.l10ns["default"],typeof self.config.locale==="object"?self.config.locale:self.config.locale!=="default"?flatpickr.l10ns[self.config.locale]:undefined);tokenRegex.K="("+self.l10n.amPM[0]+"|"+self.l10n.amPM[1]+"|"+self.l10n.amPM[0].toLowerCase()+"|"+self.l10n.amPM[1].toLowerCase()+")";var userConfig=__assign({},instanceConfig,JSON.parse(JSON.stringify(element.dataset||{})));if(userConfig.time_24hr===undefined&&flatpickr.defaultConfig.time_24hr===undefined){self.config.time_24hr=self.l10n.time_24hr}self.formatDate=createDateFormatter(self);self.parseDate=createDateParser({config:self.config,l10n:self.l10n})}function positionCalendar(customPositionElement){if(self.calendarContainer===undefined)return;triggerEvent("onPreCalendarPosition");var positionElement=customPositionElement||self._positionElement;var calendarHeight=Array.prototype.reduce.call(self.calendarContainer.children,function(acc,child){return acc+child.offsetHeight},0),calendarWidth=self.calendarContainer.offsetWidth,configPos=self.config.position.split(" "),configPosVertical=configPos[0],configPosHorizontal=configPos.length>1?configPos[1]:null,inputBounds=positionElement.getBoundingClientRect(),distanceFromBottom=window.innerHeight-inputBounds.bottom,showOnTop=configPosVertical==="above"||configPosVertical!=="below"&&distanceFromBottomcalendarHeight;var top=window.pageYOffset+inputBounds.top+(!showOnTop?positionElement.offsetHeight+2:-calendarHeight-2);toggleClass(self.calendarContainer,"arrowTop",!showOnTop);toggleClass(self.calendarContainer,"arrowBottom",showOnTop);if(self.config.inline)return;var left=window.pageXOffset+inputBounds.left-(configPosHorizontal!=null&&configPosHorizontal==="center"?(calendarWidth-inputBounds.width)/2:0);var right=window.document.body.offsetWidth-(window.pageXOffset+inputBounds.right);var rightMost=left+calendarWidth>window.document.body.offsetWidth;var centerMost=right+calendarWidth>window.document.body.offsetWidth;toggleClass(self.calendarContainer,"rightMost",rightMost);if(self.config.static)return;self.calendarContainer.style.top=top+"px";if(!rightMost){self.calendarContainer.style.left=left+"px";self.calendarContainer.style.right="auto"}else if(!centerMost){self.calendarContainer.style.left="auto";self.calendarContainer.style.right=right+"px"}else{var doc=document.styleSheets[0];if(doc===undefined)return;var bodyWidth=window.document.body.offsetWidth;var centerLeft=Math.max(0,bodyWidth/2-calendarWidth/2);var centerBefore=".flatpickr-calendar.centerMost:before";var centerAfter=".flatpickr-calendar.centerMost:after";var centerIndex=doc.cssRules.length;var centerStyle="{left:"+inputBounds.left+"px;right:auto;}";toggleClass(self.calendarContainer,"rightMost",false);toggleClass(self.calendarContainer,"centerMost",true);doc.insertRule(centerBefore+","+centerAfter+centerStyle,centerIndex);self.calendarContainer.style.left=centerLeft+"px";self.calendarContainer.style.right="auto"}}function redraw(){if(self.config.noCalendar||self.isMobile)return;updateNavigationCurrentMonth();buildDays()}function focusAndClose(){self._input.focus();if(window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==undefined){setTimeout(self.close,0)}else{self.close()}}function selectDate(e){e.preventDefault();e.stopPropagation();var isSelectable=function(day){return day.classList&&day.classList.contains("flatpickr-day")&&!day.classList.contains("flatpickr-disabled")&&!day.classList.contains("notAllowed")};var t=findParent(e.target,isSelectable);if(t===undefined)return;var target=t;var selectedDate=self.latestSelectedDateObj=new Date(target.dateObj.getTime());var shouldChangeMonth=(selectedDate.getMonth()self.currentMonth+self.config.showMonths-1)&&self.config.mode!=="range";self.selectedDateElem=target;if(self.config.mode==="single")self.selectedDates=[selectedDate];else if(self.config.mode==="multiple"){var selectedIndex=isDateSelected(selectedDate);if(selectedIndex)self.selectedDates.splice(parseInt(selectedIndex),1);else self.selectedDates.push(selectedDate)}else if(self.config.mode==="range"){if(self.selectedDates.length===2){self.clear(false,false)}self.latestSelectedDateObj=selectedDate;self.selectedDates.push(selectedDate);if(compareDates(selectedDate,self.selectedDates[0],true)!==0)self.selectedDates.sort(function(a,b){return a.getTime()-b.getTime()})}setHoursFromInputs();if(shouldChangeMonth){var isNewYear=self.currentYear!==selectedDate.getFullYear();self.currentYear=selectedDate.getFullYear();self.currentMonth=selectedDate.getMonth();if(isNewYear){triggerEvent("onYearChange");buildMonthSwitch()}triggerEvent("onMonthChange")}updateNavigationCurrentMonth();buildDays();updateValue();if(self.config.enableTime)setTimeout(function(){return self.showTimeInput=true},50);if(!shouldChangeMonth&&self.config.mode!=="range"&&self.config.showMonths===1)focusOnDayElem(target);else if(self.selectedDateElem!==undefined&&self.hourElement===undefined){self.selectedDateElem&&self.selectedDateElem.focus()}if(self.hourElement!==undefined)self.hourElement!==undefined&&self.hourElement.focus();if(self.config.closeOnSelect){var single=self.config.mode==="single"&&!self.config.enableTime;var range=self.config.mode==="range"&&self.selectedDates.length===2&&!self.config.enableTime;if(single||range){focusAndClose()}}triggerChange()}var CALLBACKS={locale:[setupLocale,updateWeekdays],showMonths:[buildMonths,setCalendarWidth,buildWeekdays],minDate:[jumpToDate],maxDate:[jumpToDate]};function set(option,value){if(option!==null&&typeof option==="object"){Object.assign(self.config,option);for(var key in option){if(CALLBACKS[key]!==undefined)CALLBACKS[key].forEach(function(x){return x()})}}else{self.config[option]=value;if(CALLBACKS[option]!==undefined)CALLBACKS[option].forEach(function(x){return x()});else if(HOOKS.indexOf(option)>-1)self.config[option]=arrayify(value)}self.redraw();updateValue(false)}function setSelectedDate(inputDate,format){var dates=[];if(inputDate instanceof Array)dates=inputDate.map(function(d){return self.parseDate(d,format)});else if(inputDate instanceof Date||typeof inputDate==="number")dates=[self.parseDate(inputDate,format)];else if(typeof inputDate==="string"){switch(self.config.mode){case"single":case"time":dates=[self.parseDate(inputDate,format)];break;case"multiple":dates=inputDate.split(self.config.conjunction).map(function(date){return self.parseDate(date,format)});break;case"range":dates=inputDate.split(self.l10n.rangeSeparator).map(function(date){return self.parseDate(date,format)});break;default:break}}else self.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(inputDate)));self.selectedDates=dates.filter(function(d){return d instanceof Date&&isEnabled(d,false)});if(self.config.mode==="range")self.selectedDates.sort(function(a,b){return a.getTime()-b.getTime()})}function setDate(date,triggerChange,format){if(triggerChange===void 0){triggerChange=false}if(format===void 0){format=self.config.dateFormat}if(date!==0&&!date||date instanceof Array&&date.length===0)return self.clear(triggerChange);setSelectedDate(date,format);self.showTimeInput=self.selectedDates.length>0;self.latestSelectedDateObj=self.selectedDates[self.selectedDates.length-1];self.redraw();jumpToDate();setHoursFromDate();if(self.selectedDates.length===0){self.clear(false)}updateValue(triggerChange);if(triggerChange)triggerEvent("onChange")}function parseDateRules(arr){return arr.slice().map(function(rule){if(typeof rule==="string"||typeof rule==="number"||rule instanceof Date){return self.parseDate(rule,undefined,true)}else if(rule&&typeof rule==="object"&&rule.from&&rule.to)return{from:self.parseDate(rule.from,undefined),to:self.parseDate(rule.to,undefined)};return rule}).filter(function(x){return x})}function setupDates(){self.selectedDates=[];self.now=self.parseDate(self.config.now)||new Date;var preloadedDate=self.config.defaultDate||((self.input.nodeName==="INPUT"||self.input.nodeName==="TEXTAREA")&&self.input.placeholder&&self.input.value===self.input.placeholder?null:self.input.value);if(preloadedDate)setSelectedDate(preloadedDate,self.config.dateFormat);self._initialDate=self.selectedDates.length>0?self.selectedDates[0]:self.config.minDate&&self.config.minDate.getTime()>self.now.getTime()?self.config.minDate:self.config.maxDate&&self.config.maxDate.getTime()0)self.latestSelectedDateObj=self.selectedDates[0];if(self.config.minTime!==undefined)self.config.minTime=self.parseDate(self.config.minTime,"H:i");if(self.config.maxTime!==undefined)self.config.maxTime=self.parseDate(self.config.maxTime,"H:i");self.minDateHasTime=!!self.config.minDate&&(self.config.minDate.getHours()>0||self.config.minDate.getMinutes()>0||self.config.minDate.getSeconds()>0);self.maxDateHasTime=!!self.config.maxDate&&(self.config.maxDate.getHours()>0||self.config.maxDate.getMinutes()>0||self.config.maxDate.getSeconds()>0);Object.defineProperty(self,"showTimeInput",{get:function(){return self._showTimeInput},set:function(bool){self._showTimeInput=bool;if(self.calendarContainer)toggleClass(self.calendarContainer,"showTimeInput",bool);self.isOpen&&positionCalendar()}})}function setupInputs(){self.input=self.config.wrap?element.querySelector("[data-input]"):element;if(!self.input){self.config.errorHandler(new Error("Invalid input element specified"));return}self.input._type=self.input.type;self.input.type="text";self.input.classList.add("flatpickr-input");self._input=self.input;if(self.config.altInput){self.altInput=createElement(self.input.nodeName,self.config.altInputClass);self._input=self.altInput;self.altInput.placeholder=self.input.placeholder;self.altInput.disabled=self.input.disabled;self.altInput.required=self.input.required;self.altInput.tabIndex=self.input.tabIndex;self.altInput.type="text";self.input.setAttribute("type","hidden");if(!self.config.static&&self.input.parentNode)self.input.parentNode.insertBefore(self.altInput,self.input.nextSibling)}if(!self.config.allowInput)self._input.setAttribute("readonly","readonly");self._positionElement=self.config.positionElement||self._input}function setupMobile(){var inputType=self.config.enableTime?self.config.noCalendar?"time":"datetime-local":"date";self.mobileInput=createElement("input",self.input.className+" flatpickr-mobile");self.mobileInput.step=self.input.getAttribute("step")||"any";self.mobileInput.tabIndex=1;self.mobileInput.type=inputType;self.mobileInput.disabled=self.input.disabled;self.mobileInput.required=self.input.required;self.mobileInput.placeholder=self.input.placeholder;self.mobileFormatStr=inputType==="datetime-local"?"Y-m-d\\TH:i:S":inputType==="date"?"Y-m-d":"H:i:S";if(self.selectedDates.length>0){self.mobileInput.defaultValue=self.mobileInput.value=self.formatDate(self.selectedDates[0],self.mobileFormatStr)}if(self.config.minDate)self.mobileInput.min=self.formatDate(self.config.minDate,"Y-m-d");if(self.config.maxDate)self.mobileInput.max=self.formatDate(self.config.maxDate,"Y-m-d");self.input.type="hidden";if(self.altInput!==undefined)self.altInput.type="hidden";try{if(self.input.parentNode)self.input.parentNode.insertBefore(self.mobileInput,self.input.nextSibling)}catch(_a){}bind(self.mobileInput,"change",function(e){self.setDate(e.target.value,false,self.mobileFormatStr);triggerEvent("onChange");triggerEvent("onClose")})}function toggle(e){if(self.isOpen===true)return self.close();self.open(e)}function triggerEvent(event,data){if(self.config===undefined)return;var hooks=self.config[event];if(hooks!==undefined&&hooks.length>0){for(var i=0;hooks[i]&&i=0&&compareDates(date,self.selectedDates[1])<=0}function updateNavigationCurrentMonth(){if(self.config.noCalendar||self.isMobile||!self.monthNav)return;self.yearElements.forEach(function(yearElement,i){var d=new Date(self.currentYear,self.currentMonth,1);d.setMonth(self.currentMonth+i);if(self.config.showMonths>1||self.config.monthSelectorType==="static"){self.monthElements[i].textContent=monthToStr(d.getMonth(),self.config.shorthandCurrentMonth,self.l10n)+" "}else{self.monthsDropdownContainer.value=d.getMonth().toString()}yearElement.value=d.getFullYear().toString()});self._hidePrevMonthArrow=self.config.minDate!==undefined&&(self.currentYear===self.config.minDate.getFullYear()?self.currentMonth<=self.config.minDate.getMonth():self.currentYearself.config.maxDate.getMonth():self.currentYear>self.config.maxDate.getFullYear())}function getDateStr(format){return self.selectedDates.map(function(dObj){return self.formatDate(dObj,format)}).filter(function(d,i,arr){return self.config.mode!=="range"||self.config.enableTime||arr.indexOf(d)===i}).join(self.config.mode!=="range"?self.config.conjunction:self.l10n.rangeSeparator)}function updateValue(triggerChange){if(triggerChange===void 0){triggerChange=true}if(self.mobileInput!==undefined&&self.mobileFormatStr){self.mobileInput.value=self.latestSelectedDateObj!==undefined?self.formatDate(self.latestSelectedDateObj,self.mobileFormatStr):""}self.input.value=getDateStr(self.config.dateFormat);if(self.altInput!==undefined){self.altInput.value=getDateStr(self.config.altFormat)}if(triggerChange!==false)triggerEvent("onValueUpdate")}function onMonthNavClick(e){var isPrevMonth=self.prevMonthNav.contains(e.target);var isNextMonth=self.nextMonthNav.contains(e.target);if(isPrevMonth||isNextMonth){changeMonth(isPrevMonth?-1:1)}else if(self.yearElements.indexOf(e.target)>=0){e.target.select()}else if(e.target.classList.contains("arrowUp")){self.changeYear(self.currentYear+1)}else if(e.target.classList.contains("arrowDown")){self.changeYear(self.currentYear-1)}}function timeWrapper(e){e.preventDefault();var isKeyDown=e.type==="keydown",input=e.target;if(self.amPM!==undefined&&e.target===self.amPM){self.amPM.textContent=self.l10n.amPM[int(self.amPM.textContent===self.l10n.amPM[0])]}var min=parseFloat(input.getAttribute("min")),max=parseFloat(input.getAttribute("max")),step=parseFloat(input.getAttribute("step")),curValue=parseInt(input.value,10),delta=e.delta||(isKeyDown?e.which===38?1:-1:0);var newValue=curValue+step*delta;if(typeof input.value!=="undefined"&&input.value.length===2){var isHourElem=input===self.hourElement,isMinuteElem=input===self.minuteElement;if(newValuemax){newValue=input===self.hourElement?newValue-max-int(!self.amPM):min;if(isMinuteElem)incrementNumInput(undefined,1,self.hourElement)}if(self.amPM&&isHourElem&&(step===1?newValue+curValue===23:Math.abs(newValue-curValue)>step)){self.amPM.textContent=self.l10n.amPM[int(self.amPM.textContent===self.l10n.amPM[0])]}input.value=pad(newValue)}}init();return self}function _flatpickr(nodeList,config){var nodes=Array.prototype.slice.call(nodeList).filter(function(x){return x instanceof HTMLElement});var instances=[];for(var i=0;i=0){timeoutDuration=1;break}}function microtaskDebounce(fn){var called=false;return function(){if(called){return}called=true;window.Promise.resolve().then(function(){called=false;fn()})}}function taskDebounce(fn){var scheduled=false;return function(){if(!scheduled){scheduled=true;setTimeout(function(){scheduled=false;fn()},timeoutDuration)}}}var supportsMicroTasks=isBrowser&&window.Promise;var debounce=supportsMicroTasks?microtaskDebounce:taskDebounce;function isFunction(functionToCheck){var getType={};return functionToCheck&&getType.toString.call(functionToCheck)==="[object Function]"}function getStyleComputedProperty(element,property){if(element.nodeType!==1){return[]}var window=element.ownerDocument.defaultView;var css=window.getComputedStyle(element,null);return property?css[property]:css}function getParentNode(element){if(element.nodeName==="HTML"){return element}return element.parentNode||element.host}function getScrollParent(element){if(!element){return document.body}switch(element.nodeName){case"HTML":case"BODY":return element.ownerDocument.body;case"#document":return element.body}var _getStyleComputedProp=getStyleComputedProperty(element),overflow=_getStyleComputedProp.overflow,overflowX=_getStyleComputedProp.overflowX,overflowY=_getStyleComputedProp.overflowY;if(/(auto|scroll|overlay)/.test(overflow+overflowY+overflowX)){return element}return getScrollParent(getParentNode(element))}var isIE11=isBrowser&&!!(window.MSInputMethodContext&&document.documentMode);var isIE10=isBrowser&&/MSIE 10/.test(navigator.userAgent);function isIE(version){if(version===11){return isIE11}if(version===10){return isIE10}return isIE11||isIE10}function getOffsetParent(element){if(!element){return document.documentElement}var noOffsetParent=isIE(10)?document.body:null;var offsetParent=element.offsetParent||null;while(offsetParent===noOffsetParent&&element.nextElementSibling){offsetParent=(element=element.nextElementSibling).offsetParent}var nodeName=offsetParent&&offsetParent.nodeName;if(!nodeName||nodeName==="BODY"||nodeName==="HTML"){return element?element.ownerDocument.documentElement:document.documentElement}if(["TH","TD","TABLE"].indexOf(offsetParent.nodeName)!==-1&&getStyleComputedProperty(offsetParent,"position")==="static"){return getOffsetParent(offsetParent)}return offsetParent}function isOffsetContainer(element){var nodeName=element.nodeName;if(nodeName==="BODY"){return false}return nodeName==="HTML"||getOffsetParent(element.firstElementChild)===element}function getRoot(node){if(node.parentNode!==null){return getRoot(node.parentNode)}return node}function findCommonOffsetParent(element1,element2){if(!element1||!element1.nodeType||!element2||!element2.nodeType){return document.documentElement}var order=element1.compareDocumentPosition(element2)&Node.DOCUMENT_POSITION_FOLLOWING;var start=order?element1:element2;var end=order?element2:element1;var range=document.createRange();range.setStart(start,0);range.setEnd(end,0);var commonAncestorContainer=range.commonAncestorContainer;if(element1!==commonAncestorContainer&&element2!==commonAncestorContainer||start.contains(end)){if(isOffsetContainer(commonAncestorContainer)){return commonAncestorContainer}return getOffsetParent(commonAncestorContainer)}var element1root=getRoot(element1);if(element1root.host){return findCommonOffsetParent(element1root.host,element2)}else{return findCommonOffsetParent(element1,getRoot(element2).host)}}function getScroll(element){var side=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"top";var upperSide=side==="top"?"scrollTop":"scrollLeft";var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){var html=element.ownerDocument.documentElement;var scrollingElement=element.ownerDocument.scrollingElement||html;return scrollingElement[upperSide]}return element[upperSide]}function includeScroll(rect,element){var subtract=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;var scrollTop=getScroll(element,"top");var scrollLeft=getScroll(element,"left");var modifier=subtract?-1:1;rect.top+=scrollTop*modifier;rect.bottom+=scrollTop*modifier;rect.left+=scrollLeft*modifier;rect.right+=scrollLeft*modifier;return rect}function getBordersSize(styles,axis){var sideA=axis==="x"?"Left":"Top";var sideB=sideA==="Left"?"Right":"Bottom";return parseFloat(styles["border"+sideA+"Width"],10)+parseFloat(styles["border"+sideB+"Width"],10)}function getSize(axis,body,html,computedStyle){return Math.max(body["offset"+axis],body["scroll"+axis],html["client"+axis],html["offset"+axis],html["scroll"+axis],isIE(10)?parseInt(html["offset"+axis])+parseInt(computedStyle["margin"+(axis==="Height"?"Top":"Left")])+parseInt(computedStyle["margin"+(axis==="Height"?"Bottom":"Right")]):0)}function getWindowSizes(document){var body=document.body;var html=document.documentElement;var computedStyle=isIE(10)&&getComputedStyle(html);return{height:getSize("Height",body,html,computedStyle),width:getSize("Width",body,html,computedStyle)}}var classCallCheck=function(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function")}};var createClass=function(){function defineProperties(target,props){for(var i=0;i2&&arguments[2]!==undefined?arguments[2]:false;var isIE10=isIE(10);var isHTML=parent.nodeName==="HTML";var childrenRect=getBoundingClientRect(children);var parentRect=getBoundingClientRect(parent);var scrollParent=getScrollParent(children);var styles=getStyleComputedProperty(parent);var borderTopWidth=parseFloat(styles.borderTopWidth,10);var borderLeftWidth=parseFloat(styles.borderLeftWidth,10);if(fixedPosition&&isHTML){parentRect.top=Math.max(parentRect.top,0);parentRect.left=Math.max(parentRect.left,0)}var offsets=getClientRect({top:childrenRect.top-parentRect.top-borderTopWidth,left:childrenRect.left-parentRect.left-borderLeftWidth,width:childrenRect.width,height:childrenRect.height});offsets.marginTop=0;offsets.marginLeft=0;if(!isIE10&&isHTML){var marginTop=parseFloat(styles.marginTop,10);var marginLeft=parseFloat(styles.marginLeft,10);offsets.top-=borderTopWidth-marginTop;offsets.bottom-=borderTopWidth-marginTop;offsets.left-=borderLeftWidth-marginLeft;offsets.right-=borderLeftWidth-marginLeft;offsets.marginTop=marginTop;offsets.marginLeft=marginLeft}if(isIE10&&!fixedPosition?parent.contains(scrollParent):parent===scrollParent&&scrollParent.nodeName!=="BODY"){offsets=includeScroll(offsets,parent)}return offsets}function getViewportOffsetRectRelativeToArtbitraryNode(element){var excludeScroll=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var html=element.ownerDocument.documentElement;var relativeOffset=getOffsetRectRelativeToArbitraryNode(element,html);var width=Math.max(html.clientWidth,window.innerWidth||0);var height=Math.max(html.clientHeight,window.innerHeight||0);var scrollTop=!excludeScroll?getScroll(html):0;var scrollLeft=!excludeScroll?getScroll(html,"left"):0;var offset={top:scrollTop-relativeOffset.top+relativeOffset.marginTop,left:scrollLeft-relativeOffset.left+relativeOffset.marginLeft,width:width,height:height};return getClientRect(offset)}function isFixed(element){var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){return false}if(getStyleComputedProperty(element,"position")==="fixed"){return true}var parentNode=getParentNode(element);if(!parentNode){return false}return isFixed(parentNode)}function getFixedPositionOffsetParent(element){if(!element||!element.parentElement||isIE()){return document.documentElement}var el=element.parentElement;while(el&&getStyleComputedProperty(el,"transform")==="none"){el=el.parentElement}return el||document.documentElement}function getBoundaries(popper,reference,padding,boundariesElement){var fixedPosition=arguments.length>4&&arguments[4]!==undefined?arguments[4]:false;var boundaries={top:0,left:0};var offsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);if(boundariesElement==="viewport"){boundaries=getViewportOffsetRectRelativeToArtbitraryNode(offsetParent,fixedPosition)}else{var boundariesNode=void 0;if(boundariesElement==="scrollParent"){boundariesNode=getScrollParent(getParentNode(reference));if(boundariesNode.nodeName==="BODY"){boundariesNode=popper.ownerDocument.documentElement}}else if(boundariesElement==="window"){boundariesNode=popper.ownerDocument.documentElement}else{boundariesNode=boundariesElement}var offsets=getOffsetRectRelativeToArbitraryNode(boundariesNode,offsetParent,fixedPosition);if(boundariesNode.nodeName==="HTML"&&!isFixed(offsetParent)){var _getWindowSizes=getWindowSizes(popper.ownerDocument),height=_getWindowSizes.height,width=_getWindowSizes.width;boundaries.top+=offsets.top-offsets.marginTop;boundaries.bottom=height+offsets.top;boundaries.left+=offsets.left-offsets.marginLeft;boundaries.right=width+offsets.left}else{boundaries=offsets}}padding=padding||0;var isPaddingNumber=typeof padding==="number";boundaries.left+=isPaddingNumber?padding:padding.left||0;boundaries.top+=isPaddingNumber?padding:padding.top||0;boundaries.right-=isPaddingNumber?padding:padding.right||0;boundaries.bottom-=isPaddingNumber?padding:padding.bottom||0;return boundaries}function getArea(_ref){var width=_ref.width,height=_ref.height;return width*height}function computeAutoPlacement(placement,refRect,popper,reference,boundariesElement){var padding=arguments.length>5&&arguments[5]!==undefined?arguments[5]:0;if(placement.indexOf("auto")===-1){return placement}var boundaries=getBoundaries(popper,reference,padding,boundariesElement);var rects={top:{width:boundaries.width,height:refRect.top-boundaries.top},right:{width:boundaries.right-refRect.right,height:boundaries.height},bottom:{width:boundaries.width,height:boundaries.bottom-refRect.bottom},left:{width:refRect.left-boundaries.left,height:boundaries.height}};var sortedAreas=Object.keys(rects).map(function(key){return _extends({key:key},rects[key],{area:getArea(rects[key])})}).sort(function(a,b){return b.area-a.area});var filteredAreas=sortedAreas.filter(function(_ref2){var width=_ref2.width,height=_ref2.height;return width>=popper.clientWidth&&height>=popper.clientHeight});var computedPlacement=filteredAreas.length>0?filteredAreas[0].key:sortedAreas[0].key;var variation=placement.split("-")[1];return computedPlacement+(variation?"-"+variation:"")}function getReferenceOffsets(state,popper,reference){var fixedPosition=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var commonOffsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);return getOffsetRectRelativeToArbitraryNode(reference,commonOffsetParent,fixedPosition)}function getOuterSizes(element){var window=element.ownerDocument.defaultView;var styles=window.getComputedStyle(element);var x=parseFloat(styles.marginTop||0)+parseFloat(styles.marginBottom||0);var y=parseFloat(styles.marginLeft||0)+parseFloat(styles.marginRight||0);var result={width:element.offsetWidth+y,height:element.offsetHeight+x};return result}function getOppositePlacement(placement){var hash={left:"right",right:"left",bottom:"top",top:"bottom"};return placement.replace(/left|right|bottom|top/g,function(matched){return hash[matched]})}function getPopperOffsets(popper,referenceOffsets,placement){placement=placement.split("-")[0];var popperRect=getOuterSizes(popper);var popperOffsets={width:popperRect.width,height:popperRect.height};var isHoriz=["right","left"].indexOf(placement)!==-1;var mainSide=isHoriz?"top":"left";var secondarySide=isHoriz?"left":"top";var measurement=isHoriz?"height":"width";var secondaryMeasurement=!isHoriz?"height":"width";popperOffsets[mainSide]=referenceOffsets[mainSide]+referenceOffsets[measurement]/2-popperRect[measurement]/2;if(placement===secondarySide){popperOffsets[secondarySide]=referenceOffsets[secondarySide]-popperRect[secondaryMeasurement]}else{popperOffsets[secondarySide]=referenceOffsets[getOppositePlacement(secondarySide)]}return popperOffsets}function find(arr,check){if(Array.prototype.find){return arr.find(check)}return arr.filter(check)[0]}function findIndex(arr,prop,value){if(Array.prototype.findIndex){return arr.findIndex(function(cur){return cur[prop]===value})}var match=find(arr,function(obj){return obj[prop]===value});return arr.indexOf(match)}function runModifiers(modifiers,data,ends){var modifiersToRun=ends===undefined?modifiers:modifiers.slice(0,findIndex(modifiers,"name",ends));modifiersToRun.forEach(function(modifier){if(modifier["function"]){console.warn("`modifier.function` is deprecated, use `modifier.fn`!")}var fn=modifier["function"]||modifier.fn;if(modifier.enabled&&isFunction(fn)){data.offsets.popper=getClientRect(data.offsets.popper);data.offsets.reference=getClientRect(data.offsets.reference);data=fn(data,modifier)}});return data}function update(){if(this.state.isDestroyed){return}var data={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:false,offsets:{}};data.offsets.reference=getReferenceOffsets(this.state,this.popper,this.reference,this.options.positionFixed);data.placement=computeAutoPlacement(this.options.placement,data.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding);data.originalPlacement=data.placement;data.positionFixed=this.options.positionFixed;data.offsets.popper=getPopperOffsets(this.popper,data.offsets.reference,data.placement);data.offsets.popper.position=this.options.positionFixed?"fixed":"absolute";data=runModifiers(this.modifiers,data);if(!this.state.isCreated){this.state.isCreated=true;this.options.onCreate(data)}else{this.options.onUpdate(data)}}function isModifierEnabled(modifiers,modifierName){return modifiers.some(function(_ref){var name=_ref.name,enabled=_ref.enabled;return enabled&&name===modifierName})}function getSupportedPropertyName(property){var prefixes=[false,"ms","Webkit","Moz","O"];var upperProp=property.charAt(0).toUpperCase()+property.slice(1);for(var i=0;ipopper[opSide]){data.offsets.popper[side]+=reference[side]+arrowElementSize-popper[opSide]}data.offsets.popper=getClientRect(data.offsets.popper);var center=reference[side]+reference[len]/2-arrowElementSize/2;var css=getStyleComputedProperty(data.instance.popper);var popperMarginSide=parseFloat(css["margin"+sideCapitalized],10);var popperBorderSide=parseFloat(css["border"+sideCapitalized+"Width"],10);var sideValue=center-data.offsets.popper[side]-popperMarginSide-popperBorderSide;sideValue=Math.max(Math.min(popper[len]-arrowElementSize,sideValue),0);data.arrowElement=arrowElement;data.offsets.arrow=(_data$offsets$arrow={},defineProperty(_data$offsets$arrow,side,Math.round(sideValue)),defineProperty(_data$offsets$arrow,altSide,""),_data$offsets$arrow);return data}function getOppositeVariation(variation){if(variation==="end"){return"start"}else if(variation==="start"){return"end"}return variation}var placements=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"];var validPlacements=placements.slice(3);function clockwise(placement){var counter=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var index=validPlacements.indexOf(placement);var arr=validPlacements.slice(index+1).concat(validPlacements.slice(0,index));return counter?arr.reverse():arr}var BEHAVIORS={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function flip(data,options){if(isModifierEnabled(data.instance.modifiers,"inner")){return data}if(data.flipped&&data.placement===data.originalPlacement){return data}var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,options.boundariesElement,data.positionFixed);var placement=data.placement.split("-")[0];var placementOpposite=getOppositePlacement(placement);var variation=data.placement.split("-")[1]||"";var flipOrder=[];switch(options.behavior){case BEHAVIORS.FLIP:flipOrder=[placement,placementOpposite];break;case BEHAVIORS.CLOCKWISE:flipOrder=clockwise(placement);break;case BEHAVIORS.COUNTERCLOCKWISE:flipOrder=clockwise(placement,true);break;default:flipOrder=options.behavior}flipOrder.forEach(function(step,index){if(placement!==step||flipOrder.length===index+1){return data}placement=data.placement.split("-")[0];placementOpposite=getOppositePlacement(placement);var popperOffsets=data.offsets.popper;var refOffsets=data.offsets.reference;var floor=Math.floor;var overlapsRef=placement==="left"&&floor(popperOffsets.right)>floor(refOffsets.left)||placement==="right"&&floor(popperOffsets.left)floor(refOffsets.top)||placement==="bottom"&&floor(popperOffsets.top)floor(boundaries.right);var overflowsTop=floor(popperOffsets.top)floor(boundaries.bottom);var overflowsBoundaries=placement==="left"&&overflowsLeft||placement==="right"&&overflowsRight||placement==="top"&&overflowsTop||placement==="bottom"&&overflowsBottom;var isVertical=["top","bottom"].indexOf(placement)!==-1;var flippedVariation=!!options.flipVariations&&(isVertical&&variation==="start"&&overflowsLeft||isVertical&&variation==="end"&&overflowsRight||!isVertical&&variation==="start"&&overflowsTop||!isVertical&&variation==="end"&&overflowsBottom);if(overlapsRef||overflowsBoundaries||flippedVariation){data.flipped=true;if(overlapsRef||overflowsBoundaries){placement=flipOrder[index+1]}if(flippedVariation){variation=getOppositeVariation(variation)}data.placement=placement+(variation?"-"+variation:"");data.offsets.popper=_extends({},data.offsets.popper,getPopperOffsets(data.instance.popper,data.offsets.reference,data.placement));data=runModifiers(data.instance.modifiers,data,"flip")}});return data}function keepTogether(data){var _data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var placement=data.placement.split("-")[0];var floor=Math.floor;var isVertical=["top","bottom"].indexOf(placement)!==-1;var side=isVertical?"right":"bottom";var opSide=isVertical?"left":"top";var measurement=isVertical?"width":"height";if(popper[side]floor(reference[side])){data.offsets.popper[opSide]=floor(reference[side])}return data}function toValue(str,measurement,popperOffsets,referenceOffsets){var split=str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/);var value=+split[1];var unit=split[2];if(!value){return str}if(unit.indexOf("%")===0){var element=void 0;switch(unit){case"%p":element=popperOffsets;break;case"%":case"%r":default:element=referenceOffsets}var rect=getClientRect(element);return rect[measurement]/100*value}else if(unit==="vh"||unit==="vw"){var size=void 0;if(unit==="vh"){size=Math.max(document.documentElement.clientHeight,window.innerHeight||0)}else{size=Math.max(document.documentElement.clientWidth,window.innerWidth||0)}return size/100*value}else{return value}}function parseOffset(offset,popperOffsets,referenceOffsets,basePlacement){var offsets=[0,0];var useHeight=["right","left"].indexOf(basePlacement)!==-1;var fragments=offset.split(/(\+|\-)/).map(function(frag){return frag.trim()});var divider=fragments.indexOf(find(fragments,function(frag){return frag.search(/,|\s/)!==-1}));if(fragments[divider]&&fragments[divider].indexOf(",")===-1){console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.")}var splitRegex=/\s*,\s*|\s+/;var ops=divider!==-1?[fragments.slice(0,divider).concat([fragments[divider].split(splitRegex)[0]]),[fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider+1))]:[fragments];ops=ops.map(function(op,index){var measurement=(index===1?!useHeight:useHeight)?"height":"width";var mergeWithPrevious=false;return op.reduce(function(a,b){if(a[a.length-1]===""&&["+","-"].indexOf(b)!==-1){a[a.length-1]=b;mergeWithPrevious=true;return a}else if(mergeWithPrevious){a[a.length-1]+=b;mergeWithPrevious=false;return a}else{return a.concat(b)}},[]).map(function(str){return toValue(str,measurement,popperOffsets,referenceOffsets)})});ops.forEach(function(op,index){op.forEach(function(frag,index2){if(isNumeric(frag)){offsets[index]+=frag*(op[index2-1]==="-"?-1:1)}})});return offsets}function offset(data,_ref){var offset=_ref.offset;var placement=data.placement,_data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var basePlacement=placement.split("-")[0];var offsets=void 0;if(isNumeric(+offset)){offsets=[+offset,0]}else{offsets=parseOffset(offset,popper,reference,basePlacement)}if(basePlacement==="left"){popper.top+=offsets[0];popper.left-=offsets[1]}else if(basePlacement==="right"){popper.top+=offsets[0];popper.left+=offsets[1]}else if(basePlacement==="top"){popper.left+=offsets[0];popper.top-=offsets[1]}else if(basePlacement==="bottom"){popper.left+=offsets[0];popper.top+=offsets[1]}data.popper=popper;return data}function preventOverflow(data,options){var boundariesElement=options.boundariesElement||getOffsetParent(data.instance.popper);if(data.instance.reference===boundariesElement){boundariesElement=getOffsetParent(boundariesElement)}var transformProp=getSupportedPropertyName("transform");var popperStyles=data.instance.popper.style;var top=popperStyles.top,left=popperStyles.left,transform=popperStyles[transformProp];popperStyles.top="";popperStyles.left="";popperStyles[transformProp]="";var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,boundariesElement,data.positionFixed); -popperStyles.top=top;popperStyles.left=left;popperStyles[transformProp]=transform;options.boundaries=boundaries;var order=options.priority;var popper=data.offsets.popper;var check={primary:function primary(placement){var value=popper[placement];if(popper[placement]boundaries[placement]&&!options.escapeWithReference){value=Math.min(popper[mainSide],boundaries[placement]-(placement==="right"?popper.width:popper.height))}return defineProperty({},mainSide,value)}};order.forEach(function(placement){var side=["left","top"].indexOf(placement)!==-1?"primary":"secondary";popper=_extends({},popper,check[side](placement))});data.offsets.popper=popper;return data}function shift(data){var placement=data.placement;var basePlacement=placement.split("-")[0];var shiftvariation=placement.split("-")[1];if(shiftvariation){var _data$offsets=data.offsets,reference=_data$offsets.reference,popper=_data$offsets.popper;var isVertical=["bottom","top"].indexOf(basePlacement)!==-1;var side=isVertical?"left":"top";var measurement=isVertical?"width":"height";var shiftOffsets={start:defineProperty({},side,reference[side]),end:defineProperty({},side,reference[side]+reference[measurement]-popper[measurement])};data.offsets.popper=_extends({},popper,shiftOffsets[shiftvariation])}return data}function hide(data){if(!isModifierRequired(data.instance.modifiers,"hide","preventOverflow")){return data}var refRect=data.offsets.reference;var bound=find(data.instance.modifiers,function(modifier){return modifier.name==="preventOverflow"}).boundaries;if(refRect.bottombound.right||refRect.top>bound.bottom||refRect.right2&&arguments[2]!==undefined?arguments[2]:{};classCallCheck(this,Popper);this.scheduleUpdate=function(){return requestAnimationFrame(_this.update)};this.update=debounce(this.update.bind(this));this.options=_extends({},Popper.Defaults,options);this.state={isDestroyed:false,isCreated:false,scrollParents:[]};this.reference=reference&&reference.jquery?reference[0]:reference;this.popper=popper&&popper.jquery?popper[0]:popper;this.options.modifiers={};Object.keys(_extends({},Popper.Defaults.modifiers,options.modifiers)).forEach(function(name){_this.options.modifiers[name]=_extends({},Popper.Defaults.modifiers[name]||{},options.modifiers?options.modifiers[name]:{})});this.modifiers=Object.keys(this.options.modifiers).map(function(name){return _extends({name:name},_this.options.modifiers[name])}).sort(function(a,b){return a.order-b.order});this.modifiers.forEach(function(modifierOptions){if(modifierOptions.enabled&&isFunction(modifierOptions.onLoad)){modifierOptions.onLoad(_this.reference,_this.popper,_this.options,modifierOptions,_this.state)}});this.update();var eventsEnabled=this.options.eventsEnabled;if(eventsEnabled){this.enableEventListeners()}this.state.eventsEnabled=eventsEnabled}createClass(Popper,[{key:"update",value:function update$$1(){return update.call(this)}},{key:"destroy",value:function destroy$$1(){return destroy.call(this)}},{key:"enableEventListeners",value:function enableEventListeners$$1(){return enableEventListeners.call(this)}},{key:"disableEventListeners",value:function disableEventListeners$$1(){return disableEventListeners.call(this)}}]);return Popper}();Popper.Utils=(typeof window!=="undefined"?window:global).PopperUtils;Popper.placements=placements;Popper.Defaults=Defaults;return Popper}); \ No newline at end of file +(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?module.exports=factory():typeof define==="function"&&define.amd?define(factory):global.Popper=factory()})(this,function(){"use strict";var isBrowser=typeof window!=="undefined"&&typeof document!=="undefined";var longerTimeoutBrowsers=["Edge","Trident","Firefox"];var timeoutDuration=0;for(var i=0;i=0){timeoutDuration=1;break}}function microtaskDebounce(fn){var called=false;return function(){if(called){return}called=true;window.Promise.resolve().then(function(){called=false;fn()})}}function taskDebounce(fn){var scheduled=false;return function(){if(!scheduled){scheduled=true;setTimeout(function(){scheduled=false;fn()},timeoutDuration)}}}var supportsMicroTasks=isBrowser&&window.Promise;var debounce=supportsMicroTasks?microtaskDebounce:taskDebounce;function isFunction(functionToCheck){var getType={};return functionToCheck&&getType.toString.call(functionToCheck)==="[object Function]"}function getStyleComputedProperty(element,property){if(element.nodeType!==1){return[]}var window=element.ownerDocument.defaultView;var css=window.getComputedStyle(element,null);return property?css[property]:css}function getParentNode(element){if(element.nodeName==="HTML"){return element}return element.parentNode||element.host}function getScrollParent(element){if(!element){return document.body}switch(element.nodeName){case"HTML":case"BODY":return element.ownerDocument.body;case"#document":return element.body}var _getStyleComputedProp=getStyleComputedProperty(element),overflow=_getStyleComputedProp.overflow,overflowX=_getStyleComputedProp.overflowX,overflowY=_getStyleComputedProp.overflowY;if(/(auto|scroll|overlay)/.test(overflow+overflowY+overflowX)){return element}return getScrollParent(getParentNode(element))}var isIE11=isBrowser&&!!(window.MSInputMethodContext&&document.documentMode);var isIE10=isBrowser&&/MSIE 10/.test(navigator.userAgent);function isIE(version){if(version===11){return isIE11}if(version===10){return isIE10}return isIE11||isIE10}function getOffsetParent(element){if(!element){return document.documentElement}var noOffsetParent=isIE(10)?document.body:null;var offsetParent=element.offsetParent||null;while(offsetParent===noOffsetParent&&element.nextElementSibling){offsetParent=(element=element.nextElementSibling).offsetParent}var nodeName=offsetParent&&offsetParent.nodeName;if(!nodeName||nodeName==="BODY"||nodeName==="HTML"){return element?element.ownerDocument.documentElement:document.documentElement}if(["TH","TD","TABLE"].indexOf(offsetParent.nodeName)!==-1&&getStyleComputedProperty(offsetParent,"position")==="static"){return getOffsetParent(offsetParent)}return offsetParent}function isOffsetContainer(element){var nodeName=element.nodeName;if(nodeName==="BODY"){return false}return nodeName==="HTML"||getOffsetParent(element.firstElementChild)===element}function getRoot(node){if(node.parentNode!==null){return getRoot(node.parentNode)}return node}function findCommonOffsetParent(element1,element2){if(!element1||!element1.nodeType||!element2||!element2.nodeType){return document.documentElement}var order=element1.compareDocumentPosition(element2)&Node.DOCUMENT_POSITION_FOLLOWING;var start=order?element1:element2;var end=order?element2:element1;var range=document.createRange();range.setStart(start,0);range.setEnd(end,0);var commonAncestorContainer=range.commonAncestorContainer;if(element1!==commonAncestorContainer&&element2!==commonAncestorContainer||start.contains(end)){if(isOffsetContainer(commonAncestorContainer)){return commonAncestorContainer}return getOffsetParent(commonAncestorContainer)}var element1root=getRoot(element1);if(element1root.host){return findCommonOffsetParent(element1root.host,element2)}else{return findCommonOffsetParent(element1,getRoot(element2).host)}}function getScroll(element){var side=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"top";var upperSide=side==="top"?"scrollTop":"scrollLeft";var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){var html=element.ownerDocument.documentElement;var scrollingElement=element.ownerDocument.scrollingElement||html;return scrollingElement[upperSide]}return element[upperSide]}function includeScroll(rect,element){var subtract=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;var scrollTop=getScroll(element,"top");var scrollLeft=getScroll(element,"left");var modifier=subtract?-1:1;rect.top+=scrollTop*modifier;rect.bottom+=scrollTop*modifier;rect.left+=scrollLeft*modifier;rect.right+=scrollLeft*modifier;return rect}function getBordersSize(styles,axis){var sideA=axis==="x"?"Left":"Top";var sideB=sideA==="Left"?"Right":"Bottom";return parseFloat(styles["border"+sideA+"Width"],10)+parseFloat(styles["border"+sideB+"Width"],10)}function getSize(axis,body,html,computedStyle){return Math.max(body["offset"+axis],body["scroll"+axis],html["client"+axis],html["offset"+axis],html["scroll"+axis],isIE(10)?parseInt(html["offset"+axis])+parseInt(computedStyle["margin"+(axis==="Height"?"Top":"Left")])+parseInt(computedStyle["margin"+(axis==="Height"?"Bottom":"Right")]):0)}function getWindowSizes(document){var body=document.body;var html=document.documentElement;var computedStyle=isIE(10)&&getComputedStyle(html);return{height:getSize("Height",body,html,computedStyle),width:getSize("Width",body,html,computedStyle)}}var classCallCheck=function(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function")}};var createClass=function(){function defineProperties(target,props){for(var i=0;i2&&arguments[2]!==undefined?arguments[2]:false;var isIE10=isIE(10);var isHTML=parent.nodeName==="HTML";var childrenRect=getBoundingClientRect(children);var parentRect=getBoundingClientRect(parent);var scrollParent=getScrollParent(children);var styles=getStyleComputedProperty(parent);var borderTopWidth=parseFloat(styles.borderTopWidth,10);var borderLeftWidth=parseFloat(styles.borderLeftWidth,10);if(fixedPosition&&isHTML){parentRect.top=Math.max(parentRect.top,0);parentRect.left=Math.max(parentRect.left,0)}var offsets=getClientRect({top:childrenRect.top-parentRect.top-borderTopWidth,left:childrenRect.left-parentRect.left-borderLeftWidth,width:childrenRect.width,height:childrenRect.height});offsets.marginTop=0;offsets.marginLeft=0;if(!isIE10&&isHTML){var marginTop=parseFloat(styles.marginTop,10);var marginLeft=parseFloat(styles.marginLeft,10);offsets.top-=borderTopWidth-marginTop;offsets.bottom-=borderTopWidth-marginTop;offsets.left-=borderLeftWidth-marginLeft;offsets.right-=borderLeftWidth-marginLeft;offsets.marginTop=marginTop;offsets.marginLeft=marginLeft}if(isIE10&&!fixedPosition?parent.contains(scrollParent):parent===scrollParent&&scrollParent.nodeName!=="BODY"){offsets=includeScroll(offsets,parent)}return offsets}function getViewportOffsetRectRelativeToArtbitraryNode(element){var excludeScroll=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var html=element.ownerDocument.documentElement;var relativeOffset=getOffsetRectRelativeToArbitraryNode(element,html);var width=Math.max(html.clientWidth,window.innerWidth||0);var height=Math.max(html.clientHeight,window.innerHeight||0);var scrollTop=!excludeScroll?getScroll(html):0;var scrollLeft=!excludeScroll?getScroll(html,"left"):0;var offset={top:scrollTop-relativeOffset.top+relativeOffset.marginTop,left:scrollLeft-relativeOffset.left+relativeOffset.marginLeft,width:width,height:height};return getClientRect(offset)}function isFixed(element){var nodeName=element.nodeName;if(nodeName==="BODY"||nodeName==="HTML"){return false}if(getStyleComputedProperty(element,"position")==="fixed"){return true}var parentNode=getParentNode(element);if(!parentNode){return false}return isFixed(parentNode)}function getFixedPositionOffsetParent(element){if(!element||!element.parentElement||isIE()){return document.documentElement}var el=element.parentElement;while(el&&getStyleComputedProperty(el,"transform")==="none"){el=el.parentElement}return el||document.documentElement}function getBoundaries(popper,reference,padding,boundariesElement){var fixedPosition=arguments.length>4&&arguments[4]!==undefined?arguments[4]:false;var boundaries={top:0,left:0};var offsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);if(boundariesElement==="viewport"){boundaries=getViewportOffsetRectRelativeToArtbitraryNode(offsetParent,fixedPosition)}else{var boundariesNode=void 0;if(boundariesElement==="scrollParent"){boundariesNode=getScrollParent(getParentNode(reference));if(boundariesNode.nodeName==="BODY"){boundariesNode=popper.ownerDocument.documentElement}}else if(boundariesElement==="window"){boundariesNode=popper.ownerDocument.documentElement}else{boundariesNode=boundariesElement}var offsets=getOffsetRectRelativeToArbitraryNode(boundariesNode,offsetParent,fixedPosition);if(boundariesNode.nodeName==="HTML"&&!isFixed(offsetParent)){var _getWindowSizes=getWindowSizes(popper.ownerDocument),height=_getWindowSizes.height,width=_getWindowSizes.width;boundaries.top+=offsets.top-offsets.marginTop;boundaries.bottom=height+offsets.top;boundaries.left+=offsets.left-offsets.marginLeft;boundaries.right=width+offsets.left}else{boundaries=offsets}}padding=padding||0;var isPaddingNumber=typeof padding==="number";boundaries.left+=isPaddingNumber?padding:padding.left||0;boundaries.top+=isPaddingNumber?padding:padding.top||0;boundaries.right-=isPaddingNumber?padding:padding.right||0;boundaries.bottom-=isPaddingNumber?padding:padding.bottom||0;return boundaries}function getArea(_ref){var width=_ref.width,height=_ref.height;return width*height}function computeAutoPlacement(placement,refRect,popper,reference,boundariesElement){var padding=arguments.length>5&&arguments[5]!==undefined?arguments[5]:0;if(placement.indexOf("auto")===-1){return placement}var boundaries=getBoundaries(popper,reference,padding,boundariesElement);var rects={top:{width:boundaries.width,height:refRect.top-boundaries.top},right:{width:boundaries.right-refRect.right,height:boundaries.height},bottom:{width:boundaries.width,height:boundaries.bottom-refRect.bottom},left:{width:refRect.left-boundaries.left,height:boundaries.height}};var sortedAreas=Object.keys(rects).map(function(key){return _extends({key:key},rects[key],{area:getArea(rects[key])})}).sort(function(a,b){return b.area-a.area});var filteredAreas=sortedAreas.filter(function(_ref2){var width=_ref2.width,height=_ref2.height;return width>=popper.clientWidth&&height>=popper.clientHeight});var computedPlacement=filteredAreas.length>0?filteredAreas[0].key:sortedAreas[0].key;var variation=placement.split("-")[1];return computedPlacement+(variation?"-"+variation:"")}function getReferenceOffsets(state,popper,reference){var fixedPosition=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var commonOffsetParent=fixedPosition?getFixedPositionOffsetParent(popper):findCommonOffsetParent(popper,reference);return getOffsetRectRelativeToArbitraryNode(reference,commonOffsetParent,fixedPosition)}function getOuterSizes(element){var window=element.ownerDocument.defaultView;var styles=window.getComputedStyle(element);var x=parseFloat(styles.marginTop||0)+parseFloat(styles.marginBottom||0);var y=parseFloat(styles.marginLeft||0)+parseFloat(styles.marginRight||0);var result={width:element.offsetWidth+y,height:element.offsetHeight+x};return result}function getOppositePlacement(placement){var hash={left:"right",right:"left",bottom:"top",top:"bottom"};return placement.replace(/left|right|bottom|top/g,function(matched){return hash[matched]})}function getPopperOffsets(popper,referenceOffsets,placement){placement=placement.split("-")[0];var popperRect=getOuterSizes(popper);var popperOffsets={width:popperRect.width,height:popperRect.height};var isHoriz=["right","left"].indexOf(placement)!==-1;var mainSide=isHoriz?"top":"left";var secondarySide=isHoriz?"left":"top";var measurement=isHoriz?"height":"width";var secondaryMeasurement=!isHoriz?"height":"width";popperOffsets[mainSide]=referenceOffsets[mainSide]+referenceOffsets[measurement]/2-popperRect[measurement]/2;if(placement===secondarySide){popperOffsets[secondarySide]=referenceOffsets[secondarySide]-popperRect[secondaryMeasurement]}else{popperOffsets[secondarySide]=referenceOffsets[getOppositePlacement(secondarySide)]}return popperOffsets}function find(arr,check){if(Array.prototype.find){return arr.find(check)}return arr.filter(check)[0]}function findIndex(arr,prop,value){if(Array.prototype.findIndex){return arr.findIndex(function(cur){return cur[prop]===value})}var match=find(arr,function(obj){return obj[prop]===value});return arr.indexOf(match)}function runModifiers(modifiers,data,ends){var modifiersToRun=ends===undefined?modifiers:modifiers.slice(0,findIndex(modifiers,"name",ends));modifiersToRun.forEach(function(modifier){if(modifier["function"]){console.warn("`modifier.function` is deprecated, use `modifier.fn`!")}var fn=modifier["function"]||modifier.fn;if(modifier.enabled&&isFunction(fn)){data.offsets.popper=getClientRect(data.offsets.popper);data.offsets.reference=getClientRect(data.offsets.reference);data=fn(data,modifier)}});return data}function update(){if(this.state.isDestroyed){return}var data={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:false,offsets:{}};data.offsets.reference=getReferenceOffsets(this.state,this.popper,this.reference,this.options.positionFixed);data.placement=computeAutoPlacement(this.options.placement,data.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding);data.originalPlacement=data.placement;data.positionFixed=this.options.positionFixed;data.offsets.popper=getPopperOffsets(this.popper,data.offsets.reference,data.placement);data.offsets.popper.position=this.options.positionFixed?"fixed":"absolute";data=runModifiers(this.modifiers,data);if(!this.state.isCreated){this.state.isCreated=true;this.options.onCreate(data)}else{this.options.onUpdate(data)}}function isModifierEnabled(modifiers,modifierName){return modifiers.some(function(_ref){var name=_ref.name,enabled=_ref.enabled;return enabled&&name===modifierName})}function getSupportedPropertyName(property){var prefixes=[false,"ms","Webkit","Moz","O"];var upperProp=property.charAt(0).toUpperCase()+property.slice(1);for(var i=0;ipopper[opSide]){data.offsets.popper[side]+=reference[side]+arrowElementSize-popper[opSide]}data.offsets.popper=getClientRect(data.offsets.popper);var center=reference[side]+reference[len]/2-arrowElementSize/2;var css=getStyleComputedProperty(data.instance.popper);var popperMarginSide=parseFloat(css["margin"+sideCapitalized],10);var popperBorderSide=parseFloat(css["border"+sideCapitalized+"Width"],10);var sideValue=center-data.offsets.popper[side]-popperMarginSide-popperBorderSide;sideValue=Math.max(Math.min(popper[len]-arrowElementSize,sideValue),0);data.arrowElement=arrowElement;data.offsets.arrow=(_data$offsets$arrow={},defineProperty(_data$offsets$arrow,side,Math.round(sideValue)),defineProperty(_data$offsets$arrow,altSide,""),_data$offsets$arrow);return data}function getOppositeVariation(variation){if(variation==="end"){return"start"}else if(variation==="start"){return"end"}return variation}var placements=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"];var validPlacements=placements.slice(3);function clockwise(placement){var counter=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;var index=validPlacements.indexOf(placement);var arr=validPlacements.slice(index+1).concat(validPlacements.slice(0,index));return counter?arr.reverse():arr}var BEHAVIORS={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function flip(data,options){if(isModifierEnabled(data.instance.modifiers,"inner")){return data}if(data.flipped&&data.placement===data.originalPlacement){return data}var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,options.boundariesElement,data.positionFixed);var placement=data.placement.split("-")[0];var placementOpposite=getOppositePlacement(placement);var variation=data.placement.split("-")[1]||"";var flipOrder=[];switch(options.behavior){case BEHAVIORS.FLIP:flipOrder=[placement,placementOpposite];break;case BEHAVIORS.CLOCKWISE:flipOrder=clockwise(placement);break;case BEHAVIORS.COUNTERCLOCKWISE:flipOrder=clockwise(placement,true);break;default:flipOrder=options.behavior}flipOrder.forEach(function(step,index){if(placement!==step||flipOrder.length===index+1){return data}placement=data.placement.split("-")[0];placementOpposite=getOppositePlacement(placement);var popperOffsets=data.offsets.popper;var refOffsets=data.offsets.reference;var floor=Math.floor;var overlapsRef=placement==="left"&&floor(popperOffsets.right)>floor(refOffsets.left)||placement==="right"&&floor(popperOffsets.left)floor(refOffsets.top)||placement==="bottom"&&floor(popperOffsets.top)floor(boundaries.right);var overflowsTop=floor(popperOffsets.top)floor(boundaries.bottom);var overflowsBoundaries=placement==="left"&&overflowsLeft||placement==="right"&&overflowsRight||placement==="top"&&overflowsTop||placement==="bottom"&&overflowsBottom;var isVertical=["top","bottom"].indexOf(placement)!==-1;var flippedVariation=!!options.flipVariations&&(isVertical&&variation==="start"&&overflowsLeft||isVertical&&variation==="end"&&overflowsRight||!isVertical&&variation==="start"&&overflowsTop||!isVertical&&variation==="end"&&overflowsBottom);if(overlapsRef||overflowsBoundaries||flippedVariation){data.flipped=true;if(overlapsRef||overflowsBoundaries){placement=flipOrder[index+1]}if(flippedVariation){variation=getOppositeVariation(variation)}data.placement=placement+(variation?"-"+variation:"");data.offsets.popper=_extends({},data.offsets.popper,getPopperOffsets(data.instance.popper,data.offsets.reference,data.placement));data=runModifiers(data.instance.modifiers,data,"flip")}});return data}function keepTogether(data){var _data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var placement=data.placement.split("-")[0];var floor=Math.floor;var isVertical=["top","bottom"].indexOf(placement)!==-1;var side=isVertical?"right":"bottom";var opSide=isVertical?"left":"top";var measurement=isVertical?"width":"height";if(popper[side]floor(reference[side])){data.offsets.popper[opSide]=floor(reference[side])}return data}function toValue(str,measurement,popperOffsets,referenceOffsets){var split=str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/);var value=+split[1];var unit=split[2];if(!value){return str}if(unit.indexOf("%")===0){var element=void 0;switch(unit){case"%p":element=popperOffsets;break;case"%":case"%r":default:element=referenceOffsets}var rect=getClientRect(element);return rect[measurement]/100*value}else if(unit==="vh"||unit==="vw"){var size=void 0;if(unit==="vh"){size=Math.max(document.documentElement.clientHeight,window.innerHeight||0)}else{size=Math.max(document.documentElement.clientWidth,window.innerWidth||0)}return size/100*value}else{return value}}function parseOffset(offset,popperOffsets,referenceOffsets,basePlacement){var offsets=[0,0];var useHeight=["right","left"].indexOf(basePlacement)!==-1;var fragments=offset.split(/(\+|\-)/).map(function(frag){return frag.trim()});var divider=fragments.indexOf(find(fragments,function(frag){return frag.search(/,|\s/)!==-1}));if(fragments[divider]&&fragments[divider].indexOf(",")===-1){console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.")}var splitRegex=/\s*,\s*|\s+/;var ops=divider!==-1?[fragments.slice(0,divider).concat([fragments[divider].split(splitRegex)[0]]),[fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider+1))]:[fragments];ops=ops.map(function(op,index){var measurement=(index===1?!useHeight:useHeight)?"height":"width";var mergeWithPrevious=false;return op.reduce(function(a,b){if(a[a.length-1]===""&&["+","-"].indexOf(b)!==-1){a[a.length-1]=b;mergeWithPrevious=true;return a}else if(mergeWithPrevious){a[a.length-1]+=b;mergeWithPrevious=false;return a}else{return a.concat(b)}},[]).map(function(str){return toValue(str,measurement,popperOffsets,referenceOffsets)})});ops.forEach(function(op,index){op.forEach(function(frag,index2){if(isNumeric(frag)){offsets[index]+=frag*(op[index2-1]==="-"?-1:1)}})});return offsets}function offset(data,_ref){var offset=_ref.offset;var placement=data.placement,_data$offsets=data.offsets,popper=_data$offsets.popper,reference=_data$offsets.reference;var basePlacement=placement.split("-")[0];var offsets=void 0;if(isNumeric(+offset)){offsets=[+offset,0]}else{offsets=parseOffset(offset,popper,reference,basePlacement)}if(basePlacement==="left"){popper.top+=offsets[0];popper.left-=offsets[1]}else if(basePlacement==="right"){popper.top+=offsets[0];popper.left+=offsets[1]}else if(basePlacement==="top"){popper.left+=offsets[0];popper.top-=offsets[1]}else if(basePlacement==="bottom"){popper.left+=offsets[0];popper.top+=offsets[1]}data.popper=popper;return data}function preventOverflow(data,options){var boundariesElement=options.boundariesElement||getOffsetParent(data.instance.popper);if(data.instance.reference===boundariesElement){boundariesElement=getOffsetParent(boundariesElement)}var transformProp=getSupportedPropertyName("transform");var popperStyles=data.instance.popper.style;var top=popperStyles.top,left=popperStyles.left,transform=popperStyles[transformProp];popperStyles.top="";popperStyles.left="";popperStyles[transformProp]="";var boundaries=getBoundaries(data.instance.popper,data.instance.reference,options.padding,boundariesElement,data.positionFixed);popperStyles.top=top;popperStyles.left=left;popperStyles[transformProp]=transform;options.boundaries=boundaries;var order=options.priority;var popper=data.offsets.popper;var check={primary:function primary(placement){var value=popper[placement];if(popper[placement]boundaries[placement]&&!options.escapeWithReference){value=Math.min(popper[mainSide],boundaries[placement]-(placement==="right"?popper.width:popper.height))}return defineProperty({},mainSide,value)}};order.forEach(function(placement){var side=["left","top"].indexOf(placement)!==-1?"primary":"secondary";popper=_extends({},popper,check[side](placement))});data.offsets.popper=popper;return data}function shift(data){var placement=data.placement;var basePlacement=placement.split("-")[0];var shiftvariation=placement.split("-")[1];if(shiftvariation){var _data$offsets=data.offsets,reference=_data$offsets.reference,popper=_data$offsets.popper;var isVertical=["bottom","top"].indexOf(basePlacement)!==-1;var side=isVertical?"left":"top";var measurement=isVertical?"width":"height";var shiftOffsets={start:defineProperty({},side,reference[side]),end:defineProperty({},side,reference[side]+reference[measurement]-popper[measurement])};data.offsets.popper=_extends({},popper,shiftOffsets[shiftvariation])}return data}function hide(data){if(!isModifierRequired(data.instance.modifiers,"hide","preventOverflow")){return data}var refRect=data.offsets.reference;var bound=find(data.instance.modifiers,function(modifier){return modifier.name==="preventOverflow"}).boundaries;if(refRect.bottombound.right||refRect.top>bound.bottom||refRect.right2&&arguments[2]!==undefined?arguments[2]:{};classCallCheck(this,Popper);this.scheduleUpdate=function(){return requestAnimationFrame(_this.update)};this.update=debounce(this.update.bind(this));this.options=_extends({},Popper.Defaults,options);this.state={isDestroyed:false,isCreated:false,scrollParents:[]};this.reference=reference&&reference.jquery?reference[0]:reference;this.popper=popper&&popper.jquery?popper[0]:popper;this.options.modifiers={};Object.keys(_extends({},Popper.Defaults.modifiers,options.modifiers)).forEach(function(name){_this.options.modifiers[name]=_extends({},Popper.Defaults.modifiers[name]||{},options.modifiers?options.modifiers[name]:{})});this.modifiers=Object.keys(this.options.modifiers).map(function(name){return _extends({name:name},_this.options.modifiers[name])}).sort(function(a,b){return a.order-b.order});this.modifiers.forEach(function(modifierOptions){if(modifierOptions.enabled&&isFunction(modifierOptions.onLoad)){modifierOptions.onLoad(_this.reference,_this.popper,_this.options,modifierOptions,_this.state)}});this.update();var eventsEnabled=this.options.eventsEnabled;if(eventsEnabled){this.enableEventListeners()}this.state.eventsEnabled=eventsEnabled}createClass(Popper,[{key:"update",value:function update$$1(){return update.call(this)}},{key:"destroy",value:function destroy$$1(){return destroy.call(this)}},{key:"enableEventListeners",value:function enableEventListeners$$1(){return enableEventListeners.call(this)}},{key:"disableEventListeners",value:function disableEventListeners$$1(){return disableEventListeners.call(this)}}]);return Popper}();Popper.Utils=(typeof window!=="undefined"?window:global).PopperUtils;Popper.placements=placements;Popper.Defaults=Defaults;return Popper}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js b/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js index a041d5c..1915d34 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js +++ b/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js @@ -1,3 +1 @@ -(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof module==="object"&&module.exports){module.exports=function(root,jQuery){if(jQuery===undefined){if(typeof window!=="undefined"){jQuery=require("jquery")}else{jQuery=require("jquery")(root)}}factory(jQuery);return jQuery}}else{factory(jQuery)}})(function(jQuery){var S2=function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd){var S2=jQuery.fn.select2.amd}var S2;(function(){if(!S2||!S2.requirejs){if(!S2){S2={}}else{require=S2}var requirejs,require,define;(function(undef){var main,req,makeMap,handlers,defined={},waiting={},config={},defining={},hasOwn=Object.prototype.hasOwnProperty,aps=[].slice,jsSuffixRegExp=/\.js$/;function hasProp(obj,prop){return hasOwn.call(obj,prop)}function normalize(name,baseName){var nameParts,nameSegment,mapValue,foundMap,lastIndex,foundI,foundStarMap,starI,i,j,part,normalizedBaseParts,baseParts=baseName&&baseName.split("/"),map=config.map,starMap=map&&map["*"]||{};if(name){name=name.split("/");lastIndex=name.length-1;if(config.nodeIdCompat&&jsSuffixRegExp.test(name[lastIndex])){name[lastIndex]=name[lastIndex].replace(jsSuffixRegExp,"")}if(name[0].charAt(0)==="."&&baseParts){normalizedBaseParts=baseParts.slice(0,baseParts.length-1);name=normalizedBaseParts.concat(name)}for(i=0;i0){name.splice(i-1,2);i-=2}}}name=name.join("/")}if((baseParts||starMap)&&map){nameParts=name.split("/");for(i=nameParts.length;i>0;i-=1){nameSegment=nameParts.slice(0,i).join("/");if(baseParts){for(j=baseParts.length;j>0;j-=1){mapValue=map[baseParts.slice(0,j).join("/")];if(mapValue){mapValue=mapValue[nameSegment];if(mapValue){foundMap=mapValue;foundI=i;break}}}}if(foundMap){break}if(!foundStarMap&&starMap&&starMap[nameSegment]){foundStarMap=starMap[nameSegment];starI=i}}if(!foundMap&&foundStarMap){foundMap=foundStarMap;foundI=starI}if(foundMap){nameParts.splice(0,foundI,foundMap);name=nameParts.join("/")}}return name}function makeRequire(relName,forceSync){return function(){var args=aps.call(arguments,0);if(typeof args[0]!=="string"&&args.length===1){args.push(null)}return req.apply(undef,args.concat([relName,forceSync]))}}function makeNormalize(relName){return function(name){return normalize(name,relName)}}function makeLoad(depName){return function(value){defined[depName]=value}}function callDep(name){if(hasProp(waiting,name)){var args=waiting[name];delete waiting[name];defining[name]=true;main.apply(undef,args)}if(!hasProp(defined,name)&&!hasProp(defining,name)){throw new Error("No "+name)}return defined[name]}function splitPrefix(name){var prefix,index=name?name.indexOf("!"):-1;if(index>-1){prefix=name.substring(0,index);name=name.substring(index+1,name.length)}return[prefix,name]}function makeRelParts(relName){return relName?splitPrefix(relName):[]}makeMap=function(name,relParts){var plugin,parts=splitPrefix(name),prefix=parts[0],relResourceName=relParts[1];name=parts[1];if(prefix){prefix=normalize(prefix,relResourceName);plugin=callDep(prefix)}if(prefix){if(plugin&&plugin.normalize){name=plugin.normalize(name,makeNormalize(relResourceName))}else{name=normalize(name,relResourceName)}}else{name=normalize(name,relResourceName);parts=splitPrefix(name);prefix=parts[0];name=parts[1];if(prefix){plugin=callDep(prefix)}}return{f:prefix?prefix+"!"+name:name,n:name,pr:prefix,p:plugin}};function makeConfig(name){return function(){return config&&config.config&&config.config[name]||{}}}handlers={require:function(name){return makeRequire(name)},exports:function(name){var e=defined[name];if(typeof e!=="undefined"){return e}else{return defined[name]={}}},module:function(name){return{id:name,uri:"",exports:defined[name],config:makeConfig(name)}}};main=function(name,deps,callback,relName){var cjsModule,depName,ret,map,i,relParts,args=[],callbackType=typeof callback,usingExports;relName=relName||name;relParts=makeRelParts(relName);if(callbackType==="undefined"||callbackType==="function"){deps=!deps.length&&callback.length?["require","exports","module"]:deps;for(i=0;i0){unshift.call(arguments,SuperClass.prototype.constructor);calledConstructor=DecoratorClass.prototype.constructor}calledConstructor.apply(this,arguments)}DecoratorClass.displayName=SuperClass.displayName;function ctr(){this.constructor=DecoratedClass}DecoratedClass.prototype=new ctr;for(var m=0;m":">",'"':""","'":"'","/":"/"};if(typeof markup!=="string"){return markup}return String(markup).replace(/[&<>"'\/\\]/g,function(match){return replaceMap[match]})};Utils.appendMany=function($element,$nodes){if($.fn.jquery.substr(0,3)==="1.7"){var $jqNodes=$();$.map($nodes,function(node){$jqNodes=$jqNodes.add(node)});$nodes=$jqNodes}$element.append($nodes)};Utils.__cache={};var id=0;Utils.GetUniqueElementId=function(element){var select2Id=element.getAttribute("data-select2-id");if(select2Id==null){if(element.id){select2Id=element.id;element.setAttribute("data-select2-id",select2Id)}else{element.setAttribute("data-select2-id",++id);select2Id=id.toString()}}return select2Id};Utils.StoreData=function(element,name,value){var id=Utils.GetUniqueElementId(element);if(!Utils.__cache[id]){Utils.__cache[id]={}}Utils.__cache[id][name]=value};Utils.GetData=function(element,name){var id=Utils.GetUniqueElementId(element);if(name){if(Utils.__cache[id]){if(Utils.__cache[id][name]!=null){return Utils.__cache[id][name]}return $(element).data(name)}return $(element).data(name)}else{return Utils.__cache[id]}};Utils.RemoveData=function(element){var id=Utils.GetUniqueElementId(element);if(Utils.__cache[id]!=null){delete Utils.__cache[id]}element.removeAttribute("data-select2-id")};return Utils});S2.define("select2/results",["jquery","./utils"],function($,Utils){function Results($element,options,dataAdapter){this.$element=$element;this.data=dataAdapter;this.options=options;Results.__super__.constructor.call(this)}Utils.Extend(Results,Utils.Observable);Results.prototype.render=function(){var $results=$('
        ');if(this.options.get("multiple")){$results.attr("aria-multiselectable","true")}this.$results=$results;return $results};Results.prototype.clear=function(){this.$results.empty()};Results.prototype.displayMessage=function(params){var escapeMarkup=this.options.get("escapeMarkup");this.clear();this.hideLoading();var $message=$('');var message=this.options.get("translations").get(params.message);$message.append(escapeMarkup(message(params.args)));$message[0].className+=" select2-results__message";this.$results.append($message)};Results.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()};Results.prototype.append=function(data){this.hideLoading();var $options=[];if(data.results==null||data.results.length===0){if(this.$results.children().length===0){this.trigger("results:message",{message:"noResults"})}return}data.results=this.sort(data.results);for(var d=0;d0){$selected.first().trigger("mouseenter")}else{$options.first().trigger("mouseenter")}this.ensureHighlightVisible()};Results.prototype.setClasses=function(){var self=this;this.data.current(function(selected){var selectedIds=$.map(selected,function(s){return s.id.toString()});var $options=self.$results.find(".select2-results__option[aria-selected]");$options.each(function(){var $option=$(this);var item=Utils.GetData(this,"data");var id=""+item.id;if(item.element!=null&&item.element.selected||item.element==null&&$.inArray(id,selectedIds)>-1){$option.attr("aria-selected","true")}else{$option.attr("aria-selected","false")}})})};Results.prototype.showLoading=function(params){this.hideLoading();var loadingMore=this.options.get("translations").get("searching");var loading={disabled:true,loading:true,text:loadingMore(params)};var $loading=this.option(loading);$loading.className+=" loading-results";this.$results.prepend($loading)};Results.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()};Results.prototype.option=function(data){var option=document.createElement("li");option.className="select2-results__option";var attrs={role:"option","aria-selected":"false"};var matches=window.Element.prototype.matches||window.Element.prototype.msMatchesSelector||window.Element.prototype.webkitMatchesSelector;if(data.element!=null&&matches.call(data.element,":disabled")||data.element==null&&data.disabled){delete attrs["aria-selected"];attrs["aria-disabled"]="true"}if(data.id==null){delete attrs["aria-selected"]}if(data._resultId!=null){option.id=data._resultId}if(data.title){option.title=data.title}if(data.children){attrs.role="group";attrs["aria-label"]=data.text;delete attrs["aria-selected"]}for(var attr in attrs){var val=attrs[attr];option.setAttribute(attr,val)}if(data.children){var $option=$(option);var label=document.createElement("strong");label.className="select2-results__group";var $label=$(label);this.template(data,label);var $children=[];for(var c=0;c",{"class":"select2-results__options select2-results__options--nested"});$childrenContainer.append($children);$option.append(label);$option.append($childrenContainer)}else{this.template(data,option)}Utils.StoreData(option,"data",data);return option};Results.prototype.bind=function(container,$container){var self=this;var id=container.id+"-results";this.$results.attr("id",id);container.on("results:all",function(params){self.clear();self.append(params.data);if(container.isOpen()){self.setClasses();self.highlightFirstItem()}});container.on("results:append",function(params){self.append(params.data);if(container.isOpen()){self.setClasses()}});container.on("query",function(params){self.hideMessages();self.showLoading(params)});container.on("select",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("unselect",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("open",function(){self.$results.attr("aria-expanded","true");self.$results.attr("aria-hidden","false");self.setClasses();self.ensureHighlightVisible()});container.on("close",function(){self.$results.attr("aria-expanded","false");self.$results.attr("aria-hidden","true");self.$results.removeAttr("aria-activedescendant")});container.on("results:toggle",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}$highlighted.trigger("mouseup")});container.on("results:select",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}var data=Utils.GetData($highlighted[0],"data");if($highlighted.attr("aria-selected")=="true"){self.trigger("close",{})}else{self.trigger("select",{data:data})}});container.on("results:previous",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);if(currentIndex<=0){return}var nextIndex=currentIndex-1;if($highlighted.length===0){nextIndex=0}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top;var nextTop=$next.offset().top;var nextOffset=self.$results.scrollTop()+(nextTop-currentOffset);if(nextIndex===0){self.$results.scrollTop(0)}else if(nextTop-currentOffset<0){self.$results.scrollTop(nextOffset)}});container.on("results:next",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var nextIndex=currentIndex+1;if(nextIndex>=$options.length){return}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top+self.$results.outerHeight(false);var nextBottom=$next.offset().top+$next.outerHeight(false);var nextOffset=self.$results.scrollTop()+nextBottom-currentOffset;if(nextIndex===0){self.$results.scrollTop(0)}else if(nextBottom>currentOffset){self.$results.scrollTop(nextOffset)}});container.on("results:focus",function(params){params.element.addClass("select2-results__option--highlighted")});container.on("results:message",function(params){self.displayMessage(params)});if($.fn.mousewheel){this.$results.on("mousewheel",function(e){var top=self.$results.scrollTop();var bottom=self.$results.get(0).scrollHeight-top+e.deltaY;var isAtTop=e.deltaY>0&&top-e.deltaY<=0;var isAtBottom=e.deltaY<0&&bottom<=self.$results.height();if(isAtTop){self.$results.scrollTop(0);e.preventDefault();e.stopPropagation()}else if(isAtBottom){self.$results.scrollTop(self.$results.get(0).scrollHeight-self.$results.height());e.preventDefault();e.stopPropagation()}})}this.$results.on("mouseup",".select2-results__option[aria-selected]",function(evt){var $this=$(this);var data=Utils.GetData(this,"data");if($this.attr("aria-selected")==="true"){if(self.options.get("multiple")){self.trigger("unselect",{originalEvent:evt,data:data})}else{self.trigger("close",{})}return}self.trigger("select",{originalEvent:evt,data:data})});this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(evt){var data=Utils.GetData(this,"data");self.getHighlightedResults().removeClass("select2-results__option--highlighted");self.trigger("results:focus",{data:data,element:$(this)})})};Results.prototype.getHighlightedResults=function(){var $highlighted=this.$results.find(".select2-results__option--highlighted");return $highlighted};Results.prototype.destroy=function(){this.$results.remove()};Results.prototype.ensureHighlightVisible=function(){var $highlighted=this.getHighlightedResults();if($highlighted.length===0){return}var $options=this.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var currentOffset=this.$results.offset().top;var nextTop=$highlighted.offset().top;var nextOffset=this.$results.scrollTop()+(nextTop-currentOffset);var offsetDelta=nextTop-currentOffset;nextOffset-=$highlighted.outerHeight(false)*2;if(currentIndex<=2){this.$results.scrollTop(0)}else if(offsetDelta>this.$results.outerHeight()||offsetDelta<0){this.$results.scrollTop(nextOffset)}};Results.prototype.template=function(result,container){var template=this.options.get("templateResult");var escapeMarkup=this.options.get("escapeMarkup");var content=template(result,container);if(content==null){container.style.display="none"}else if(typeof content==="string"){container.innerHTML=escapeMarkup(content)}else{$(container).append(content)}};return Results});S2.define("select2/keys",[],function(){var KEYS={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return KEYS});S2.define("select2/selection/base",["jquery","../utils","../keys"],function($,Utils,KEYS){function BaseSelection($element,options){this.$element=$element;this.options=options;BaseSelection.__super__.constructor.call(this)}Utils.Extend(BaseSelection,Utils.Observable);BaseSelection.prototype.render=function(){var $selection=$('");this._tabindex=0;if(Utils.GetData(this.$element[0],"old-tabindex")!=null){this._tabindex=Utils.GetData(this.$element[0],"old-tabindex")}else if(this.$element.attr("tabindex")!=null){this._tabindex=this.$element.attr("tabindex")}$selection.attr("title",this.$element.attr("title"));$selection.attr("tabindex",this._tabindex);$selection.attr("aria-disabled","false");this.$selection=$selection;return $selection};BaseSelection.prototype.bind=function(container,$container){var self=this;var resultsId=container.id+"-results";this.container=container;this.$selection.on("focus",function(evt){self.trigger("focus",evt)});this.$selection.on("blur",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",function(evt){self.trigger("keypress",evt);if(evt.which===KEYS.SPACE){evt.preventDefault()}});container.on("results:focus",function(params){self.$selection.attr("aria-activedescendant",params.data._resultId)});container.on("selection:update",function(params){self.update(params.data)});container.on("open",function(){self.$selection.attr("aria-expanded","true");self.$selection.attr("aria-owns",resultsId);self._attachCloseHandler(container)});container.on("close",function(){self.$selection.attr("aria-expanded","false");self.$selection.removeAttr("aria-activedescendant");self.$selection.removeAttr("aria-owns");self.$selection.trigger("focus");self._detachCloseHandler(container)});container.on("enable",function(){self.$selection.attr("tabindex",self._tabindex);self.$selection.attr("aria-disabled","false")});container.on("disable",function(){self.$selection.attr("tabindex","-1");self.$selection.attr("aria-disabled","true")})};BaseSelection.prototype._handleBlur=function(evt){var self=this;window.setTimeout(function(){if(document.activeElement==self.$selection[0]||$.contains(self.$selection[0],document.activeElement)){return}self.trigger("blur",evt)},1)};BaseSelection.prototype._attachCloseHandler=function(container){$(document.body).on("mousedown.select2."+container.id,function(e){var $target=$(e.target);var $select=$target.closest(".select2");var $all=$(".select2.select2-container--open");$all.each(function(){if(this==$select[0]){return}var $element=Utils.GetData(this,"element");$element.select2("close")})})};BaseSelection.prototype._detachCloseHandler=function(container){$(document.body).off("mousedown.select2."+container.id)};BaseSelection.prototype.position=function($selection,$container){var $selectionContainer=$container.find(".selection");$selectionContainer.append($selection)};BaseSelection.prototype.destroy=function(){this._detachCloseHandler(this.container)};BaseSelection.prototype.update=function(data){throw new Error("The `update` method must be defined in child classes.")};return BaseSelection});S2.define("select2/selection/single",["jquery","./base","../utils","../keys"],function($,BaseSelection,Utils,KEYS){function SingleSelection(){SingleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(SingleSelection,BaseSelection);SingleSelection.prototype.render=function(){var $selection=SingleSelection.__super__.render.call(this);$selection.addClass("select2-selection--single");$selection.html(''+''+''+"");return $selection};SingleSelection.prototype.bind=function(container,$container){var self=this;SingleSelection.__super__.bind.apply(this,arguments);var id=container.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",id).attr("role","textbox").attr("aria-readonly","true");this.$selection.attr("aria-labelledby",id);this.$selection.on("mousedown",function(evt){if(evt.which!==1){return}self.trigger("toggle",{originalEvent:evt})});this.$selection.on("focus",function(evt){});this.$selection.on("blur",function(evt){});container.on("focus",function(evt){if(!container.isOpen()){self.$selection.trigger("focus")}})};SingleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};SingleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};SingleSelection.prototype.selectionContainer=function(){return $("")};SingleSelection.prototype.update=function(data){if(data.length===0){this.clear();return}var selection=data[0];var $rendered=this.$selection.find(".select2-selection__rendered");var formatted=this.display(selection,$rendered);$rendered.empty().append(formatted);var title=selection.title||selection.text;if(title){$rendered.attr("title",title)}else{$rendered.removeAttr("title")}};return SingleSelection});S2.define("select2/selection/multiple",["jquery","./base","../utils"],function($,BaseSelection,Utils){function MultipleSelection($element,options){MultipleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(MultipleSelection,BaseSelection);MultipleSelection.prototype.render=function(){var $selection=MultipleSelection.__super__.render.call(this);$selection.addClass("select2-selection--multiple");$selection.html('
          ');return $selection};MultipleSelection.prototype.bind=function(container,$container){var self=this;MultipleSelection.__super__.bind.apply(this,arguments);this.$selection.on("click",function(evt){self.trigger("toggle",{originalEvent:evt})});this.$selection.on("click",".select2-selection__choice__remove",function(evt){if(self.options.get("disabled")){return}var $remove=$(this);var $selection=$remove.parent();var data=Utils.GetData($selection[0],"data");self.trigger("unselect",{originalEvent:evt,data:data})})};MultipleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};MultipleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};MultipleSelection.prototype.selectionContainer=function(){var $container=$('
        • '+''+"×"+""+"
        • ");return $container};MultipleSelection.prototype.update=function(data){this.clear();if(data.length===0){return}var $selections=[];for(var d=0;d1;if(multipleSelections||singlePlaceholder){return decorated.call(this,data)}this.clear();var $placeholder=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append($placeholder)};return Placeholder});S2.define("select2/selection/allowClear",["jquery","../keys","../utils"],function($,KEYS,Utils){function AllowClear(){}AllowClear.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);if(this.placeholder==null){if(this.options.get("debug")&&window.console&&console.error){console.error("Select2: The `allowClear` option should be used in combination "+"with the `placeholder` option.")}}this.$selection.on("mousedown",".select2-selection__clear",function(evt){self._handleClear(evt)});container.on("keypress",function(evt){self._handleKeyboardClear(evt,container)})};AllowClear.prototype._handleClear=function(_,evt){if(this.options.get("disabled")){return}var $clear=this.$selection.find(".select2-selection__clear");if($clear.length===0){return}evt.stopPropagation();var data=Utils.GetData($clear[0],"data");var previousVal=this.$element.val();this.$element.val(this.placeholder.id);var unselectData={data:data};this.trigger("clear",unselectData);if(unselectData.prevented){this.$element.val(previousVal);return}for(var d=0;d0||data.length===0){return}var removeAll=this.options.get("translations").get("removeAllItems");var $remove=$(''+"×"+"");Utils.StoreData($remove[0],"data",data);this.$selection.find(".select2-selection__rendered").prepend($remove)};return AllowClear});S2.define("select2/selection/search",["jquery","../utils","../keys"],function($,Utils,KEYS){function Search(decorated,$element,options){decorated.call(this,$element,options)}Search.prototype.render=function(decorated){var $search=$('"); -this.$searchContainer=$search;this.$search=$search.find("input");var $rendered=decorated.call(this);this._transferTabIndex();return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);container.on("open",function(){self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus")});container.on("close",function(){self.$search.val("");self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.trigger("focus")});container.on("enable",function(){self.$search.prop("disabled",false);self._transferTabIndex()});container.on("disable",function(){self.$search.prop("disabled",true)});container.on("focus",function(evt){self.$search.trigger("focus")});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}});this.$selection.on("focusin",".select2-search--inline",function(evt){self.trigger("focus",evt)});this.$selection.on("focusout",".select2-search--inline",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",".select2-search--inline",function(evt){evt.stopPropagation();self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented();var key=evt.which;if(key===KEYS.BACKSPACE&&self.$search.val()===""){var $previousChoice=self.$searchContainer.prev(".select2-selection__choice");if($previousChoice.length>0){var item=Utils.GetData($previousChoice[0],"data");self.searchRemoveChoice(item);evt.preventDefault()}}});this.$selection.on("click",".select2-search--inline",function(evt){if(self.$search.val()){evt.stopPropagation()}});var msie=document.documentMode;var disableInputEvents=msie&&msie<=11;this.$selection.on("input.searchcheck",".select2-search--inline",function(evt){if(disableInputEvents){self.$selection.off("input.search input.searchcheck");return}self.$selection.off("keyup.search")});this.$selection.on("keyup.search input.search",".select2-search--inline",function(evt){if(disableInputEvents&&evt.type==="input"){self.$selection.off("input.search input.searchcheck");return}var key=evt.which;if(key==KEYS.SHIFT||key==KEYS.CTRL||key==KEYS.ALT){return}if(key==KEYS.TAB){return}self.handleSearch(evt)})};Search.prototype._transferTabIndex=function(decorated){this.$search.attr("tabindex",this.$selection.attr("tabindex"));this.$selection.attr("tabindex","-1")};Search.prototype.createPlaceholder=function(decorated,placeholder){this.$search.attr("placeholder",placeholder.text)};Search.prototype.update=function(decorated,data){var searchHadFocus=this.$search[0]==document.activeElement;this.$search.attr("placeholder","");decorated.call(this,data);this.$selection.find(".select2-selection__rendered").append(this.$searchContainer);this.resizeSearch();if(searchHadFocus){this.$search.trigger("focus")}};Search.prototype.handleSearch=function(){this.resizeSearch();if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.searchRemoveChoice=function(decorated,item){this.trigger("unselect",{data:item});this.$search.val(item.text);this.handleSearch()};Search.prototype.resizeSearch=function(){this.$search.css("width","25px");var width="";if(this.$search.attr("placeholder")!==""){width=this.$selection.find(".select2-selection__rendered").width()}else{var minimumWidth=this.$search.val().length+1;width=minimumWidth*.75+"em"}this.$search.css("width",width)};return Search});S2.define("select2/selection/eventRelay",["jquery"],function($){function EventRelay(){}EventRelay.prototype.bind=function(decorated,container,$container){var self=this;var relayEvents=["open","opening","close","closing","select","selecting","unselect","unselecting","clear","clearing"];var preventableEvents=["opening","closing","selecting","unselecting","clearing"];decorated.call(this,container,$container);container.on("*",function(name,params){if($.inArray(name,relayEvents)===-1){return}params=params||{};var evt=$.Event("select2:"+name,{params:params});self.$element.trigger(evt);if($.inArray(name,preventableEvents)===-1){return}params.prevented=evt.isDefaultPrevented()})};return EventRelay});S2.define("select2/translation",["jquery","require"],function($,require){function Translation(dict){this.dict=dict||{}}Translation.prototype.all=function(){return this.dict};Translation.prototype.get=function(key){return this.dict[key]};Translation.prototype.extend=function(translation){this.dict=$.extend({},translation.all(),this.dict)};Translation._cache={};Translation.loadPath=function(path){if(!(path in Translation._cache)){var translations=require(path);Translation._cache[path]=translations}return new Translation(Translation._cache[path])};return Translation});S2.define("select2/diacritics",[],function(){var diacritics={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Œ":"OE","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","œ":"oe","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ώ":"ω","ς":"σ","’":"'"};return diacritics});S2.define("select2/data/base",["../utils"],function(Utils){function BaseAdapter($element,options){BaseAdapter.__super__.constructor.call(this)}Utils.Extend(BaseAdapter,Utils.Observable);BaseAdapter.prototype.current=function(callback){throw new Error("The `current` method must be defined in child classes.")};BaseAdapter.prototype.query=function(params,callback){throw new Error("The `query` method must be defined in child classes.")};BaseAdapter.prototype.bind=function(container,$container){};BaseAdapter.prototype.destroy=function(){};BaseAdapter.prototype.generateResultId=function(container,data){var id=container.id+"-result-";id+=Utils.generateChars(4);if(data.id!=null){id+="-"+data.id.toString()}else{id+="-"+Utils.generateChars(4)}return id};return BaseAdapter});S2.define("select2/data/select",["./base","../utils","jquery"],function(BaseAdapter,Utils,$){function SelectAdapter($element,options){this.$element=$element;this.options=options;SelectAdapter.__super__.constructor.call(this)}Utils.Extend(SelectAdapter,BaseAdapter);SelectAdapter.prototype.current=function(callback){var data=[];var self=this;this.$element.find(":selected").each(function(){var $option=$(this);var option=self.item($option);data.push(option)});callback(data)};SelectAdapter.prototype.select=function(data){var self=this;data.selected=true;if($(data.element).is("option")){data.element.selected=true;this.$element.trigger("change");return}if(this.$element.prop("multiple")){this.current(function(currentData){var val=[];data=[data];data.push.apply(data,currentData);for(var d=0;d=0){var $existingOption=$existing.filter(onlyItem(item));var existingData=this.item($existingOption);var newData=$.extend(true,{},item,existingData);var $newOption=this.option(newData);$existingOption.replaceWith($newOption);continue}var $option=this.option(item);if(item.children){var $children=this.convertToOptions(item.children);Utils.appendMany($option,$children)}$options.push($option)}return $options};return ArrayAdapter});S2.define("select2/data/ajax",["./array","../utils","jquery"],function(ArrayAdapter,Utils,$){function AjaxAdapter($element,options){this.ajaxOptions=this._applyDefaults(options.get("ajax"));if(this.ajaxOptions.processResults!=null){this.processResults=this.ajaxOptions.processResults}AjaxAdapter.__super__.constructor.call(this,$element,options)}Utils.Extend(AjaxAdapter,ArrayAdapter);AjaxAdapter.prototype._applyDefaults=function(options){var defaults={data:function(params){return $.extend({},params,{q:params.term})},transport:function(params,success,failure){var $request=$.ajax(params);$request.then(success);$request.fail(failure);return $request}};return $.extend({},defaults,options,true)};AjaxAdapter.prototype.processResults=function(results){return results};AjaxAdapter.prototype.query=function(params,callback){var matches=[];var self=this;if(this._request!=null){if($.isFunction(this._request.abort)){this._request.abort()}this._request=null}var options=$.extend({type:"GET"},this.ajaxOptions);if(typeof options.url==="function"){options.url=options.url.call(this.$element,params)}if(typeof options.data==="function"){options.data=options.data.call(this.$element,params)}function request(){var $request=options.transport(options,function(data){var results=self.processResults(data,params);if(self.options.get("debug")&&window.console&&console.error){if(!results||!results.results||!$.isArray(results.results)){console.error("Select2: The AJAX results did not return an array in the "+"`results` key of the response.")}}callback(results)},function(){if("status"in $request&&($request.status===0||$request.status==="0")){return}self.trigger("results:message",{message:"errorLoading"})});self._request=$request}if(this.ajaxOptions.delay&¶ms.term!=null){if(this._queryTimeout){window.clearTimeout(this._queryTimeout)}this._queryTimeout=window.setTimeout(request,this.ajaxOptions.delay)}else{request()}};return AjaxAdapter});S2.define("select2/data/tags",["jquery"],function($){function Tags(decorated,$element,options){var tags=options.get("tags");var createTag=options.get("createTag");if(createTag!==undefined){this.createTag=createTag}var insertTag=options.get("insertTag");if(insertTag!==undefined){this.insertTag=insertTag}decorated.call(this,$element,options);if($.isArray(tags)){for(var t=0;t0&¶ms.term.length>this.maximumInputLength){this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:params.term,params:params}});return}decorated.call(this,params,callback)};return MaximumInputLength});S2.define("select2/data/maximumSelectionLength",[],function(){function MaximumSelectionLength(decorated,$e,options){this.maximumSelectionLength=options.get("maximumSelectionLength");decorated.call(this,$e,options)}MaximumSelectionLength.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("select",function(){self._checkIfMaximumSelected()})};MaximumSelectionLength.prototype.query=function(decorated,params,callback){var self=this;this._checkIfMaximumSelected(function(){decorated.call(self,params,callback)})};MaximumSelectionLength.prototype._checkIfMaximumSelected=function(_,successCallback){var self=this;this.current(function(currentData){var count=currentData!=null?currentData.length:0;if(self.maximumSelectionLength>0&&count>=self.maximumSelectionLength){self.trigger("results:message",{message:"maximumSelected",args:{maximum:self.maximumSelectionLength}});return}if(successCallback){successCallback()}})};return MaximumSelectionLength});S2.define("select2/dropdown",["jquery","./utils"],function($,Utils){function Dropdown($element,options){this.$element=$element;this.options=options;Dropdown.__super__.constructor.call(this)}Utils.Extend(Dropdown,Utils.Observable);Dropdown.prototype.render=function(){var $dropdown=$(''+''+"");$dropdown.attr("dir",this.options.get("dir"));this.$dropdown=$dropdown;return $dropdown};Dropdown.prototype.bind=function(){};Dropdown.prototype.position=function($dropdown,$container){};Dropdown.prototype.destroy=function(){this.$dropdown.remove()};return Dropdown});S2.define("select2/dropdown/search",["jquery","../utils"],function($,Utils){function Search(){}Search.prototype.render=function(decorated){var $rendered=decorated.call(this);var $search=$(''+''+"");this.$searchContainer=$search;this.$search=$search.find("input");$rendered.prepend($search);return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);this.$search.on("keydown",function(evt){self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented()});this.$search.on("input",function(evt){$(this).off("keyup")});this.$search.on("keyup input",function(evt){self.handleSearch(evt)});container.on("open",function(){self.$search.attr("tabindex",0);self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus");window.setTimeout(function(){self.$search.trigger("focus")},0)});container.on("close",function(){self.$search.attr("tabindex",-1);self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.val("");self.$search.trigger("blur")});container.on("focus",function(){if(!container.isOpen()){self.$search.trigger("focus")}});container.on("results:all",function(params){if(params.query.term==null||params.query.term===""){var showSearch=self.showSearch(params);if(showSearch){self.$searchContainer.removeClass("select2-search--hide")}else{self.$searchContainer.addClass("select2-search--hide")}}});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}})};Search.prototype.handleSearch=function(evt){if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.showSearch=function(_,params){return true};return Search});S2.define("select2/dropdown/hidePlaceholder",[],function(){function HidePlaceholder(decorated,$element,options,dataAdapter){this.placeholder=this.normalizePlaceholder(options.get("placeholder"));decorated.call(this,$element,options,dataAdapter)}HidePlaceholder.prototype.append=function(decorated,data){data.results=this.removePlaceholder(data.results);decorated.call(this,data)};HidePlaceholder.prototype.normalizePlaceholder=function(_,placeholder){if(typeof placeholder==="string"){placeholder={id:"",text:placeholder}}return placeholder};HidePlaceholder.prototype.removePlaceholder=function(_,data){var modifiedData=data.slice(0);for(var d=data.length-1;d>=0;d--){var item=data[d];if(this.placeholder.id===item.id){modifiedData.splice(d,1)}}return modifiedData};return HidePlaceholder});S2.define("select2/dropdown/infiniteScroll",["jquery"],function($){function InfiniteScroll(decorated,$element,options,dataAdapter){this.lastParams={};decorated.call(this,$element,options,dataAdapter);this.$loadingMore=this.createLoadingMore();this.loading=false}InfiniteScroll.prototype.append=function(decorated,data){this.$loadingMore.remove();this.loading=false;decorated.call(this,data);if(this.showLoadingMore(data)){this.$results.append(this.$loadingMore);this.loadMoreIfNeeded()}};InfiniteScroll.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("query",function(params){self.lastParams=params;self.loading=true});container.on("query:append",function(params){self.lastParams=params;self.loading=true});this.$results.on("scroll",this.loadMoreIfNeeded.bind(this))};InfiniteScroll.prototype.loadMoreIfNeeded=function(){var isLoadMoreVisible=$.contains(document.documentElement,this.$loadingMore[0]);if(this.loading||!isLoadMoreVisible){return}var currentOffset=this.$results.offset().top+this.$results.outerHeight(false);var loadingMoreOffset=this.$loadingMore.offset().top+this.$loadingMore.outerHeight(false);if(currentOffset+50>=loadingMoreOffset){this.loadMore()}};InfiniteScroll.prototype.loadMore=function(){this.loading=true;var params=$.extend({},{page:1},this.lastParams);params.page++;this.trigger("query:append",params)};InfiniteScroll.prototype.showLoadingMore=function(_,data){return data.pagination&&data.pagination.more};InfiniteScroll.prototype.createLoadingMore=function(){var $option=$("
        • ');var message=this.options.get("translations").get("loadingMore");$option.html(message(this.lastParams));return $option};return InfiniteScroll});S2.define("select2/dropdown/attachBody",["jquery","../utils"],function($,Utils){function AttachBody(decorated,$element,options){this.$dropdownParent=$(options.get("dropdownParent")||document.body);decorated.call(this,$element,options)}AttachBody.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("open",function(){self._showDropdown();self._attachPositioningHandler(container);self._bindContainerResultHandlers(container)});container.on("close",function(){self._hideDropdown();self._detachPositioningHandler(container)});this.$dropdownContainer.on("mousedown",function(evt){evt.stopPropagation()})};AttachBody.prototype.destroy=function(decorated){decorated.call(this);this.$dropdownContainer.remove()};AttachBody.prototype.position=function(decorated,$dropdown,$container){ -$dropdown.attr("class",$container.attr("class"));$dropdown.removeClass("select2");$dropdown.addClass("select2-container--open");$dropdown.css({position:"absolute",top:-999999});this.$container=$container};AttachBody.prototype.render=function(decorated){var $container=$("");var $dropdown=decorated.call(this);$container.append($dropdown);this.$dropdownContainer=$container;return $container};AttachBody.prototype._hideDropdown=function(decorated){this.$dropdownContainer.detach()};AttachBody.prototype._bindContainerResultHandlers=function(decorated,container){if(this._containerResultsHandlersBound){return}var self=this;container.on("results:all",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:append",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:message",function(){self._positionDropdown();self._resizeDropdown()});container.on("select",function(){self._positionDropdown();self._resizeDropdown()});container.on("unselect",function(){self._positionDropdown();self._resizeDropdown()});this._containerResultsHandlersBound=true};AttachBody.prototype._attachPositioningHandler=function(decorated,container){var self=this;var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.each(function(){Utils.StoreData(this,"select2-scroll-position",{x:$(this).scrollLeft(),y:$(this).scrollTop()})});$watchers.on(scrollEvent,function(ev){var position=Utils.GetData(this,"select2-scroll-position");$(this).scrollTop(position.y)});$(window).on(scrollEvent+" "+resizeEvent+" "+orientationEvent,function(e){self._positionDropdown();self._resizeDropdown()})};AttachBody.prototype._detachPositioningHandler=function(decorated,container){var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.off(scrollEvent);$(window).off(scrollEvent+" "+resizeEvent+" "+orientationEvent)};AttachBody.prototype._positionDropdown=function(){var $window=$(window);var isCurrentlyAbove=this.$dropdown.hasClass("select2-dropdown--above");var isCurrentlyBelow=this.$dropdown.hasClass("select2-dropdown--below");var newDirection=null;var offset=this.$container.offset();offset.bottom=offset.top+this.$container.outerHeight(false);var container={height:this.$container.outerHeight(false)};container.top=offset.top;container.bottom=offset.top+container.height;var dropdown={height:this.$dropdown.outerHeight(false)};var viewport={top:$window.scrollTop(),bottom:$window.scrollTop()+$window.height()};var enoughRoomAbove=viewport.topoffset.bottom+dropdown.height;var css={left:offset.left,top:container.bottom};var $offsetParent=this.$dropdownParent;if($offsetParent.css("position")==="static"){$offsetParent=$offsetParent.offsetParent()}var parentOffset={top:0,left:0};if($.contains(document.body,$offsetParent[0])){parentOffset=$offsetParent.offset()}css.top-=parentOffset.top;css.left-=parentOffset.left;if(!isCurrentlyAbove&&!isCurrentlyBelow){newDirection="below"}if(!enoughRoomBelow&&enoughRoomAbove&&!isCurrentlyAbove){newDirection="above"}else if(!enoughRoomAbove&&enoughRoomBelow&&isCurrentlyAbove){newDirection="below"}if(newDirection=="above"||isCurrentlyAbove&&newDirection!=="below"){css.top=container.top-parentOffset.top-dropdown.height}if(newDirection!=null){this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+newDirection);this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+newDirection)}this.$dropdownContainer.css(css)};AttachBody.prototype._resizeDropdown=function(){var css={width:this.$container.outerWidth(false)+"px"};if(this.options.get("dropdownAutoWidth")){css.minWidth=css.width;css.position="relative";css.width="auto"}this.$dropdown.css(css)};AttachBody.prototype._showDropdown=function(decorated){this.$dropdownContainer.appendTo(this.$dropdownParent);this._positionDropdown();this._resizeDropdown()};return AttachBody});S2.define("select2/dropdown/minimumResultsForSearch",[],function(){function countResults(data){var count=0;for(var d=0;d0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MinimumInputLength)}if(options.maximumInputLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumInputLength)}if(options.maximumSelectionLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumSelectionLength)}if(options.tags){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tags)}if(options.tokenSeparators!=null||options.tokenizer!=null){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tokenizer)}if(options.query!=null){var Query=require(options.amdBase+"compat/query");options.dataAdapter=Utils.Decorate(options.dataAdapter,Query)}if(options.initSelection!=null){var InitSelection=require(options.amdBase+"compat/initSelection");options.dataAdapter=Utils.Decorate(options.dataAdapter,InitSelection)}}if(options.resultsAdapter==null){options.resultsAdapter=ResultsList;if(options.ajax!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,InfiniteScroll)}if(options.placeholder!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,HidePlaceholder)}if(options.selectOnClose){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,SelectOnClose)}}if(options.dropdownAdapter==null){if(options.multiple){options.dropdownAdapter=Dropdown}else{var SearchableDropdown=Utils.Decorate(Dropdown,DropdownSearch);options.dropdownAdapter=SearchableDropdown}if(options.minimumResultsForSearch!==0){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,MinimumResultsForSearch)}if(options.closeOnSelect){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,CloseOnSelect)}if(options.dropdownCssClass!=null||options.dropdownCss!=null||options.adaptDropdownCssClass!=null){var DropdownCSS=require(options.amdBase+"compat/dropdownCss");options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,DropdownCSS)}options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,AttachBody)}if(options.selectionAdapter==null){if(options.multiple){options.selectionAdapter=MultipleSelection}else{options.selectionAdapter=SingleSelection}if(options.placeholder!=null){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,Placeholder)}if(options.allowClear){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,AllowClear)}if(options.multiple){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,SelectionSearch)}if(options.containerCssClass!=null||options.containerCss!=null||options.adaptContainerCssClass!=null){var ContainerCSS=require(options.amdBase+"compat/containerCss");options.selectionAdapter=Utils.Decorate(options.selectionAdapter,ContainerCSS)}options.selectionAdapter=Utils.Decorate(options.selectionAdapter,EventRelay)}options.language=this._resolveLanguage(options.language);options.language.push("en");var uniqueLanguages=[];for(var l=0;l0){var match=$.extend(true,{},data);for(var c=data.children.length-1;c>=0;c--){var child=data.children[c];var matches=matcher(params,child);if(matches==null){match.children.splice(c,1)}}if(match.children.length>0){return match}return matcher(params,match)}var original=stripDiacritics(data.text).toUpperCase();var term=stripDiacritics(params.term).toUpperCase();if(original.indexOf(term)>-1){return data}return null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:true,debug:false,dropdownAutoWidth:false,escapeMarkup:Utils.escapeMarkup,language:{},matcher:matcher,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:false,scrollAfterSelect:false,sorter:function(data){return data},templateResult:function(result){return result.text},templateSelection:function(selection){return selection.text},theme:"default",width:"resolve"}};Defaults.prototype.applyFromElement=function(options,$element){var optionLanguage=options.language;var defaultLanguage=this.defaults.language;var elementLanguage=$element.prop("lang");var parentLanguage=$element.closest("[lang]").prop("lang");var languages=Array.prototype.concat.call(this._resolveLanguage(elementLanguage),this._resolveLanguage(optionLanguage),this._resolveLanguage(defaultLanguage),this._resolveLanguage(parentLanguage));options.language=languages;return options};Defaults.prototype._resolveLanguage=function(language){if(!language){return[]}if($.isEmptyObject(language)){return[]}if($.isPlainObject(language)){return[language]}var languages;if(!$.isArray(language)){languages=[language]}else{languages=language}var resolvedLanguages=[];for(var l=0;l0){var languageParts=languages[l].split("-");var baseLanguage=languageParts[0];resolvedLanguages.push(baseLanguage)}}return resolvedLanguages};Defaults.prototype._processTranslations=function(languages,debug){var translations=new Translation;for(var l=0;l-1){continue}if($.isPlainObject(this.options[key])){$.extend(this.options[key],data[key])}else{this.options[key]=data[key]}}return this};Options.prototype.get=function(key){return this.options[key]};Options.prototype.set=function(key,val){this.options[key]=val};return Options});S2.define("select2/core",["jquery","./options","./utils","./keys"],function($,Options,Utils,KEYS){var Select2=function($element,options){if(Utils.GetData($element[0],"select2")!=null){Utils.GetData($element[0],"select2").destroy()}this.$element=$element;this.id=this._generateId($element);options=options||{};this.options=new Options(options,$element);Select2.__super__.constructor.call(this);var tabindex=$element.attr("tabindex")||0;Utils.StoreData($element[0],"old-tabindex",tabindex);$element.attr("tabindex","-1");var DataAdapter=this.options.get("dataAdapter");this.dataAdapter=new DataAdapter($element,this.options);var $container=this.render();this._placeContainer($container);var SelectionAdapter=this.options.get("selectionAdapter");this.selection=new SelectionAdapter($element,this.options);this.$selection=this.selection.render();this.selection.position(this.$selection,$container);var DropdownAdapter=this.options.get("dropdownAdapter");this.dropdown=new DropdownAdapter($element,this.options);this.$dropdown=this.dropdown.render();this.dropdown.position(this.$dropdown,$container);var ResultsAdapter=this.options.get("resultsAdapter");this.results=new ResultsAdapter($element,this.options,this.dataAdapter);this.$results=this.results.render();this.results.position(this.$results,this.$dropdown);var self=this;this._bindAdapters();this._registerDomEvents();this._registerDataEvents();this._registerSelectionEvents();this._registerDropdownEvents();this._registerResultsEvents();this._registerEvents();this.dataAdapter.current(function(initialData){self.trigger("selection:update",{data:initialData})});$element.addClass("select2-hidden-accessible");$element.attr("aria-hidden","true");this._syncAttributes();Utils.StoreData($element[0],"select2",this);$element.data("select2",this)};Utils.Extend(Select2,Utils.Observable);Select2.prototype._generateId=function($element){var id="";if($element.attr("id")!=null){id=$element.attr("id")}else if($element.attr("name")!=null){id=$element.attr("name")+"-"+Utils.generateChars(2)}else{id=Utils.generateChars(4)}id=id.replace(/(:|\.|\[|\]|,)/g,"");id="select2-"+id;return id};Select2.prototype._placeContainer=function($container){$container.insertAfter(this.$element);var width=this._resolveWidth(this.$element,this.options.get("width"));if(width!=null){$container.css("width",width)}};Select2.prototype._resolveWidth=function($element,method){var WIDTH=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if(method=="resolve"){var styleWidth=this._resolveWidth($element,"style");if(styleWidth!=null){return styleWidth}return this._resolveWidth($element,"element")}if(method=="element"){var elementWidth=$element.outerWidth(false);if(elementWidth<=0){return"auto"}return elementWidth+"px"}if(method=="style"){var style=$element.attr("style");if(typeof style!=="string"){return null}var attrs=style.split(";");for(var i=0,l=attrs.length;i=1){return matches[1]}}return null}if(method=="computedstyle"){var computedStyle=window.getComputedStyle($element[0]);return computedStyle.width}return method};Select2.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container);this.selection.bind(this,this.$container);this.dropdown.bind(this,this.$container);this.results.bind(this,this.$container)};Select2.prototype._registerDomEvents=function(){var self=this;this.$element.on("change.select2",function(){self.dataAdapter.current(function(data){self.trigger("selection:update",{data:data})})});this.$element.on("focus.select2",function(evt){self.trigger("focus",evt)});this._syncA=Utils.bind(this._syncAttributes,this);this._syncS=Utils.bind(this._syncSubtree,this);if(this.$element[0].attachEvent){this.$element[0].attachEvent("onpropertychange",this._syncA)}var observer=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;if(observer!=null){this._observer=new observer(function(mutations){$.each(mutations,self._syncA);$.each(mutations,self._syncS)});this._observer.observe(this.$element[0],{attributes:true,childList:true,subtree:false})}else if(this.$element[0].addEventListener){this.$element[0].addEventListener("DOMAttrModified",self._syncA,false);this.$element[0].addEventListener("DOMNodeInserted",self._syncS,false);this.$element[0].addEventListener("DOMNodeRemoved",self._syncS,false)}};Select2.prototype._registerDataEvents=function(){var self=this;this.dataAdapter.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerSelectionEvents=function(){var self=this;var nonRelayEvents=["toggle","focus"];this.selection.on("toggle",function(){self.toggleDropdown()});this.selection.on("focus",function(params){self.focus(params)});this.selection.on("*",function(name,params){if($.inArray(name,nonRelayEvents)!==-1){return}self.trigger(name,params)})};Select2.prototype._registerDropdownEvents=function(){var self=this;this.dropdown.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerResultsEvents=function(){var self=this;this.results.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerEvents=function(){var self=this;this.on("open",function(){self.$container.addClass("select2-container--open")});this.on("close",function(){self.$container.removeClass("select2-container--open")});this.on("enable",function(){self.$container.removeClass("select2-container--disabled")});this.on("disable",function(){self.$container.addClass("select2-container--disabled")});this.on("blur",function(){self.$container.removeClass("select2-container--focus")});this.on("query",function(params){if(!self.isOpen()){self.trigger("open",{})}this.dataAdapter.query(params,function(data){self.trigger("results:all",{data:data,query:params})})});this.on("query:append",function(params){this.dataAdapter.query(params,function(data){self.trigger("results:append",{data:data,query:params})})});this.on("keypress",function(evt){var key=evt.which;if(self.isOpen()){if(key===KEYS.ESC||key===KEYS.TAB||key===KEYS.UP&&evt.altKey){self.close();evt.preventDefault()}else if(key===KEYS.ENTER){self.trigger("results:select",{});evt.preventDefault()}else if(key===KEYS.SPACE&&evt.ctrlKey){self.trigger("results:toggle",{});evt.preventDefault()}else if(key===KEYS.UP){self.trigger("results:previous",{});evt.preventDefault()}else if(key===KEYS.DOWN){self.trigger("results:next",{});evt.preventDefault()}}else{if(key===KEYS.ENTER||key===KEYS.SPACE||key===KEYS.DOWN&&evt.altKey){self.open();evt.preventDefault()}}})};Select2.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled"));if(this.options.get("disabled")){if(this.isOpen()){this.close()}this.trigger("disable",{})}else{this.trigger("enable",{})}};Select2.prototype._syncSubtree=function(evt,mutations){var changed=false;var self=this;if(evt&&evt.target&&(evt.target.nodeName!=="OPTION"&&evt.target.nodeName!=="OPTGROUP")){return}if(!mutations){changed=true}else if(mutations.addedNodes&&mutations.addedNodes.length>0){for(var n=0;n0){changed=true}if(changed){this.dataAdapter.current(function(currentData){self.trigger("selection:update",{data:currentData})})}};Select2.prototype.trigger=function(name,args){var actualTrigger=Select2.__super__.trigger;var preTriggerMap={open:"opening",close:"closing",select:"selecting",unselect:"unselecting",clear:"clearing"};if(args===undefined){args={}}if(name in preTriggerMap){var preTriggerName=preTriggerMap[name];var preTriggerArgs={prevented:false,name:name,args:args};actualTrigger.call(this,preTriggerName,preTriggerArgs);if(preTriggerArgs.prevented){args.prevented=true;return}}actualTrigger.call(this,name,args)};Select2.prototype.toggleDropdown=function(){if(this.options.get("disabled")){return}if(this.isOpen()){this.close()}else{this.open()}};Select2.prototype.open=function(){if(this.isOpen()){return}this.trigger("query",{})};Select2.prototype.close=function(){if(!this.isOpen()){return}this.trigger("close",{})};Select2.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")};Select2.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")};Select2.prototype.focus=function(data){if(this.hasFocus()){return}this.$container.addClass("select2-container--focus");this.trigger("focus",{})};Select2.prototype.enable=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("enable")` method has been deprecated and will'+' be removed in later Select2 versions. Use $element.prop("disabled")'+" instead.")}if(args==null||args.length===0){args=[true]}var disabled=!args[0];this.$element.prop("disabled",disabled)};Select2.prototype.data=function(){if(this.options.get("debug")&&arguments.length>0&&window.console&&console.warn){console.warn('Select2: Data can no longer be set using `select2("data")`. You '+"should consider setting the value instead using `$element.val()`.")}var data=[];this.dataAdapter.current(function(currentData){data=currentData});return data};Select2.prototype.val=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("val")` method has been deprecated and will be'+" removed in later Select2 versions. Use $element.val() instead.")}if(args==null||args.length===0){return this.$element.val()}var newVal=args[0];if($.isArray(newVal)){newVal=$.map(newVal,function(obj){return obj.toString()})}this.$element.val(newVal).trigger("change")};Select2.prototype.destroy=function(){this.$container.remove();if(this.$element[0].detachEvent){this.$element[0].detachEvent("onpropertychange",this._syncA)}if(this._observer!=null){this._observer.disconnect();this._observer=null}else if(this.$element[0].removeEventListener){this.$element[0].removeEventListener("DOMAttrModified",this._syncA,false);this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,false);this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,false)}this._syncA=null;this._syncS=null;this.$element.off(".select2");this.$element.attr("tabindex",Utils.GetData(this.$element[0],"old-tabindex"));this.$element.removeClass("select2-hidden-accessible");this.$element.attr("aria-hidden","false");Utils.RemoveData(this.$element[0]);this.$element.removeData("select2");this.dataAdapter.destroy();this.selection.destroy();this.dropdown.destroy();this.results.destroy();this.dataAdapter=null;this.selection=null;this.dropdown=null;this.results=null};Select2.prototype.render=function(){var $container=$(''+''+''+"");$container.attr("dir",this.options.get("dir"));this.$container=$container;this.$container.addClass("select2-container--"+this.options.get("theme"));Utils.StoreData($container[0],"element",this.$element);return $container};return Select2});S2.define("jquery-mousewheel",["jquery"],function($){return $});S2.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults","./select2/utils"],function($,_,Select2,Defaults,Utils){if($.fn.select2==null){var thisMethods=["open","close","destroy"];$.fn.select2=function(options){options=options||{};if(typeof options==="object"){this.each(function(){var instanceOptions=$.extend(true,{},options);var instance=new Select2($(this),instanceOptions)});return this}else if(typeof options==="string"){var ret;var args=Array.prototype.slice.call(arguments,1);this.each(function(){var instance=Utils.GetData(this,"select2");if(instance==null&&window.console&&console.error){console.error("The select2('"+options+"') method was called on an "+"element that is not using Select2.")}ret=instance[options].apply(instance,args)});if($.inArray(options,thisMethods)>-1){return this}return ret}else{throw new Error("Invalid arguments for Select2: "+options)}}}if($.fn.select2.defaults==null){$.fn.select2.defaults=Defaults}return Select2});return{define:S2.define,require:S2.require}}();var select2=S2.require("jquery.select2");jQuery.fn.select2.amd=S2;return select2}); \ No newline at end of file +(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof module==="object"&&module.exports){module.exports=function(root,jQuery){if(jQuery===undefined){if(typeof window!=="undefined"){jQuery=require("jquery")}else{jQuery=require("jquery")(root)}}factory(jQuery);return jQuery}}else{factory(jQuery)}})(function(jQuery){var S2=function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd){var S2=jQuery.fn.select2.amd}var S2;(function(){if(!S2||!S2.requirejs){if(!S2){S2={}}else{require=S2}var requirejs,require,define;(function(undef){var main,req,makeMap,handlers,defined={},waiting={},config={},defining={},hasOwn=Object.prototype.hasOwnProperty,aps=[].slice,jsSuffixRegExp=/\.js$/;function hasProp(obj,prop){return hasOwn.call(obj,prop)}function normalize(name,baseName){var nameParts,nameSegment,mapValue,foundMap,lastIndex,foundI,foundStarMap,starI,i,j,part,normalizedBaseParts,baseParts=baseName&&baseName.split("/"),map=config.map,starMap=map&&map["*"]||{};if(name){name=name.split("/");lastIndex=name.length-1;if(config.nodeIdCompat&&jsSuffixRegExp.test(name[lastIndex])){name[lastIndex]=name[lastIndex].replace(jsSuffixRegExp,"")}if(name[0].charAt(0)==="."&&baseParts){normalizedBaseParts=baseParts.slice(0,baseParts.length-1);name=normalizedBaseParts.concat(name)}for(i=0;i0){name.splice(i-1,2);i-=2}}}name=name.join("/")}if((baseParts||starMap)&&map){nameParts=name.split("/");for(i=nameParts.length;i>0;i-=1){nameSegment=nameParts.slice(0,i).join("/");if(baseParts){for(j=baseParts.length;j>0;j-=1){mapValue=map[baseParts.slice(0,j).join("/")];if(mapValue){mapValue=mapValue[nameSegment];if(mapValue){foundMap=mapValue;foundI=i;break}}}}if(foundMap){break}if(!foundStarMap&&starMap&&starMap[nameSegment]){foundStarMap=starMap[nameSegment];starI=i}}if(!foundMap&&foundStarMap){foundMap=foundStarMap;foundI=starI}if(foundMap){nameParts.splice(0,foundI,foundMap);name=nameParts.join("/")}}return name}function makeRequire(relName,forceSync){return function(){var args=aps.call(arguments,0);if(typeof args[0]!=="string"&&args.length===1){args.push(null)}return req.apply(undef,args.concat([relName,forceSync]))}}function makeNormalize(relName){return function(name){return normalize(name,relName)}}function makeLoad(depName){return function(value){defined[depName]=value}}function callDep(name){if(hasProp(waiting,name)){var args=waiting[name];delete waiting[name];defining[name]=true;main.apply(undef,args)}if(!hasProp(defined,name)&&!hasProp(defining,name)){throw new Error("No "+name)}return defined[name]}function splitPrefix(name){var prefix,index=name?name.indexOf("!"):-1;if(index>-1){prefix=name.substring(0,index);name=name.substring(index+1,name.length)}return[prefix,name]}function makeRelParts(relName){return relName?splitPrefix(relName):[]}makeMap=function(name,relParts){var plugin,parts=splitPrefix(name),prefix=parts[0],relResourceName=relParts[1];name=parts[1];if(prefix){prefix=normalize(prefix,relResourceName);plugin=callDep(prefix)}if(prefix){if(plugin&&plugin.normalize){name=plugin.normalize(name,makeNormalize(relResourceName))}else{name=normalize(name,relResourceName)}}else{name=normalize(name,relResourceName);parts=splitPrefix(name);prefix=parts[0];name=parts[1];if(prefix){plugin=callDep(prefix)}}return{f:prefix?prefix+"!"+name:name,n:name,pr:prefix,p:plugin}};function makeConfig(name){return function(){return config&&config.config&&config.config[name]||{}}}handlers={require:function(name){return makeRequire(name)},exports:function(name){var e=defined[name];if(typeof e!=="undefined"){return e}else{return defined[name]={}}},module:function(name){return{id:name,uri:"",exports:defined[name],config:makeConfig(name)}}};main=function(name,deps,callback,relName){var cjsModule,depName,ret,map,i,relParts,args=[],callbackType=typeof callback,usingExports;relName=relName||name;relParts=makeRelParts(relName);if(callbackType==="undefined"||callbackType==="function"){deps=!deps.length&&callback.length?["require","exports","module"]:deps;for(i=0;i0){unshift.call(arguments,SuperClass.prototype.constructor);calledConstructor=DecoratorClass.prototype.constructor}calledConstructor.apply(this,arguments)}DecoratorClass.displayName=SuperClass.displayName;function ctr(){this.constructor=DecoratedClass}DecoratedClass.prototype=new ctr;for(var m=0;m":">",'"':""","'":"'","/":"/"};if(typeof markup!=="string"){return markup}return String(markup).replace(/[&<>"'\/\\]/g,function(match){return replaceMap[match]})};Utils.appendMany=function($element,$nodes){if($.fn.jquery.substr(0,3)==="1.7"){var $jqNodes=$();$.map($nodes,function(node){$jqNodes=$jqNodes.add(node)});$nodes=$jqNodes}$element.append($nodes)};Utils.__cache={};var id=0;Utils.GetUniqueElementId=function(element){var select2Id=element.getAttribute("data-select2-id");if(select2Id==null){if(element.id){select2Id=element.id;element.setAttribute("data-select2-id",select2Id)}else{element.setAttribute("data-select2-id",++id);select2Id=id.toString()}}return select2Id};Utils.StoreData=function(element,name,value){var id=Utils.GetUniqueElementId(element);if(!Utils.__cache[id]){Utils.__cache[id]={}}Utils.__cache[id][name]=value};Utils.GetData=function(element,name){var id=Utils.GetUniqueElementId(element);if(name){if(Utils.__cache[id]){if(Utils.__cache[id][name]!=null){return Utils.__cache[id][name]}return $(element).data(name)}return $(element).data(name)}else{return Utils.__cache[id]}};Utils.RemoveData=function(element){var id=Utils.GetUniqueElementId(element);if(Utils.__cache[id]!=null){delete Utils.__cache[id]}element.removeAttribute("data-select2-id")};return Utils});S2.define("select2/results",["jquery","./utils"],function($,Utils){function Results($element,options,dataAdapter){this.$element=$element;this.data=dataAdapter;this.options=options;Results.__super__.constructor.call(this)}Utils.Extend(Results,Utils.Observable);Results.prototype.render=function(){var $results=$('
            ');if(this.options.get("multiple")){$results.attr("aria-multiselectable","true")}this.$results=$results;return $results};Results.prototype.clear=function(){this.$results.empty()};Results.prototype.displayMessage=function(params){var escapeMarkup=this.options.get("escapeMarkup");this.clear();this.hideLoading();var $message=$('');var message=this.options.get("translations").get(params.message);$message.append(escapeMarkup(message(params.args)));$message[0].className+=" select2-results__message";this.$results.append($message)};Results.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()};Results.prototype.append=function(data){this.hideLoading();var $options=[];if(data.results==null||data.results.length===0){if(this.$results.children().length===0){this.trigger("results:message",{message:"noResults"})}return}data.results=this.sort(data.results);for(var d=0;d0){$selected.first().trigger("mouseenter")}else{$options.first().trigger("mouseenter")}this.ensureHighlightVisible()};Results.prototype.setClasses=function(){var self=this;this.data.current(function(selected){var selectedIds=$.map(selected,function(s){return s.id.toString()});var $options=self.$results.find(".select2-results__option[aria-selected]");$options.each(function(){var $option=$(this);var item=Utils.GetData(this,"data");var id=""+item.id;if(item.element!=null&&item.element.selected||item.element==null&&$.inArray(id,selectedIds)>-1){$option.attr("aria-selected","true")}else{$option.attr("aria-selected","false")}})})};Results.prototype.showLoading=function(params){this.hideLoading();var loadingMore=this.options.get("translations").get("searching");var loading={disabled:true,loading:true,text:loadingMore(params)};var $loading=this.option(loading);$loading.className+=" loading-results";this.$results.prepend($loading)};Results.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()};Results.prototype.option=function(data){var option=document.createElement("li");option.className="select2-results__option";var attrs={role:"option","aria-selected":"false"};var matches=window.Element.prototype.matches||window.Element.prototype.msMatchesSelector||window.Element.prototype.webkitMatchesSelector;if(data.element!=null&&matches.call(data.element,":disabled")||data.element==null&&data.disabled){delete attrs["aria-selected"];attrs["aria-disabled"]="true"}if(data.id==null){delete attrs["aria-selected"]}if(data._resultId!=null){option.id=data._resultId}if(data.title){option.title=data.title}if(data.children){attrs.role="group";attrs["aria-label"]=data.text;delete attrs["aria-selected"]}for(var attr in attrs){var val=attrs[attr];option.setAttribute(attr,val)}if(data.children){var $option=$(option);var label=document.createElement("strong");label.className="select2-results__group";var $label=$(label);this.template(data,label);var $children=[];for(var c=0;c",{class:"select2-results__options select2-results__options--nested"});$childrenContainer.append($children);$option.append(label);$option.append($childrenContainer)}else{this.template(data,option)}Utils.StoreData(option,"data",data);return option};Results.prototype.bind=function(container,$container){var self=this;var id=container.id+"-results";this.$results.attr("id",id);container.on("results:all",function(params){self.clear();self.append(params.data);if(container.isOpen()){self.setClasses();self.highlightFirstItem()}});container.on("results:append",function(params){self.append(params.data);if(container.isOpen()){self.setClasses()}});container.on("query",function(params){self.hideMessages();self.showLoading(params)});container.on("select",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("unselect",function(){if(!container.isOpen()){return}self.setClasses();if(self.options.get("scrollAfterSelect")){self.highlightFirstItem()}});container.on("open",function(){self.$results.attr("aria-expanded","true");self.$results.attr("aria-hidden","false");self.setClasses();self.ensureHighlightVisible()});container.on("close",function(){self.$results.attr("aria-expanded","false");self.$results.attr("aria-hidden","true");self.$results.removeAttr("aria-activedescendant")});container.on("results:toggle",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}$highlighted.trigger("mouseup")});container.on("results:select",function(){var $highlighted=self.getHighlightedResults();if($highlighted.length===0){return}var data=Utils.GetData($highlighted[0],"data");if($highlighted.attr("aria-selected")=="true"){self.trigger("close",{})}else{self.trigger("select",{data:data})}});container.on("results:previous",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);if(currentIndex<=0){return}var nextIndex=currentIndex-1;if($highlighted.length===0){nextIndex=0}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top;var nextTop=$next.offset().top;var nextOffset=self.$results.scrollTop()+(nextTop-currentOffset);if(nextIndex===0){self.$results.scrollTop(0)}else if(nextTop-currentOffset<0){self.$results.scrollTop(nextOffset)}});container.on("results:next",function(){var $highlighted=self.getHighlightedResults();var $options=self.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var nextIndex=currentIndex+1;if(nextIndex>=$options.length){return}var $next=$options.eq(nextIndex);$next.trigger("mouseenter");var currentOffset=self.$results.offset().top+self.$results.outerHeight(false);var nextBottom=$next.offset().top+$next.outerHeight(false);var nextOffset=self.$results.scrollTop()+nextBottom-currentOffset;if(nextIndex===0){self.$results.scrollTop(0)}else if(nextBottom>currentOffset){self.$results.scrollTop(nextOffset)}});container.on("results:focus",function(params){params.element.addClass("select2-results__option--highlighted")});container.on("results:message",function(params){self.displayMessage(params)});if($.fn.mousewheel){this.$results.on("mousewheel",function(e){var top=self.$results.scrollTop();var bottom=self.$results.get(0).scrollHeight-top+e.deltaY;var isAtTop=e.deltaY>0&&top-e.deltaY<=0;var isAtBottom=e.deltaY<0&&bottom<=self.$results.height();if(isAtTop){self.$results.scrollTop(0);e.preventDefault();e.stopPropagation()}else if(isAtBottom){self.$results.scrollTop(self.$results.get(0).scrollHeight-self.$results.height());e.preventDefault();e.stopPropagation()}})}this.$results.on("mouseup",".select2-results__option[aria-selected]",function(evt){var $this=$(this);var data=Utils.GetData(this,"data");if($this.attr("aria-selected")==="true"){if(self.options.get("multiple")){self.trigger("unselect",{originalEvent:evt,data:data})}else{self.trigger("close",{})}return}self.trigger("select",{originalEvent:evt,data:data})});this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(evt){var data=Utils.GetData(this,"data");self.getHighlightedResults().removeClass("select2-results__option--highlighted");self.trigger("results:focus",{data:data,element:$(this)})})};Results.prototype.getHighlightedResults=function(){var $highlighted=this.$results.find(".select2-results__option--highlighted");return $highlighted};Results.prototype.destroy=function(){this.$results.remove()};Results.prototype.ensureHighlightVisible=function(){var $highlighted=this.getHighlightedResults();if($highlighted.length===0){return}var $options=this.$results.find("[aria-selected]");var currentIndex=$options.index($highlighted);var currentOffset=this.$results.offset().top;var nextTop=$highlighted.offset().top;var nextOffset=this.$results.scrollTop()+(nextTop-currentOffset);var offsetDelta=nextTop-currentOffset;nextOffset-=$highlighted.outerHeight(false)*2;if(currentIndex<=2){this.$results.scrollTop(0)}else if(offsetDelta>this.$results.outerHeight()||offsetDelta<0){this.$results.scrollTop(nextOffset)}};Results.prototype.template=function(result,container){var template=this.options.get("templateResult");var escapeMarkup=this.options.get("escapeMarkup");var content=template(result,container);if(content==null){container.style.display="none"}else if(typeof content==="string"){container.innerHTML=escapeMarkup(content)}else{$(container).append(content)}};return Results});S2.define("select2/keys",[],function(){var KEYS={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return KEYS});S2.define("select2/selection/base",["jquery","../utils","../keys"],function($,Utils,KEYS){function BaseSelection($element,options){this.$element=$element;this.options=options;BaseSelection.__super__.constructor.call(this)}Utils.Extend(BaseSelection,Utils.Observable);BaseSelection.prototype.render=function(){var $selection=$('");this._tabindex=0;if(Utils.GetData(this.$element[0],"old-tabindex")!=null){this._tabindex=Utils.GetData(this.$element[0],"old-tabindex")}else if(this.$element.attr("tabindex")!=null){this._tabindex=this.$element.attr("tabindex")}$selection.attr("title",this.$element.attr("title"));$selection.attr("tabindex",this._tabindex);$selection.attr("aria-disabled","false");this.$selection=$selection;return $selection};BaseSelection.prototype.bind=function(container,$container){var self=this;var resultsId=container.id+"-results";this.container=container;this.$selection.on("focus",function(evt){self.trigger("focus",evt)});this.$selection.on("blur",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",function(evt){self.trigger("keypress",evt);if(evt.which===KEYS.SPACE){evt.preventDefault()}});container.on("results:focus",function(params){self.$selection.attr("aria-activedescendant",params.data._resultId)});container.on("selection:update",function(params){self.update(params.data)});container.on("open",function(){self.$selection.attr("aria-expanded","true");self.$selection.attr("aria-owns",resultsId);self._attachCloseHandler(container)});container.on("close",function(){self.$selection.attr("aria-expanded","false");self.$selection.removeAttr("aria-activedescendant");self.$selection.removeAttr("aria-owns");self.$selection.trigger("focus");self._detachCloseHandler(container)});container.on("enable",function(){self.$selection.attr("tabindex",self._tabindex);self.$selection.attr("aria-disabled","false")});container.on("disable",function(){self.$selection.attr("tabindex","-1");self.$selection.attr("aria-disabled","true")})};BaseSelection.prototype._handleBlur=function(evt){var self=this;window.setTimeout(function(){if(document.activeElement==self.$selection[0]||$.contains(self.$selection[0],document.activeElement)){return}self.trigger("blur",evt)},1)};BaseSelection.prototype._attachCloseHandler=function(container){$(document.body).on("mousedown.select2."+container.id,function(e){var $target=$(e.target);var $select=$target.closest(".select2");var $all=$(".select2.select2-container--open");$all.each(function(){if(this==$select[0]){return}var $element=Utils.GetData(this,"element");$element.select2("close")})})};BaseSelection.prototype._detachCloseHandler=function(container){$(document.body).off("mousedown.select2."+container.id)};BaseSelection.prototype.position=function($selection,$container){var $selectionContainer=$container.find(".selection");$selectionContainer.append($selection)};BaseSelection.prototype.destroy=function(){this._detachCloseHandler(this.container)};BaseSelection.prototype.update=function(data){throw new Error("The `update` method must be defined in child classes.")};return BaseSelection});S2.define("select2/selection/single",["jquery","./base","../utils","../keys"],function($,BaseSelection,Utils,KEYS){function SingleSelection(){SingleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(SingleSelection,BaseSelection);SingleSelection.prototype.render=function(){var $selection=SingleSelection.__super__.render.call(this);$selection.addClass("select2-selection--single");$selection.html(''+''+''+"");return $selection};SingleSelection.prototype.bind=function(container,$container){var self=this;SingleSelection.__super__.bind.apply(this,arguments);var id=container.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",id).attr("role","textbox").attr("aria-readonly","true");this.$selection.attr("aria-labelledby",id);this.$selection.on("mousedown",function(evt){if(evt.which!==1){return}self.trigger("toggle",{originalEvent:evt})});this.$selection.on("focus",function(evt){});this.$selection.on("blur",function(evt){});container.on("focus",function(evt){if(!container.isOpen()){self.$selection.trigger("focus")}})};SingleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};SingleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};SingleSelection.prototype.selectionContainer=function(){return $("")};SingleSelection.prototype.update=function(data){if(data.length===0){this.clear();return}var selection=data[0];var $rendered=this.$selection.find(".select2-selection__rendered");var formatted=this.display(selection,$rendered);$rendered.empty().append(formatted);var title=selection.title||selection.text;if(title){$rendered.attr("title",title)}else{$rendered.removeAttr("title")}};return SingleSelection});S2.define("select2/selection/multiple",["jquery","./base","../utils"],function($,BaseSelection,Utils){function MultipleSelection($element,options){MultipleSelection.__super__.constructor.apply(this,arguments)}Utils.Extend(MultipleSelection,BaseSelection);MultipleSelection.prototype.render=function(){var $selection=MultipleSelection.__super__.render.call(this);$selection.addClass("select2-selection--multiple");$selection.html('
              ');return $selection};MultipleSelection.prototype.bind=function(container,$container){var self=this;MultipleSelection.__super__.bind.apply(this,arguments);this.$selection.on("click",function(evt){self.trigger("toggle",{originalEvent:evt})});this.$selection.on("click",".select2-selection__choice__remove",function(evt){if(self.options.get("disabled")){return}var $remove=$(this);var $selection=$remove.parent();var data=Utils.GetData($selection[0],"data");self.trigger("unselect",{originalEvent:evt,data:data})})};MultipleSelection.prototype.clear=function(){var $rendered=this.$selection.find(".select2-selection__rendered");$rendered.empty();$rendered.removeAttr("title")};MultipleSelection.prototype.display=function(data,container){var template=this.options.get("templateSelection");var escapeMarkup=this.options.get("escapeMarkup");return escapeMarkup(template(data,container))};MultipleSelection.prototype.selectionContainer=function(){var $container=$('
            • '+''+"×"+""+"
            • ");return $container};MultipleSelection.prototype.update=function(data){this.clear();if(data.length===0){return}var $selections=[];for(var d=0;d1;if(multipleSelections||singlePlaceholder){return decorated.call(this,data)}this.clear();var $placeholder=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append($placeholder)};return Placeholder});S2.define("select2/selection/allowClear",["jquery","../keys","../utils"],function($,KEYS,Utils){function AllowClear(){}AllowClear.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);if(this.placeholder==null){if(this.options.get("debug")&&window.console&&console.error){console.error("Select2: The `allowClear` option should be used in combination "+"with the `placeholder` option.")}}this.$selection.on("mousedown",".select2-selection__clear",function(evt){self._handleClear(evt)});container.on("keypress",function(evt){self._handleKeyboardClear(evt,container)})};AllowClear.prototype._handleClear=function(_,evt){if(this.options.get("disabled")){return}var $clear=this.$selection.find(".select2-selection__clear");if($clear.length===0){return}evt.stopPropagation();var data=Utils.GetData($clear[0],"data");var previousVal=this.$element.val();this.$element.val(this.placeholder.id);var unselectData={data:data};this.trigger("clear",unselectData);if(unselectData.prevented){this.$element.val(previousVal);return}for(var d=0;d0||data.length===0){return}var removeAll=this.options.get("translations").get("removeAllItems");var $remove=$(''+"×"+"");Utils.StoreData($remove[0],"data",data);this.$selection.find(".select2-selection__rendered").prepend($remove)};return AllowClear});S2.define("select2/selection/search",["jquery","../utils","../keys"],function($,Utils,KEYS){function Search(decorated,$element,options){decorated.call(this,$element,options)}Search.prototype.render=function(decorated){var $search=$('");this.$searchContainer=$search;this.$search=$search.find("input");var $rendered=decorated.call(this);this._transferTabIndex();return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);container.on("open",function(){self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus")});container.on("close",function(){self.$search.val("");self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.trigger("focus")});container.on("enable",function(){self.$search.prop("disabled",false);self._transferTabIndex()});container.on("disable",function(){self.$search.prop("disabled",true)});container.on("focus",function(evt){self.$search.trigger("focus")});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}});this.$selection.on("focusin",".select2-search--inline",function(evt){self.trigger("focus",evt)});this.$selection.on("focusout",".select2-search--inline",function(evt){self._handleBlur(evt)});this.$selection.on("keydown",".select2-search--inline",function(evt){evt.stopPropagation();self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented();var key=evt.which;if(key===KEYS.BACKSPACE&&self.$search.val()===""){var $previousChoice=self.$searchContainer.prev(".select2-selection__choice");if($previousChoice.length>0){var item=Utils.GetData($previousChoice[0],"data");self.searchRemoveChoice(item);evt.preventDefault()}}});this.$selection.on("click",".select2-search--inline",function(evt){if(self.$search.val()){evt.stopPropagation()}});var msie=document.documentMode;var disableInputEvents=msie&&msie<=11;this.$selection.on("input.searchcheck",".select2-search--inline",function(evt){if(disableInputEvents){self.$selection.off("input.search input.searchcheck");return}self.$selection.off("keyup.search")});this.$selection.on("keyup.search input.search",".select2-search--inline",function(evt){if(disableInputEvents&&evt.type==="input"){self.$selection.off("input.search input.searchcheck");return}var key=evt.which;if(key==KEYS.SHIFT||key==KEYS.CTRL||key==KEYS.ALT){return}if(key==KEYS.TAB){return}self.handleSearch(evt)})};Search.prototype._transferTabIndex=function(decorated){this.$search.attr("tabindex",this.$selection.attr("tabindex"));this.$selection.attr("tabindex","-1")};Search.prototype.createPlaceholder=function(decorated,placeholder){this.$search.attr("placeholder",placeholder.text)};Search.prototype.update=function(decorated,data){var searchHadFocus=this.$search[0]==document.activeElement;this.$search.attr("placeholder","");decorated.call(this,data);this.$selection.find(".select2-selection__rendered").append(this.$searchContainer);this.resizeSearch();if(searchHadFocus){this.$search.trigger("focus")}};Search.prototype.handleSearch=function(){this.resizeSearch();if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.searchRemoveChoice=function(decorated,item){this.trigger("unselect",{data:item});this.$search.val(item.text);this.handleSearch()};Search.prototype.resizeSearch=function(){this.$search.css("width","25px");var width="";if(this.$search.attr("placeholder")!==""){width=this.$selection.find(".select2-selection__rendered").width()}else{var minimumWidth=this.$search.val().length+1;width=minimumWidth*.75+"em"}this.$search.css("width",width)};return Search});S2.define("select2/selection/eventRelay",["jquery"],function($){function EventRelay(){}EventRelay.prototype.bind=function(decorated,container,$container){var self=this;var relayEvents=["open","opening","close","closing","select","selecting","unselect","unselecting","clear","clearing"];var preventableEvents=["opening","closing","selecting","unselecting","clearing"];decorated.call(this,container,$container);container.on("*",function(name,params){if($.inArray(name,relayEvents)===-1){return}params=params||{};var evt=$.Event("select2:"+name,{params:params});self.$element.trigger(evt);if($.inArray(name,preventableEvents)===-1){return}params.prevented=evt.isDefaultPrevented()})};return EventRelay});S2.define("select2/translation",["jquery","require"],function($,require){function Translation(dict){this.dict=dict||{}}Translation.prototype.all=function(){return this.dict};Translation.prototype.get=function(key){return this.dict[key]};Translation.prototype.extend=function(translation){this.dict=$.extend({},translation.all(),this.dict)};Translation._cache={};Translation.loadPath=function(path){if(!(path in Translation._cache)){var translations=require(path);Translation._cache[path]=translations}return new Translation(Translation._cache[path])};return Translation});S2.define("select2/diacritics",[],function(){var diacritics={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Œ":"OE","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","œ":"oe","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ώ":"ω","ς":"σ","’":"'"};return diacritics});S2.define("select2/data/base",["../utils"],function(Utils){function BaseAdapter($element,options){BaseAdapter.__super__.constructor.call(this)}Utils.Extend(BaseAdapter,Utils.Observable);BaseAdapter.prototype.current=function(callback){throw new Error("The `current` method must be defined in child classes.")};BaseAdapter.prototype.query=function(params,callback){throw new Error("The `query` method must be defined in child classes.")};BaseAdapter.prototype.bind=function(container,$container){};BaseAdapter.prototype.destroy=function(){};BaseAdapter.prototype.generateResultId=function(container,data){var id=container.id+"-result-";id+=Utils.generateChars(4);if(data.id!=null){id+="-"+data.id.toString()}else{id+="-"+Utils.generateChars(4)}return id};return BaseAdapter});S2.define("select2/data/select",["./base","../utils","jquery"],function(BaseAdapter,Utils,$){function SelectAdapter($element,options){this.$element=$element;this.options=options;SelectAdapter.__super__.constructor.call(this)}Utils.Extend(SelectAdapter,BaseAdapter);SelectAdapter.prototype.current=function(callback){var data=[];var self=this;this.$element.find(":selected").each(function(){var $option=$(this);var option=self.item($option);data.push(option)});callback(data)};SelectAdapter.prototype.select=function(data){var self=this;data.selected=true;if($(data.element).is("option")){data.element.selected=true;this.$element.trigger("change");return}if(this.$element.prop("multiple")){this.current(function(currentData){var val=[];data=[data];data.push.apply(data,currentData);for(var d=0;d=0){var $existingOption=$existing.filter(onlyItem(item));var existingData=this.item($existingOption);var newData=$.extend(true,{},item,existingData);var $newOption=this.option(newData);$existingOption.replaceWith($newOption);continue}var $option=this.option(item);if(item.children){var $children=this.convertToOptions(item.children);Utils.appendMany($option,$children)}$options.push($option)}return $options};return ArrayAdapter});S2.define("select2/data/ajax",["./array","../utils","jquery"],function(ArrayAdapter,Utils,$){function AjaxAdapter($element,options){this.ajaxOptions=this._applyDefaults(options.get("ajax"));if(this.ajaxOptions.processResults!=null){this.processResults=this.ajaxOptions.processResults}AjaxAdapter.__super__.constructor.call(this,$element,options)}Utils.Extend(AjaxAdapter,ArrayAdapter);AjaxAdapter.prototype._applyDefaults=function(options){var defaults={data:function(params){return $.extend({},params,{q:params.term})},transport:function(params,success,failure){var $request=$.ajax(params);$request.then(success);$request.fail(failure);return $request}};return $.extend({},defaults,options,true)};AjaxAdapter.prototype.processResults=function(results){return results};AjaxAdapter.prototype.query=function(params,callback){var matches=[];var self=this;if(this._request!=null){if($.isFunction(this._request.abort)){this._request.abort()}this._request=null}var options=$.extend({type:"GET"},this.ajaxOptions);if(typeof options.url==="function"){options.url=options.url.call(this.$element,params)}if(typeof options.data==="function"){options.data=options.data.call(this.$element,params)}function request(){var $request=options.transport(options,function(data){var results=self.processResults(data,params);if(self.options.get("debug")&&window.console&&console.error){if(!results||!results.results||!$.isArray(results.results)){console.error("Select2: The AJAX results did not return an array in the "+"`results` key of the response.")}}callback(results)},function(){if("status"in $request&&($request.status===0||$request.status==="0")){return}self.trigger("results:message",{message:"errorLoading"})});self._request=$request}if(this.ajaxOptions.delay&¶ms.term!=null){if(this._queryTimeout){window.clearTimeout(this._queryTimeout)}this._queryTimeout=window.setTimeout(request,this.ajaxOptions.delay)}else{request()}};return AjaxAdapter});S2.define("select2/data/tags",["jquery"],function($){function Tags(decorated,$element,options){var tags=options.get("tags");var createTag=options.get("createTag");if(createTag!==undefined){this.createTag=createTag}var insertTag=options.get("insertTag");if(insertTag!==undefined){this.insertTag=insertTag}decorated.call(this,$element,options);if($.isArray(tags)){for(var t=0;t0&¶ms.term.length>this.maximumInputLength){this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:params.term,params:params}});return}decorated.call(this,params,callback)};return MaximumInputLength});S2.define("select2/data/maximumSelectionLength",[],function(){function MaximumSelectionLength(decorated,$e,options){this.maximumSelectionLength=options.get("maximumSelectionLength");decorated.call(this,$e,options)}MaximumSelectionLength.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("select",function(){self._checkIfMaximumSelected()})};MaximumSelectionLength.prototype.query=function(decorated,params,callback){var self=this;this._checkIfMaximumSelected(function(){decorated.call(self,params,callback)})};MaximumSelectionLength.prototype._checkIfMaximumSelected=function(_,successCallback){var self=this;this.current(function(currentData){var count=currentData!=null?currentData.length:0;if(self.maximumSelectionLength>0&&count>=self.maximumSelectionLength){self.trigger("results:message",{message:"maximumSelected",args:{maximum:self.maximumSelectionLength}});return}if(successCallback){successCallback()}})};return MaximumSelectionLength});S2.define("select2/dropdown",["jquery","./utils"],function($,Utils){function Dropdown($element,options){this.$element=$element;this.options=options;Dropdown.__super__.constructor.call(this)}Utils.Extend(Dropdown,Utils.Observable);Dropdown.prototype.render=function(){var $dropdown=$(''+''+"");$dropdown.attr("dir",this.options.get("dir"));this.$dropdown=$dropdown;return $dropdown};Dropdown.prototype.bind=function(){};Dropdown.prototype.position=function($dropdown,$container){};Dropdown.prototype.destroy=function(){this.$dropdown.remove()};return Dropdown});S2.define("select2/dropdown/search",["jquery","../utils"],function($,Utils){function Search(){}Search.prototype.render=function(decorated){var $rendered=decorated.call(this);var $search=$(''+''+"");this.$searchContainer=$search;this.$search=$search.find("input");$rendered.prepend($search);return $rendered};Search.prototype.bind=function(decorated,container,$container){var self=this;var resultsId=container.id+"-results";decorated.call(this,container,$container);this.$search.on("keydown",function(evt){self.trigger("keypress",evt);self._keyUpPrevented=evt.isDefaultPrevented()});this.$search.on("input",function(evt){$(this).off("keyup")});this.$search.on("keyup input",function(evt){self.handleSearch(evt)});container.on("open",function(){self.$search.attr("tabindex",0);self.$search.attr("aria-controls",resultsId);self.$search.trigger("focus");window.setTimeout(function(){self.$search.trigger("focus")},0)});container.on("close",function(){self.$search.attr("tabindex",-1);self.$search.removeAttr("aria-controls");self.$search.removeAttr("aria-activedescendant");self.$search.val("");self.$search.trigger("blur")});container.on("focus",function(){if(!container.isOpen()){self.$search.trigger("focus")}});container.on("results:all",function(params){if(params.query.term==null||params.query.term===""){var showSearch=self.showSearch(params);if(showSearch){self.$searchContainer.removeClass("select2-search--hide")}else{self.$searchContainer.addClass("select2-search--hide")}}});container.on("results:focus",function(params){if(params.data._resultId){self.$search.attr("aria-activedescendant",params.data._resultId)}else{self.$search.removeAttr("aria-activedescendant")}})};Search.prototype.handleSearch=function(evt){if(!this._keyUpPrevented){var input=this.$search.val();this.trigger("query",{term:input})}this._keyUpPrevented=false};Search.prototype.showSearch=function(_,params){return true};return Search});S2.define("select2/dropdown/hidePlaceholder",[],function(){function HidePlaceholder(decorated,$element,options,dataAdapter){this.placeholder=this.normalizePlaceholder(options.get("placeholder"));decorated.call(this,$element,options,dataAdapter)}HidePlaceholder.prototype.append=function(decorated,data){data.results=this.removePlaceholder(data.results);decorated.call(this,data)};HidePlaceholder.prototype.normalizePlaceholder=function(_,placeholder){if(typeof placeholder==="string"){placeholder={id:"",text:placeholder}}return placeholder};HidePlaceholder.prototype.removePlaceholder=function(_,data){var modifiedData=data.slice(0);for(var d=data.length-1;d>=0;d--){var item=data[d];if(this.placeholder.id===item.id){modifiedData.splice(d,1)}}return modifiedData};return HidePlaceholder});S2.define("select2/dropdown/infiniteScroll",["jquery"],function($){function InfiniteScroll(decorated,$element,options,dataAdapter){this.lastParams={};decorated.call(this,$element,options,dataAdapter);this.$loadingMore=this.createLoadingMore();this.loading=false}InfiniteScroll.prototype.append=function(decorated,data){this.$loadingMore.remove();this.loading=false;decorated.call(this,data);if(this.showLoadingMore(data)){this.$results.append(this.$loadingMore);this.loadMoreIfNeeded()}};InfiniteScroll.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("query",function(params){self.lastParams=params;self.loading=true});container.on("query:append",function(params){self.lastParams=params;self.loading=true});this.$results.on("scroll",this.loadMoreIfNeeded.bind(this))};InfiniteScroll.prototype.loadMoreIfNeeded=function(){var isLoadMoreVisible=$.contains(document.documentElement,this.$loadingMore[0]);if(this.loading||!isLoadMoreVisible){return}var currentOffset=this.$results.offset().top+this.$results.outerHeight(false);var loadingMoreOffset=this.$loadingMore.offset().top+this.$loadingMore.outerHeight(false);if(currentOffset+50>=loadingMoreOffset){this.loadMore()}};InfiniteScroll.prototype.loadMore=function(){this.loading=true;var params=$.extend({},{page:1},this.lastParams);params.page++;this.trigger("query:append",params)};InfiniteScroll.prototype.showLoadingMore=function(_,data){return data.pagination&&data.pagination.more};InfiniteScroll.prototype.createLoadingMore=function(){var $option=$("
            • ');var message=this.options.get("translations").get("loadingMore");$option.html(message(this.lastParams));return $option};return InfiniteScroll});S2.define("select2/dropdown/attachBody",["jquery","../utils"],function($,Utils){function AttachBody(decorated,$element,options){this.$dropdownParent=$(options.get("dropdownParent")||document.body);decorated.call(this,$element,options)}AttachBody.prototype.bind=function(decorated,container,$container){var self=this;decorated.call(this,container,$container);container.on("open",function(){self._showDropdown();self._attachPositioningHandler(container);self._bindContainerResultHandlers(container)});container.on("close",function(){self._hideDropdown();self._detachPositioningHandler(container)});this.$dropdownContainer.on("mousedown",function(evt){evt.stopPropagation()})};AttachBody.prototype.destroy=function(decorated){decorated.call(this);this.$dropdownContainer.remove()};AttachBody.prototype.position=function(decorated,$dropdown,$container){$dropdown.attr("class",$container.attr("class"));$dropdown.removeClass("select2");$dropdown.addClass("select2-container--open");$dropdown.css({position:"absolute",top:-999999});this.$container=$container};AttachBody.prototype.render=function(decorated){var $container=$("");var $dropdown=decorated.call(this);$container.append($dropdown);this.$dropdownContainer=$container;return $container};AttachBody.prototype._hideDropdown=function(decorated){this.$dropdownContainer.detach()};AttachBody.prototype._bindContainerResultHandlers=function(decorated,container){if(this._containerResultsHandlersBound){return}var self=this;container.on("results:all",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:append",function(){self._positionDropdown();self._resizeDropdown()});container.on("results:message",function(){self._positionDropdown();self._resizeDropdown()});container.on("select",function(){self._positionDropdown();self._resizeDropdown()});container.on("unselect",function(){self._positionDropdown();self._resizeDropdown()});this._containerResultsHandlersBound=true};AttachBody.prototype._attachPositioningHandler=function(decorated,container){var self=this;var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.each(function(){Utils.StoreData(this,"select2-scroll-position",{x:$(this).scrollLeft(),y:$(this).scrollTop()})});$watchers.on(scrollEvent,function(ev){var position=Utils.GetData(this,"select2-scroll-position");$(this).scrollTop(position.y)});$(window).on(scrollEvent+" "+resizeEvent+" "+orientationEvent,function(e){self._positionDropdown();self._resizeDropdown()})};AttachBody.prototype._detachPositioningHandler=function(decorated,container){var scrollEvent="scroll.select2."+container.id;var resizeEvent="resize.select2."+container.id;var orientationEvent="orientationchange.select2."+container.id;var $watchers=this.$container.parents().filter(Utils.hasScroll);$watchers.off(scrollEvent);$(window).off(scrollEvent+" "+resizeEvent+" "+orientationEvent)};AttachBody.prototype._positionDropdown=function(){var $window=$(window);var isCurrentlyAbove=this.$dropdown.hasClass("select2-dropdown--above");var isCurrentlyBelow=this.$dropdown.hasClass("select2-dropdown--below");var newDirection=null;var offset=this.$container.offset();offset.bottom=offset.top+this.$container.outerHeight(false);var container={height:this.$container.outerHeight(false)};container.top=offset.top;container.bottom=offset.top+container.height;var dropdown={height:this.$dropdown.outerHeight(false)};var viewport={top:$window.scrollTop(),bottom:$window.scrollTop()+$window.height()};var enoughRoomAbove=viewport.topoffset.bottom+dropdown.height;var css={left:offset.left,top:container.bottom};var $offsetParent=this.$dropdownParent;if($offsetParent.css("position")==="static"){$offsetParent=$offsetParent.offsetParent()}var parentOffset={top:0,left:0};if($.contains(document.body,$offsetParent[0])){parentOffset=$offsetParent.offset()}css.top-=parentOffset.top;css.left-=parentOffset.left;if(!isCurrentlyAbove&&!isCurrentlyBelow){newDirection="below"}if(!enoughRoomBelow&&enoughRoomAbove&&!isCurrentlyAbove){newDirection="above"}else if(!enoughRoomAbove&&enoughRoomBelow&&isCurrentlyAbove){newDirection="below"}if(newDirection=="above"||isCurrentlyAbove&&newDirection!=="below"){css.top=container.top-parentOffset.top-dropdown.height}if(newDirection!=null){this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+newDirection);this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+newDirection)}this.$dropdownContainer.css(css)};AttachBody.prototype._resizeDropdown=function(){var css={width:this.$container.outerWidth(false)+"px"};if(this.options.get("dropdownAutoWidth")){css.minWidth=css.width;css.position="relative";css.width="auto"}this.$dropdown.css(css)};AttachBody.prototype._showDropdown=function(decorated){this.$dropdownContainer.appendTo(this.$dropdownParent);this._positionDropdown();this._resizeDropdown()};return AttachBody});S2.define("select2/dropdown/minimumResultsForSearch",[],function(){function countResults(data){var count=0;for(var d=0;d0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MinimumInputLength)}if(options.maximumInputLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumInputLength)}if(options.maximumSelectionLength>0){options.dataAdapter=Utils.Decorate(options.dataAdapter,MaximumSelectionLength)}if(options.tags){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tags)}if(options.tokenSeparators!=null||options.tokenizer!=null){options.dataAdapter=Utils.Decorate(options.dataAdapter,Tokenizer)}if(options.query!=null){var Query=require(options.amdBase+"compat/query");options.dataAdapter=Utils.Decorate(options.dataAdapter,Query)}if(options.initSelection!=null){var InitSelection=require(options.amdBase+"compat/initSelection");options.dataAdapter=Utils.Decorate(options.dataAdapter,InitSelection)}}if(options.resultsAdapter==null){options.resultsAdapter=ResultsList;if(options.ajax!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,InfiniteScroll)}if(options.placeholder!=null){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,HidePlaceholder)}if(options.selectOnClose){options.resultsAdapter=Utils.Decorate(options.resultsAdapter,SelectOnClose)}}if(options.dropdownAdapter==null){if(options.multiple){options.dropdownAdapter=Dropdown}else{var SearchableDropdown=Utils.Decorate(Dropdown,DropdownSearch);options.dropdownAdapter=SearchableDropdown}if(options.minimumResultsForSearch!==0){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,MinimumResultsForSearch)}if(options.closeOnSelect){options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,CloseOnSelect)}if(options.dropdownCssClass!=null||options.dropdownCss!=null||options.adaptDropdownCssClass!=null){var DropdownCSS=require(options.amdBase+"compat/dropdownCss");options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,DropdownCSS)}options.dropdownAdapter=Utils.Decorate(options.dropdownAdapter,AttachBody)}if(options.selectionAdapter==null){if(options.multiple){options.selectionAdapter=MultipleSelection}else{options.selectionAdapter=SingleSelection}if(options.placeholder!=null){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,Placeholder)}if(options.allowClear){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,AllowClear)}if(options.multiple){options.selectionAdapter=Utils.Decorate(options.selectionAdapter,SelectionSearch)}if(options.containerCssClass!=null||options.containerCss!=null||options.adaptContainerCssClass!=null){var ContainerCSS=require(options.amdBase+"compat/containerCss");options.selectionAdapter=Utils.Decorate(options.selectionAdapter,ContainerCSS)}options.selectionAdapter=Utils.Decorate(options.selectionAdapter,EventRelay)}options.language=this._resolveLanguage(options.language);options.language.push("en");var uniqueLanguages=[];for(var l=0;l0){var match=$.extend(true,{},data);for(var c=data.children.length-1;c>=0;c--){var child=data.children[c];var matches=matcher(params,child);if(matches==null){match.children.splice(c,1)}}if(match.children.length>0){return match}return matcher(params,match)}var original=stripDiacritics(data.text).toUpperCase();var term=stripDiacritics(params.term).toUpperCase();if(original.indexOf(term)>-1){return data}return null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:true,debug:false,dropdownAutoWidth:false,escapeMarkup:Utils.escapeMarkup,language:{},matcher:matcher,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:false,scrollAfterSelect:false,sorter:function(data){return data},templateResult:function(result){return result.text},templateSelection:function(selection){return selection.text},theme:"default",width:"resolve"}};Defaults.prototype.applyFromElement=function(options,$element){var optionLanguage=options.language;var defaultLanguage=this.defaults.language;var elementLanguage=$element.prop("lang");var parentLanguage=$element.closest("[lang]").prop("lang");var languages=Array.prototype.concat.call(this._resolveLanguage(elementLanguage),this._resolveLanguage(optionLanguage),this._resolveLanguage(defaultLanguage),this._resolveLanguage(parentLanguage));options.language=languages;return options};Defaults.prototype._resolveLanguage=function(language){if(!language){return[]}if($.isEmptyObject(language)){return[]}if($.isPlainObject(language)){return[language]}var languages;if(!$.isArray(language)){languages=[language]}else{languages=language}var resolvedLanguages=[];for(var l=0;l0){var languageParts=languages[l].split("-");var baseLanguage=languageParts[0];resolvedLanguages.push(baseLanguage)}}return resolvedLanguages};Defaults.prototype._processTranslations=function(languages,debug){var translations=new Translation;for(var l=0;l-1){continue}if($.isPlainObject(this.options[key])){$.extend(this.options[key],data[key])}else{this.options[key]=data[key]}}return this};Options.prototype.get=function(key){return this.options[key]};Options.prototype.set=function(key,val){this.options[key]=val};return Options});S2.define("select2/core",["jquery","./options","./utils","./keys"],function($,Options,Utils,KEYS){var Select2=function($element,options){if(Utils.GetData($element[0],"select2")!=null){Utils.GetData($element[0],"select2").destroy()}this.$element=$element;this.id=this._generateId($element);options=options||{};this.options=new Options(options,$element);Select2.__super__.constructor.call(this);var tabindex=$element.attr("tabindex")||0;Utils.StoreData($element[0],"old-tabindex",tabindex);$element.attr("tabindex","-1");var DataAdapter=this.options.get("dataAdapter");this.dataAdapter=new DataAdapter($element,this.options);var $container=this.render();this._placeContainer($container);var SelectionAdapter=this.options.get("selectionAdapter");this.selection=new SelectionAdapter($element,this.options);this.$selection=this.selection.render();this.selection.position(this.$selection,$container);var DropdownAdapter=this.options.get("dropdownAdapter");this.dropdown=new DropdownAdapter($element,this.options);this.$dropdown=this.dropdown.render();this.dropdown.position(this.$dropdown,$container);var ResultsAdapter=this.options.get("resultsAdapter");this.results=new ResultsAdapter($element,this.options,this.dataAdapter);this.$results=this.results.render();this.results.position(this.$results,this.$dropdown);var self=this;this._bindAdapters();this._registerDomEvents();this._registerDataEvents();this._registerSelectionEvents();this._registerDropdownEvents();this._registerResultsEvents();this._registerEvents();this.dataAdapter.current(function(initialData){self.trigger("selection:update",{data:initialData})});$element.addClass("select2-hidden-accessible");$element.attr("aria-hidden","true");this._syncAttributes();Utils.StoreData($element[0],"select2",this);$element.data("select2",this)};Utils.Extend(Select2,Utils.Observable);Select2.prototype._generateId=function($element){var id="";if($element.attr("id")!=null){id=$element.attr("id")}else if($element.attr("name")!=null){id=$element.attr("name")+"-"+Utils.generateChars(2)}else{id=Utils.generateChars(4)}id=id.replace(/(:|\.|\[|\]|,)/g,"");id="select2-"+id;return id};Select2.prototype._placeContainer=function($container){$container.insertAfter(this.$element);var width=this._resolveWidth(this.$element,this.options.get("width"));if(width!=null){$container.css("width",width)}};Select2.prototype._resolveWidth=function($element,method){var WIDTH=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if(method=="resolve"){var styleWidth=this._resolveWidth($element,"style");if(styleWidth!=null){return styleWidth}return this._resolveWidth($element,"element")}if(method=="element"){var elementWidth=$element.outerWidth(false);if(elementWidth<=0){return"auto"}return elementWidth+"px"}if(method=="style"){var style=$element.attr("style");if(typeof style!=="string"){return null}var attrs=style.split(";");for(var i=0,l=attrs.length;i=1){return matches[1]}}return null}if(method=="computedstyle"){var computedStyle=window.getComputedStyle($element[0]);return computedStyle.width}return method};Select2.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container);this.selection.bind(this,this.$container);this.dropdown.bind(this,this.$container);this.results.bind(this,this.$container)};Select2.prototype._registerDomEvents=function(){var self=this;this.$element.on("change.select2",function(){self.dataAdapter.current(function(data){self.trigger("selection:update",{data:data})})});this.$element.on("focus.select2",function(evt){self.trigger("focus",evt)});this._syncA=Utils.bind(this._syncAttributes,this);this._syncS=Utils.bind(this._syncSubtree,this);if(this.$element[0].attachEvent){this.$element[0].attachEvent("onpropertychange",this._syncA)}var observer=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;if(observer!=null){this._observer=new observer(function(mutations){$.each(mutations,self._syncA);$.each(mutations,self._syncS)});this._observer.observe(this.$element[0],{attributes:true,childList:true,subtree:false})}else if(this.$element[0].addEventListener){this.$element[0].addEventListener("DOMAttrModified",self._syncA,false);this.$element[0].addEventListener("DOMNodeInserted",self._syncS,false);this.$element[0].addEventListener("DOMNodeRemoved",self._syncS,false)}};Select2.prototype._registerDataEvents=function(){var self=this;this.dataAdapter.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerSelectionEvents=function(){var self=this;var nonRelayEvents=["toggle","focus"];this.selection.on("toggle",function(){self.toggleDropdown()});this.selection.on("focus",function(params){self.focus(params)});this.selection.on("*",function(name,params){if($.inArray(name,nonRelayEvents)!==-1){return}self.trigger(name,params)})};Select2.prototype._registerDropdownEvents=function(){var self=this;this.dropdown.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerResultsEvents=function(){var self=this;this.results.on("*",function(name,params){self.trigger(name,params)})};Select2.prototype._registerEvents=function(){var self=this;this.on("open",function(){self.$container.addClass("select2-container--open")});this.on("close",function(){self.$container.removeClass("select2-container--open")});this.on("enable",function(){self.$container.removeClass("select2-container--disabled")});this.on("disable",function(){self.$container.addClass("select2-container--disabled")});this.on("blur",function(){self.$container.removeClass("select2-container--focus")});this.on("query",function(params){if(!self.isOpen()){self.trigger("open",{})}this.dataAdapter.query(params,function(data){self.trigger("results:all",{data:data,query:params})})});this.on("query:append",function(params){this.dataAdapter.query(params,function(data){self.trigger("results:append",{data:data,query:params})})});this.on("keypress",function(evt){var key=evt.which;if(self.isOpen()){if(key===KEYS.ESC||key===KEYS.TAB||key===KEYS.UP&&evt.altKey){self.close();evt.preventDefault()}else if(key===KEYS.ENTER){self.trigger("results:select",{});evt.preventDefault()}else if(key===KEYS.SPACE&&evt.ctrlKey){self.trigger("results:toggle",{});evt.preventDefault()}else if(key===KEYS.UP){self.trigger("results:previous",{});evt.preventDefault()}else if(key===KEYS.DOWN){self.trigger("results:next",{});evt.preventDefault()}}else{if(key===KEYS.ENTER||key===KEYS.SPACE||key===KEYS.DOWN&&evt.altKey){self.open();evt.preventDefault()}}})};Select2.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled"));if(this.options.get("disabled")){if(this.isOpen()){this.close()}this.trigger("disable",{})}else{this.trigger("enable",{})}};Select2.prototype._syncSubtree=function(evt,mutations){var changed=false;var self=this;if(evt&&evt.target&&(evt.target.nodeName!=="OPTION"&&evt.target.nodeName!=="OPTGROUP")){return}if(!mutations){changed=true}else if(mutations.addedNodes&&mutations.addedNodes.length>0){for(var n=0;n0){changed=true}if(changed){this.dataAdapter.current(function(currentData){self.trigger("selection:update",{data:currentData})})}};Select2.prototype.trigger=function(name,args){var actualTrigger=Select2.__super__.trigger;var preTriggerMap={open:"opening",close:"closing",select:"selecting",unselect:"unselecting",clear:"clearing"};if(args===undefined){args={}}if(name in preTriggerMap){var preTriggerName=preTriggerMap[name];var preTriggerArgs={prevented:false,name:name,args:args};actualTrigger.call(this,preTriggerName,preTriggerArgs);if(preTriggerArgs.prevented){args.prevented=true;return}}actualTrigger.call(this,name,args)};Select2.prototype.toggleDropdown=function(){if(this.options.get("disabled")){return}if(this.isOpen()){this.close()}else{this.open()}};Select2.prototype.open=function(){if(this.isOpen()){return}this.trigger("query",{})};Select2.prototype.close=function(){if(!this.isOpen()){return}this.trigger("close",{})};Select2.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")};Select2.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")};Select2.prototype.focus=function(data){if(this.hasFocus()){return}this.$container.addClass("select2-container--focus");this.trigger("focus",{})};Select2.prototype.enable=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("enable")` method has been deprecated and will'+' be removed in later Select2 versions. Use $element.prop("disabled")'+" instead.")}if(args==null||args.length===0){args=[true]}var disabled=!args[0];this.$element.prop("disabled",disabled)};Select2.prototype.data=function(){if(this.options.get("debug")&&arguments.length>0&&window.console&&console.warn){console.warn('Select2: Data can no longer be set using `select2("data")`. You '+"should consider setting the value instead using `$element.val()`.")}var data=[];this.dataAdapter.current(function(currentData){data=currentData});return data};Select2.prototype.val=function(args){if(this.options.get("debug")&&window.console&&console.warn){console.warn('Select2: The `select2("val")` method has been deprecated and will be'+" removed in later Select2 versions. Use $element.val() instead.")}if(args==null||args.length===0){return this.$element.val()}var newVal=args[0];if($.isArray(newVal)){newVal=$.map(newVal,function(obj){return obj.toString()})}this.$element.val(newVal).trigger("change")};Select2.prototype.destroy=function(){this.$container.remove();if(this.$element[0].detachEvent){this.$element[0].detachEvent("onpropertychange",this._syncA)}if(this._observer!=null){this._observer.disconnect();this._observer=null}else if(this.$element[0].removeEventListener){this.$element[0].removeEventListener("DOMAttrModified",this._syncA,false);this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,false);this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,false)}this._syncA=null;this._syncS=null;this.$element.off(".select2");this.$element.attr("tabindex",Utils.GetData(this.$element[0],"old-tabindex"));this.$element.removeClass("select2-hidden-accessible");this.$element.attr("aria-hidden","false");Utils.RemoveData(this.$element[0]);this.$element.removeData("select2");this.dataAdapter.destroy();this.selection.destroy();this.dropdown.destroy();this.results.destroy();this.dataAdapter=null;this.selection=null;this.dropdown=null;this.results=null};Select2.prototype.render=function(){var $container=$(''+''+''+"");$container.attr("dir",this.options.get("dir"));this.$container=$container;this.$container.addClass("select2-container--"+this.options.get("theme"));Utils.StoreData($container[0],"element",this.$element);return $container};return Select2});S2.define("jquery-mousewheel",["jquery"],function($){return $});S2.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults","./select2/utils"],function($,_,Select2,Defaults,Utils){if($.fn.select2==null){var thisMethods=["open","close","destroy"];$.fn.select2=function(options){options=options||{};if(typeof options==="object"){this.each(function(){var instanceOptions=$.extend(true,{},options);var instance=new Select2($(this),instanceOptions)});return this}else if(typeof options==="string"){var ret;var args=Array.prototype.slice.call(arguments,1);this.each(function(){var instance=Utils.GetData(this,"select2");if(instance==null&&window.console&&console.error){console.error("The select2('"+options+"') method was called on an "+"element that is not using Select2.")}ret=instance[options].apply(instance,args)});if($.inArray(options,thisMethods)>-1){return this}return ret}else{throw new Error("Invalid arguments for Select2: "+options)}}}if($.fn.select2.defaults==null){$.fn.select2.defaults=Defaults}return Select2});return{define:S2.define,require:S2.require}}();var select2=S2.require("jquery.select2");jQuery.fn.select2.amd=S2;return select2}); \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/css/core.css b/vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/css/core.css index 3d19366..8b1de37 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/css/core.css +++ b/vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/css/core.css @@ -18,80 +18,82 @@ Backtrace: theme/bootstrap/_single.scss:4 theme/bootstrap/layout.scss:1 core.scss:53 -/usr/lib/ruby/vendor_ruby/sass/script/tree/variable.rb:49:in `_perform' -/usr/lib/ruby/vendor_ruby/sass/script/tree/node.rb:50:in `perform' -/usr/lib/ruby/vendor_ruby/sass/script/tree/list_literal.rb:75:in `block in _perform' -/usr/lib/ruby/vendor_ruby/sass/script/tree/list_literal.rb:75:in `map' -/usr/lib/ruby/vendor_ruby/sass/script/tree/list_literal.rb:75:in `_perform' -/usr/lib/ruby/vendor_ruby/sass/script/tree/node.rb:50:in `perform' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:398:in `visit_prop' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `block in visit' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `block in with_base' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `with_base' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:440:in `map' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:440:in `block in visit_rule' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:179:in `with_environment' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:438:in `visit_rule' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `block in visit' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `block in with_base' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `with_base' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `map' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `block in visit_import' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:88:in `block in with_import' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:88:in `with_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:322:in `visit_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `block in visit' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `block in with_base' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `with_base' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `map' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:325:in `block in visit_import' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:88:in `block in with_import' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:88:in `with_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:322:in `visit_import' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `block in visit' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `block in with_base' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:135:in `with_frame' -/usr/lib/ruby/vendor_ruby/sass/stack.rb:79:in `with_base' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:158:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:52:in `block in visit_children' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:52:in `map' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:52:in `visit_children' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:167:in `block in visit_children' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:179:in `with_environment' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:166:in `visit_children' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `block in visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:186:in `visit_root' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/base.rb:36:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:157:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/visitors/perform.rb:10:in `visit' -/usr/lib/ruby/vendor_ruby/sass/tree/root_node.rb:36:in `css_tree' -/usr/lib/ruby/vendor_ruby/sass/tree/root_node.rb:20:in `render' -/usr/lib/ruby/vendor_ruby/sass/engine.rb:290:in `render' -/usr/lib/ruby/vendor_ruby/sass/plugin/compiler.rb:464:in `update_stylesheet' -/usr/lib/ruby/vendor_ruby/sass/plugin/compiler.rb:215:in `block in update_stylesheets' -/usr/lib/ruby/vendor_ruby/sass/plugin/compiler.rb:209:in `each' -/usr/lib/ruby/vendor_ruby/sass/plugin/compiler.rb:209:in `update_stylesheets' -/usr/lib/ruby/vendor_ruby/sass/plugin.rb:82:in `update_stylesheets' -/usr/lib/ruby/vendor_ruby/sass/exec/sass_scss.rb:334:in `watch_or_update' -/usr/lib/ruby/vendor_ruby/sass/exec/sass_scss.rb:51:in `process_result' -/usr/lib/ruby/vendor_ruby/sass/exec/base.rb:50:in `parse' -/usr/lib/ruby/vendor_ruby/sass/exec/base.rb:18:in `parse!' -/usr/bin/sass:8:in `
              ' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/variable.rb:49:in `_perform' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `block in _perform' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `map' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `_perform' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:398:in `visit_prop' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `map' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:438:in `visit_rule' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `map' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `block in visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:88:in `block in with_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:88:in `with_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:322:in `visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `map' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:325:in `block in visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:88:in `block in with_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:88:in `with_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:322:in `visit_import' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `map' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `visit_children' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:166:in `visit_children' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `block in visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:186:in `visit_root' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:157:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:10:in `visit' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/root_node.rb:36:in `css_tree' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/tree/root_node.rb:20:in `render' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/engine.rb:290:in `render' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:470:in `update_stylesheet' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `each' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `update_stylesheets' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/plugin.rb:82:in `update_stylesheets' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/exec/sass_scss.rb:334:in `watch_or_update' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/exec/sass_scss.rb:51:in `process_result' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/exec/base.rb:50:in `parse' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/exec/base.rb:18:in `parse!' +/usr/share/rubygems-integration/all/gems/sass-3.7.4/bin/sass:8:in `' +/usr/bin/sass:25:in `load' +/usr/bin/sass:25:in `
              ' */ body:before { white-space: pre; diff --git a/vendor/ayecode/wp-ayecode-ui/assets/scss/_main.scss b/vendor/ayecode/wp-ayecode-ui/assets/scss/_main.scss index 9b7b62a..a7e51a3 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/scss/_main.scss +++ b/vendor/ayecode/wp-ayecode-ui/assets/scss/_main.scss @@ -331,3 +331,9 @@ ul.list-unstyled li {margin-bottom:1rem;} } } + +// Uploader in safari button overflowing +.geodir-add-files .moxie-shim { + position: initial !important; + background: transparent; // this is for divi theme that does background position stuff and breaks it. +} \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_wp_core.scss b/vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_wp_core.scss index 604148f..c76b772 100644 --- a/vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_wp_core.scss +++ b/vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_wp_core.scss @@ -79,4 +79,10 @@ html[data-scroll='0'],html:not([data-scroll]){ } /* Fix conflicts calendar year selector */ -body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block} \ No newline at end of file +body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inline-block} + +// Uploader in safari button overflowing +.geodir-add-files .moxie-shim { + position: initial !important; + background: transparent; // this is for divi theme that does background position stuff and breaks it. +} \ No newline at end of file diff --git a/vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php b/vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php index 8001a17..9fdedc7 100644 --- a/vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php +++ b/vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php @@ -15,7 +15,7 @@ */ add_action('after_setup_theme', function () { global $ayecode_ui_version,$ayecode_ui_file_key; - $this_version = "0.1.98"; + $this_version = "0.2.6"; if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){ $ayecode_ui_version = $this_version ; $ayecode_ui_file_key = wp_hash( __FILE__ ); diff --git a/vendor/ayecode/wp-ayecode-ui/change-log.txt b/vendor/ayecode/wp-ayecode-ui/change-log.txt index 3d5724f..9c0a4db 100644 --- a/vendor/ayecode/wp-ayecode-ui/change-log.txt +++ b/vendor/ayecode/wp-ayecode-ui/change-log.txt @@ -1,3 +1,26 @@ += 0.2.6 - 2024-01-25 = +* Single quote breaks validation message - FIXED +* WP Editor Styles can now style headings, links, typography - ADDED + += 0.2.5 - 2023-12-14 = +* Update textdomain - CHANGED +* Inline CSS breaks p element in block editor - FIXED + += 0.2.4 = +* Last ios fix broke standard image select from library - FIXED + += 0.2.3 = +* iOS add listing add images button not working - FIXED + += 0.2.1 = +* Manage native mobile datepicker for date or time input on mobile - CHANGED +* plupload button on safari can overflow and block other page elements - FIXED + += 0.2.0 = +* color-scheme-flip-on-scroll feature should flip when mobile menu opened even if not scrolled - FIXED +* Font awesome icon-picker searcher updated to latest 6.x - UPDATED +* Icon picker will now show icons v5 or v6 depending on Font Awesome Settings - CHANGED + = 0.1.98 = * Greedy tab links not showing properly in mobile device - FIXED diff --git a/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php b/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php index cd23031..f89040a 100644 --- a/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php +++ b/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php @@ -35,7 +35,7 @@ class AyeCode_UI_Settings { * * @var string */ - public $version = '0.1.98'; + public $version = '0.2.6'; /** * Class textdomain. @@ -434,6 +434,8 @@ public function is_aui_screen(){ } } + + return apply_filters( 'aui_load_on_admin' , $load ); } @@ -513,11 +515,6 @@ public function enqueue_style() { th, td, div, h2 { box-sizing: content-box; } - p { - font-size: 13px; - line-height: 1.5; - margin: 1em 0; - } h1, h2, h3, h4, h5, h6 { display: block; font-weight: 600; @@ -657,8 +654,12 @@ public function enqueue_scripts() { // flatpickr wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); - // flatpickr - wp_register_script( 'iconpicker', $this->url . 'assets/js/fa-iconpicker.min.js', array(), $this->version ); + // iconpicker + if ( defined( 'FAS_ICONPICKER_JS_URL' ) ) { + wp_register_script( 'iconpicker', FAS_ICONPICKER_JS_URL, array(), $this->version ); + }else{ + wp_register_script( 'iconpicker', $this->url . 'assets/js/fa-iconpicker.min.js', array(), $this->version ); + } // Bootstrap file browser wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); @@ -840,129 +841,118 @@ public function get_settings() { */ public function settings_page() { if ( ! current_user_can( 'manage_options' ) ) { - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); + wp_die( __( 'You do not have sufficient permissions to access this page.', 'ayecode-connect' ) ); } $overrides = apply_filters( 'ayecode-ui-settings', array(), array(), array() ); ?>

              name; ?>

              -

              +

              -

              -

              +

              +

              alert(array( 'type'=> 'info', - 'content'=> __("Some options are disabled as your current theme is overriding them.",'aui') + 'content'=> __("Some options are disabled as your current theme is overriding them.", 'ayecode-connect' ) )); } ?>
              - +
              -

              +

              - + - + - +
              /> -

              +

              -

              (wp-admin)

              +

              (wp-admin)

              - + - + - + -
              -

              +

              -
              -
              version; ?>
              - add_section('aui_settings', array( - 'title' => __('AyeCode UI','aui'), + 'title' => __('AyeCode UI', 'ayecode-connect' ), 'priority' => 120, )); @@ -1002,7 +992,7 @@ public function customizer_settings($wp_customize){ 'transport' => 'refresh', )); $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( - 'label' => __('Primary Color','aui'), + 'label' => __('Primary Color', 'ayecode-connect' ), 'section' => 'aui_settings', 'settings' => 'aui_options[color_primary]', ))); @@ -1015,7 +1005,7 @@ public function customizer_settings($wp_customize){ 'transport' => 'refresh', )); $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( - 'label' => __('Secondary Color','aui'), + 'label' => __('Secondary Color', 'ayecode-connect' ), 'section' => 'aui_settings', 'settings' => 'aui_options[color_secondary]', ))); @@ -1107,15 +1097,15 @@ public static function custom_css($compatibility = true) { echo self::bs3_compat_css(); } + $current_screen = function_exists('get_current_screen' ) ? get_current_screen() : ''; + $is_fse = false; + if ( is_admin() && ( !empty($_REQUEST['postType']) || $current_screen->is_block_editor() ) && ( defined( 'BLOCKSTRAP_VERSION' ) || defined( 'AUI_FSE' ) ) ) { + $is_fse = true; + } + if(!empty($colors)){ $d_colors = self::get_colors(true); - $current_screen = function_exists('get_current_screen' ) ? get_current_screen() : ''; - $is_fse = false; - if ( is_admin() && ( !empty($_REQUEST['postType']) || $current_screen->is_block_editor() ) && ( defined( 'BLOCKSTRAP_VERSION' ) || defined( 'AUI_FSE' ) ) ) { - $is_fse = true; - } - // $is_fse = !empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'; foreach($colors as $key => $color ){ if((empty( $d_colors[$key]) || $d_colors[$key] != $color) || $is_fse ) { @@ -1134,10 +1124,12 @@ public static function custom_css($compatibility = true) { echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; } - if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) ){ + if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) ){ $css = ''; $theme_settings = wp_get_global_styles(); +// print_r( $theme_settings);exit; + // font face if( !empty( $theme_settings['typography']['fontFamily'] ) ){ $t_fontface = str_replace( array('var:preset|','font-family|'), array('--wp--preset--','font-family--'), $theme_settings['typography']['fontFamily'] ); //var(--wp--preset--font-family--poppins) @@ -1145,12 +1137,106 @@ public static function custom_css($compatibility = true) { } // font size - $css .= '--bs-body-font-size: var(--wp--preset--font-size--small);'; + if( !empty( $theme_settings['typography']['fontSize'] ) ){ + $css .= '--bs-body-font-size: ' . esc_attr( $theme_settings['typography']['fontSize'] ) . ' ;'; + } + + // line height + if( !empty( $theme_settings['typography']['lineHeight'] ) ){ + $css .= '--bs-body-line-height: ' . esc_attr( $theme_settings['typography']['lineHeight'] ) . ';'; + } + + + // font weight + if( !empty( $theme_settings['typography']['fontWeight'] ) ){ + $css .= '--bs-body-font-weight: ' . esc_attr( $theme_settings['typography']['fontWeight'] ) . ';'; + } + + // Background + if( !empty( $theme_settings['color']['background'] ) ){ + $css .= '--bs-body-bg: ' . esc_attr( $theme_settings['color']['background'] ) . ';'; + } + + // Background Gradient + if( !empty( $theme_settings['color']['gradient'] ) ){ + $css .= 'background: ' . esc_attr( $theme_settings['color']['gradient'] ) . ';'; + } + + // Background Gradient + if( !empty( $theme_settings['color']['gradient'] ) ){ + $css .= 'background: ' . esc_attr( $theme_settings['color']['gradient'] ) . ';'; + } + + // text color + if( !empty( $theme_settings['color']['text'] ) ){ + $css .= '--bs-body-color: ' . esc_attr( $theme_settings['color']['text'] ) . ';'; + } + + + // link colors + if( !empty( $theme_settings['elements']['link']['color']['text'] ) ){ + $css .= '--bs-link-color: ' . esc_attr( $theme_settings['elements']['link']['color']['text'] ) . ';'; + } + if( !empty( $theme_settings['elements']['link'][':hover']['color']['text'] ) ){ + $css .= '--bs-link-hover-color: ' . esc_attr( $theme_settings['elements']['link'][':hover']['color']['text'] ) . ';'; + } + if($css){ - echo 'body{' . $css . '}'; + echo $is_fse ? 'body.editor-styles-wrapper{' . $css . '}' : 'body{' . $css . '}'; + } + + $bep = $is_fse ? 'body.editor-styles-wrapper ' : ''; + + + // Headings + $headings_css = ''; + if( !empty( $theme_settings['elements']['heading']['color']['text'] ) ){ + $headings_css .= "color: " . esc_attr( $theme_settings['elements']['heading']['color']['text'] ) . ";"; + } + + // heading background + if( !empty( $theme_settings['elements']['heading']['color']['background'] ) ){ + $headings_css .= 'background: ' . esc_attr( $theme_settings['elements']['heading']['color']['background'] ) . ';'; + } + + // heading font family + if( !empty( $theme_settings['elements']['heading']['typography']['fontFamily'] ) ){ + $headings_css .= 'font-family: ' . esc_attr( $theme_settings['elements']['heading']['typography']['fontFamily'] ) . ';'; + } + + if( $headings_css ){ + echo "$bep h1,$bep h2,$bep h3, $bep h4,$bep h5,$bep h6{ " . $headings_css . "}"; + } + + $hs = array('h1','h2','h3','h4','h5','h6'); + + foreach($hs as $hn){ + $h_css = ''; + if( !empty( $theme_settings['elements'][$hn]['color']['text'] ) ){ + $h_css .= 'color: ' . esc_attr( $theme_settings['elements'][$hn]['color']['text'] ) . ';'; + } + + if( !empty( $theme_settings['elements'][$hn]['typography']['fontSize'] ) ){ + $h_css .= 'font-size: ' . esc_attr( $theme_settings['elements'][$hn]['typography']['fontSize'] ) . ';'; + } + + if( !empty( $theme_settings['elements'][$hn]['typography']['fontFamily'] ) ){ + $h_css .= 'font-family: ' . esc_attr( $theme_settings['elements'][$hn]['typography']['fontFamily'] ) . ';'; + } + + if($h_css){ + echo $bep . $hn . '{'.$h_css.'}'; + } } + +// wp_mail('x@x.com','ss',print_r($_SERVER,true).'@@@'); +// print_r($_SERVER);exit; + + + + } ?> @@ -2129,71 +2215,71 @@ public function get_examples(){ */ public static function calendar_params() { $params = array( - 'month_long_1' => __( 'January', 'aui' ), - 'month_long_2' => __( 'February', 'aui' ), - 'month_long_3' => __( 'March', 'aui' ), - 'month_long_4' => __( 'April', 'aui' ), - 'month_long_5' => __( 'May', 'aui' ), - 'month_long_6' => __( 'June', 'aui' ), - 'month_long_7' => __( 'July', 'aui' ), - 'month_long_8' => __( 'August', 'aui' ), - 'month_long_9' => __( 'September', 'aui' ), - 'month_long_10' => __( 'October', 'aui' ), - 'month_long_11' => __( 'November', 'aui' ), - 'month_long_12' => __( 'December', 'aui' ), - 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), - 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), - 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), - 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), - 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), - 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), - 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), - 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), - 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), - 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), - 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), - 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), - 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), - 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), - 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), - 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), - 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), - 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), - 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), - 'day_s2_1' => __( 'Su', 'aui' ), - 'day_s2_2' => __( 'Mo', 'aui' ), - 'day_s2_3' => __( 'Tu', 'aui' ), - 'day_s2_4' => __( 'We', 'aui' ), - 'day_s2_5' => __( 'Th', 'aui' ), - 'day_s2_6' => __( 'Fr', 'aui' ), - 'day_s2_7' => __( 'Sa', 'aui' ), - 'day_s3_1' => __( 'Sun', 'aui' ), - 'day_s3_2' => __( 'Mon', 'aui' ), - 'day_s3_3' => __( 'Tue', 'aui' ), - 'day_s3_4' => __( 'Wed', 'aui' ), - 'day_s3_5' => __( 'Thu', 'aui' ), - 'day_s3_6' => __( 'Fri', 'aui' ), - 'day_s3_7' => __( 'Sat', 'aui' ), - 'day_s5_1' => __( 'Sunday', 'aui' ), - 'day_s5_2' => __( 'Monday', 'aui' ), - 'day_s5_3' => __( 'Tuesday', 'aui' ), - 'day_s5_4' => __( 'Wednesday', 'aui' ), - 'day_s5_5' => __( 'Thursday', 'aui' ), - 'day_s5_6' => __( 'Friday', 'aui' ), - 'day_s5_7' => __( 'Saturday', 'aui' ), - 'am_lower' => __( 'am', 'aui' ), - 'pm_lower' => __( 'pm', 'aui' ), - 'am_upper' => __( 'AM', 'aui' ), - 'pm_upper' => __( 'PM', 'aui' ), + 'month_long_1' => __( 'January', 'ayecode-connect' ), + 'month_long_2' => __( 'February', 'ayecode-connect' ), + 'month_long_3' => __( 'March', 'ayecode-connect' ), + 'month_long_4' => __( 'April', 'ayecode-connect' ), + 'month_long_5' => __( 'May', 'ayecode-connect' ), + 'month_long_6' => __( 'June', 'ayecode-connect' ), + 'month_long_7' => __( 'July', 'ayecode-connect' ), + 'month_long_8' => __( 'August', 'ayecode-connect' ), + 'month_long_9' => __( 'September', 'ayecode-connect' ), + 'month_long_10' => __( 'October', 'ayecode-connect' ), + 'month_long_11' => __( 'November', 'ayecode-connect' ), + 'month_long_12' => __( 'December', 'ayecode-connect' ), + 'month_s_1' => _x( 'Jan', 'January abbreviation', 'ayecode-connect' ), + 'month_s_2' => _x( 'Feb', 'February abbreviation', 'ayecode-connect' ), + 'month_s_3' => _x( 'Mar', 'March abbreviation', 'ayecode-connect' ), + 'month_s_4' => _x( 'Apr', 'April abbreviation', 'ayecode-connect' ), + 'month_s_5' => _x( 'May', 'May abbreviation', 'ayecode-connect' ), + 'month_s_6' => _x( 'Jun', 'June abbreviation', 'ayecode-connect' ), + 'month_s_7' => _x( 'Jul', 'July abbreviation', 'ayecode-connect' ), + 'month_s_8' => _x( 'Aug', 'August abbreviation', 'ayecode-connect' ), + 'month_s_9' => _x( 'Sep', 'September abbreviation', 'ayecode-connect' ), + 'month_s_10' => _x( 'Oct', 'October abbreviation', 'ayecode-connect' ), + 'month_s_11' => _x( 'Nov', 'November abbreviation', 'ayecode-connect' ), + 'month_s_12' => _x( 'Dec', 'December abbreviation', 'ayecode-connect' ), + 'day_s1_1' => _x( 'S', 'Sunday initial', 'ayecode-connect' ), + 'day_s1_2' => _x( 'M', 'Monday initial', 'ayecode-connect' ), + 'day_s1_3' => _x( 'T', 'Tuesday initial', 'ayecode-connect' ), + 'day_s1_4' => _x( 'W', 'Wednesday initial', 'ayecode-connect' ), + 'day_s1_5' => _x( 'T', 'Friday initial', 'ayecode-connect' ), + 'day_s1_6' => _x( 'F', 'Thursday initial', 'ayecode-connect' ), + 'day_s1_7' => _x( 'S', 'Saturday initial', 'ayecode-connect' ), + 'day_s2_1' => __( 'Su', 'ayecode-connect' ), + 'day_s2_2' => __( 'Mo', 'ayecode-connect' ), + 'day_s2_3' => __( 'Tu', 'ayecode-connect' ), + 'day_s2_4' => __( 'We', 'ayecode-connect' ), + 'day_s2_5' => __( 'Th', 'ayecode-connect' ), + 'day_s2_6' => __( 'Fr', 'ayecode-connect' ), + 'day_s2_7' => __( 'Sa', 'ayecode-connect' ), + 'day_s3_1' => __( 'Sun', 'ayecode-connect' ), + 'day_s3_2' => __( 'Mon', 'ayecode-connect' ), + 'day_s3_3' => __( 'Tue', 'ayecode-connect' ), + 'day_s3_4' => __( 'Wed', 'ayecode-connect' ), + 'day_s3_5' => __( 'Thu', 'ayecode-connect' ), + 'day_s3_6' => __( 'Fri', 'ayecode-connect' ), + 'day_s3_7' => __( 'Sat', 'ayecode-connect' ), + 'day_s5_1' => __( 'Sunday', 'ayecode-connect' ), + 'day_s5_2' => __( 'Monday', 'ayecode-connect' ), + 'day_s5_3' => __( 'Tuesday', 'ayecode-connect' ), + 'day_s5_4' => __( 'Wednesday', 'ayecode-connect' ), + 'day_s5_5' => __( 'Thursday', 'ayecode-connect' ), + 'day_s5_6' => __( 'Friday', 'ayecode-connect' ), + 'day_s5_7' => __( 'Saturday', 'ayecode-connect' ), + 'am_lower' => __( 'am', 'ayecode-connect' ), + 'pm_lower' => __( 'pm', 'ayecode-connect' ), + 'am_upper' => __( 'AM', 'ayecode-connect' ), + 'pm_upper' => __( 'PM', 'ayecode-connect' ), 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), 'time_24hr' => false, - 'year' => __( 'Year', 'aui' ), - 'hour' => __( 'Hour', 'aui' ), - 'minute' => __( 'Minute', 'aui' ), - 'weekAbbreviation' => __( 'Wk', 'aui' ), - 'rangeSeparator' => __( ' to ', 'aui' ), - 'scrollTitle' => __( 'Scroll to increment', 'aui' ), - 'toggleTitle' => __( 'Click to toggle', 'aui' ) + 'year' => __( 'Year', 'ayecode-connect' ), + 'hour' => __( 'Hour', 'ayecode-connect' ), + 'minute' => __( 'Minute', 'ayecode-connect' ), + 'weekAbbreviation' => __( 'Wk', 'ayecode-connect' ), + 'rangeSeparator' => __( ' to ', 'ayecode-connect' ), + 'scrollTitle' => __( 'Scroll to increment', 'ayecode-connect' ), + 'toggleTitle' => __( 'Click to toggle', 'ayecode-connect' ) ); return apply_filters( 'ayecode_ui_calendar_params', $params ); @@ -2291,17 +2377,17 @@ public static function flatpickr_locale() { */ public static function select2_params() { $params = array( - 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), - 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), - 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), - 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), - 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), - 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), - 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), - 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), - 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), - 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), - 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) + 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'ayecode-connect' ), + 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'ayecode-connect' ), + 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'ayecode-connect' ), + 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'ayecode-connect' ), + 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'ayecode-connect' ), + 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'ayecode-connect' ), + 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'ayecode-connect' ), + 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'ayecode-connect' ), + 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'ayecode-connect' ), + 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'ayecode-connect' ), + 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'ayecode-connect' ) ); return apply_filters( 'ayecode_ui_select2_params', $params ); @@ -2340,20 +2426,20 @@ public static function select2_locale() { public static function timeago_locale() { $params = array( 'prefix_ago' => '', - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', + 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'ayecode-connect' ), + 'prefix_after' => _x( 'after', 'time ago', 'ayecode-connect' ) . ' ', 'suffix_after' => '', - 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), - 'minute' => _x( 'about a minute', 'time ago', 'aui' ), - 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), - 'hour' => _x( 'about an hour', 'time ago', 'aui' ), - 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), - 'day' => _x( 'a day', 'time ago', 'aui' ), - 'days' => _x( '%d days', 'time ago', 'aui' ), - 'month' => _x( 'about a month', 'time ago', 'aui' ), - 'months' => _x( '%d months', 'time ago', 'aui' ), - 'year' => _x( 'about a year', 'time ago', 'aui' ), - 'years' => _x( '%d years', 'time ago', 'aui' ), + 'seconds' => _x( 'less than a minute', 'time ago', 'ayecode-connect' ), + 'minute' => _x( 'about a minute', 'time ago', 'ayecode-connect' ), + 'minutes' => _x( '%d minutes', 'time ago', 'ayecode-connect' ), + 'hour' => _x( 'about an hour', 'time ago', 'ayecode-connect' ), + 'hours' => _x( 'about %d hours', 'time ago', 'ayecode-connect' ), + 'day' => _x( 'a day', 'time ago', 'ayecode-connect' ), + 'days' => _x( '%d days', 'time ago', 'ayecode-connect' ), + 'month' => _x( 'about a month', 'time ago', 'ayecode-connect' ), + 'months' => _x( '%d months', 'time ago', 'ayecode-connect' ), + 'year' => _x( 'about a year', 'time ago', 'ayecode-connect' ), + 'years' => _x( '%d years', 'time ago', 'ayecode-connect' ), ); $params = apply_filters( 'ayecode_ui_timeago_params', $params ); @@ -2644,9 +2730,25 @@ function aui_cf_field_apply_rules($el) { $keys[condition.key][index] = false; } } else if (condition.condition === 'contains') { + var avalues = condition.value; + if (!Array.isArray(avalues)) { + if (jQuery.isNumeric(avalues)) { + avalues = [avalues]; + } else { + avalues = avalues.split(","); + } + } switch (field_type) { case 'multiselect': - if (current_value && ((!Array.isArray(current_value) && current_value.indexOf(condition.value) >= 0) || (Array.isArray(current_value) && aui_cf_field_in_array(condition.value, current_value)))) { + var found = false; + for (var key in avalues) { + var svalue = jQuery.isNumeric(avalues[key]) ? avalues[key] : (avalues[key]).trim(); + if (!found && current_value && ((!Array.isArray(current_value) && current_value.indexOf(svalue) >= 0) || (Array.isArray(current_value) && aui_cf_field_in_array(svalue, current_value)))) { + found = true; + } + } + + if (found) { $keys[condition.key][index] = true; } else { $keys[condition.key][index] = false; diff --git a/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php b/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php index cf2ebb0..31122d4 100644 --- a/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php +++ b/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php @@ -123,9 +123,10 @@ public static function input( $args = array() ) { $args['extra_attributes']['data-aui-init'] = 'flatpickr'; // Disable native datetime inputs. - if ( ( $orig_type == 'timepicker' || ! empty( $args['extra_attributes']['data-enable-time'] ) ) && ! isset( $args['extra_attributes']['data-disable-mobile'] ) ) { - $args['extra_attributes']['data-disable-mobile'] = 'true'; - } + $disable_mobile_attr = isset( $args['extra_attributes']['data-disable-mobile'] ) ? $args['extra_attributes']['data-disable-mobile'] : 'true'; + $disable_mobile_attr = apply_filters( 'aui_flatpickr_disable_disable_mobile_attr', $disable_mobile_attr, $args ); + + $args['extra_attributes']['data-disable-mobile'] = $disable_mobile_attr; // set a way to clear field if empty if ( $args['input_group_right'] === '' && $args['clear_icon'] !== false ) { @@ -198,7 +199,7 @@ public static function input( $args = array() ) { // validation text if ( ! empty( $args['validation_text'] ) ) { - $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" '; + $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( addslashes( $args['validation_text'] ) ) . '\')" '; $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" '; } @@ -659,7 +660,7 @@ public static function textarea( $args = array() ) { // validation text if ( ! empty( $args['validation_text'] ) ) { - $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" '; + $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( addslashes( $args['validation_text'] ) ) . '\')" '; $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" '; } diff --git a/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-pagination.php b/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-pagination.php index da9feeb..75ebc2f 100644 --- a/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-pagination.php +++ b/vendor/ayecode/wp-ayecode-ui/includes/components/class-aui-component-pagination.php @@ -26,7 +26,7 @@ public static function get( $args = array() ) { 'mid_size' => 2, 'prev_text' => '', 'next_text' => '', - 'screen_reader_text' => __( 'Posts navigation','aui' ), + 'screen_reader_text' => __( 'Posts navigation', 'ayecode-connect' ), 'before_paging' => '', 'after_paging' => '', 'type' => 'array', diff --git a/vendor/ayecode/wp-ayecode-ui/includes/inc/bs5-js.php b/vendor/ayecode/wp-ayecode-ui/includes/inc/bs5-js.php index 0747776..bc412fc 100644 --- a/vendor/ayecode/wp-ayecode-ui/includes/inc/bs5-js.php +++ b/vendor/ayecode/wp-ayecode-ui/includes/inc/bs5-js.php @@ -972,7 +972,7 @@ function aui_flip_color_scheme_on_scroll($value, $iframe){ navbar.dataset.css = cs_scroll } - if($value > 0 ){ + if($value > 0 || navbar.classList.contains('nav-menu-open') ){ navbar.classList.remove(cs_original); navbar.classList.add(cs_scroll); }else{ @@ -1002,7 +1002,7 @@ function aui_set_data_scroll(){ + if(!empty($_REQUEST['postType'])){ ?> function aui_fse_set_data_scroll() { console.log('init scroll'); let Iframe = document.getElementsByClassName("edit-site-visual-editor__editor-canvas"); @@ -1049,6 +1049,7 @@ function aui_fse_hexToRgb(hex) { * @param $color */ function aui_fse_sync_site_colors($color){ + const getColorHex = () => { const element = jQuery(".edit-site-visual-editor__editor-canvas").contents().find(".editor-styles-wrapper").get(0); const style = element == null ? '' : window.getComputedStyle(element).getPropertyValue('--wp--preset--color--'+$color); @@ -1058,6 +1059,7 @@ function aui_fse_sync_site_colors($color){ // set the initial ColorHex let colorHex = getColorHex(); + wp.data.subscribe(() => { // get the current ColorHex @@ -1070,15 +1072,199 @@ function aui_fse_sync_site_colors($color){ // update the newColorHex variable. colorHex = newColorHex; + + }); + } + + /** + * update colors as the style colour pallet is changed + * @param $color + */ + function aui_fse_sync_site_typography(){ + // const select = wp.data.select('core/edit-site').getSettings(); + // const select = wp.data.select('core/edit-site'); + // console.log(select); + + + // console.log(settings.styles[3].css); + + const getGlobalStyles = () => { + const { select } = wp.data; + const settings = select('core/block-editor').getSettings(); + // console.log(settings); + return settings.styles[3].css ? settings.styles[3].css : null; + + }; + + // set the initial styles + let Styles = getGlobalStyles(); + + // console.log('#####'+colorHex); + + wp.data.subscribe(() => { + + // console.log(wp.data); + + // get the current styles + const newStyles = getGlobalStyles(); + + // console.log(newStyles); + + // only do something if newStyles has changed. + if( newStyles && Styles !== newStyles ) { + + + // heading sizes + aui_updateCssRule('body.editor-styles-wrapper h1', 'font-size', aui_parseCSS(newStyles, 'h1', 'font-size')); + aui_updateCssRule('body.editor-styles-wrapper h2', 'font-size', aui_parseCSS(newStyles, 'h2', 'font-size')); + aui_updateCssRule('body.editor-styles-wrapper h3', 'font-size', aui_parseCSS(newStyles, 'h3', 'font-size')); + aui_updateCssRule('body.editor-styles-wrapper h4', 'font-size', aui_parseCSS(newStyles, 'h4', 'font-size')); + aui_updateCssRule('body.editor-styles-wrapper h5', 'font-size', aui_parseCSS(newStyles, 'h5', 'font-size')); + aui_updateCssRule('body.editor-styles-wrapper h6', 'font-size', aui_parseCSS(newStyles, 'h6', 'font-size')); + + // ALl Headings + aui_updateCssRule('body.editor-styles-wrapper h1, body.editor-styles-wrapper h2, body.editor-styles-wrapper h3, body.editor-styles-wrapper h4, body.editor-styles-wrapper h5, body.editor-styles-wrapper h6', 'font-family', aui_parseCSS(newStyles, 'h1, h2, h3, h4, h5, h6', 'font-family')); + + // individual headings + aui_updateCssRule('body.editor-styles-wrapper h1', 'font-family', aui_parseCSS(newStyles, 'h1{', 'font-family')); + aui_updateCssRule('body.editor-styles-wrapper h2', 'font-family', aui_parseCSS(newStyles, 'h2{', 'font-family')); + aui_updateCssRule('body.editor-styles-wrapper h3', 'font-family', aui_parseCSS(newStyles, 'h3{', 'font-family')); + aui_updateCssRule('body.editor-styles-wrapper h4', 'font-family', aui_parseCSS(newStyles, 'h4{', 'font-family')); + aui_updateCssRule('body.editor-styles-wrapper h5', 'font-family', aui_parseCSS(newStyles, 'h5{', 'font-family')); + aui_updateCssRule('body.editor-styles-wrapper h6', 'font-family', aui_parseCSS(newStyles, 'h6{', 'font-family')); + + // console.log(aui_parseCSS(newStyles, 'h2{', 'font-family')); + + // color + aui_updateCssRule('body.editor-styles-wrapper h1, body.editor-styles-wrapper h2, body.editor-styles-wrapper h3, body.editor-styles-wrapper h4, body.editor-styles-wrapper h5, body.editor-styles-wrapper h6', 'color', aui_parseCSS(newStyles, 'h1, h2, h3, h4, h5, h6', 'color')); + + aui_updateCssRule('body.editor-styles-wrapper h1', 'color', aui_parseCSS(newStyles, 'h1{', 'color')); + aui_updateCssRule('body.editor-styles-wrapper h2', 'color', aui_parseCSS(newStyles, 'h2{', 'color')); + aui_updateCssRule('body.editor-styles-wrapper h3', 'color', aui_parseCSS(newStyles, 'h3{', 'color')); + aui_updateCssRule('body.editor-styles-wrapper h4', 'color', aui_parseCSS(newStyles, 'h4{', 'color')); + aui_updateCssRule('body.editor-styles-wrapper h5', 'color', aui_parseCSS(newStyles, 'h5{', 'color')); + aui_updateCssRule('body.editor-styles-wrapper h6', 'color', aui_parseCSS(newStyles, 'h6{', 'color')); + + + + //background + aui_updateCssRule('body.editor-styles-wrapper h1, body.editor-styles-wrapper h2, body.editor-styles-wrapper h3, body.editor-styles-wrapper h4, body.editor-styles-wrapper h5, body.editor-styles-wrapper h6', 'background', aui_parseCSS(newStyles, 'h1, h2, h3, h4, h5, h6', 'background')); + + aui_updateCssRule('body.editor-styles-wrapper h1', 'background', aui_parseCSS(newStyles, 'h1{', 'background')); + aui_updateCssRule('body.editor-styles-wrapper h2', 'background', aui_parseCSS(newStyles, 'h2{', 'background')); + aui_updateCssRule('body.editor-styles-wrapper h3', 'background', aui_parseCSS(newStyles, 'h3{', 'background')); + aui_updateCssRule('body.editor-styles-wrapper h4', 'background', aui_parseCSS(newStyles, 'h4{', 'background')); + aui_updateCssRule('body.editor-styles-wrapper h5', 'background', aui_parseCSS(newStyles, 'h5{', 'background')); + aui_updateCssRule('body.editor-styles-wrapper h6', 'background', aui_parseCSS(newStyles, 'h6{', 'background')); + + + + // console.log('Font size of h2 is:', fontSize); + } + + // update the newStyles variable. + Styles = newStyles; + + }); } setTimeout(function(){ + aui_sync_admin_styles(); + }, 10000); + + function aui_sync_admin_styles(){ aui_fse_sync_site_colors('primary'); aui_fse_sync_site_colors('danger'); aui_fse_sync_site_colors('warning'); aui_fse_sync_site_colors('info'); - }, 10000); + aui_fse_sync_site_typography(); + } + + // setTimeout(function(){ + // aui_listen_global_style_click(); + // }, 3000); + // + // function aui_listen_global_style_click(){ + // setTimeout(function(){ + // // check for global stylebook clicks + // jQuery('.interface-pinned-items button').click(function() { + // aui_listen_stylebook_click(); + // }); + // }, 500); + // } + // + // + // + // function aui_listen_stylebook_click(){ + // setTimeout(function(){ + // // check for global stylebook clicks + // jQuery('.edit-site-global-styles-sidebar__header .components-button.has-icon').click(function() { + // setTimeout(function(){ + // aui_sync_admin_styles(); + // }, 500); + // }); + // }, 500); + // } + + + + + function aui_parseCSS(cssString, selector, property) { + // Split the CSS string on closing braces + const rules = cssString.split('}'); + + // Search for the selector and property + for (let rule of rules) { + if (rule.includes(selector) && rule.includes(property)) { + // Extract the rule's content + const ruleContent = rule.split('{')[1]; + + // Split properties and search for the desired property + const properties = ruleContent.split(';'); + for (let prop of properties) { + if (prop.includes(property)) { + // Extract and return the property value + return prop.split(':')[1].trim(); + } + } + } + } + + return null; + } + + // Function to update a CSS rule + function aui_updateCssRule(selector, property, value) { + // check fi we are viewing stylebook + + var aui_inline_css = jQuery(".edit-site-visual-editor__editor-canvas").contents().find("#ayecode-ui-fse-inline-css").get(0); + var aui_inline_css_stylebook = jQuery(".edit-site-style-book__iframe").contents().find("#ayecode-ui-fse-inline-css").get(0); + + if (aui_inline_css && aui_inline_css.sheet) { + var styleSheet = aui_inline_css.sheet; + }else if(aui_inline_css_stylebook && aui_inline_css_stylebook.sheet){ + var styleSheet = aui_inline_css_stylebook.sheet; + }else{ + return; + } + + var rules = styleSheet.cssRules || styleSheet.rules; + + // console.log(rules); + + for (var i = 0; i < rules.length; i++) { + if (rules[i].selectorText === selector) { + rules[i].style[property] = value; + // console.log('update rule'); + return; // Exit the function once the rule is found and updated + } + } + + // If the rule doesn't exist, optionally add it + styleSheet.insertRule(`${selector} { ${property}: ${value}; }`, rules.length); + // console.log(`insert rule ${selector}`); + } diff --git a/vendor/ayecode/wp-deactivation-survey/change-log.txt b/vendor/ayecode/wp-deactivation-survey/change-log.txt index d34f8f0..5be79f3 100644 --- a/vendor/ayecode/wp-deactivation-survey/change-log.txt +++ b/vendor/ayecode/wp-deactivation-survey/change-log.txt @@ -1,3 +1,6 @@ += 1.0.7 - 2023-12-14 = +* Update textdomain - CHANGED + = 1.0.6 = * changed remodal data attribute which was causing issue with shareaholic plugin - CHANGED diff --git a/vendor/ayecode/wp-deactivation-survey/plugin.php b/vendor/ayecode/wp-deactivation-survey/plugin.php index ae4a329..2210b66 100644 --- a/vendor/ayecode/wp-deactivation-survey/plugin.php +++ b/vendor/ayecode/wp-deactivation-survey/plugin.php @@ -5,7 +5,7 @@ * @wordpress-plugin * Plugin Name: AyeCode Deactivation Survey Testing * Description: If you see this as a plugin something has gone wrong. - * Version: 1.0.5 + * Version: 1.0.7 * Author: AyeCode * Author URI: https://ayecode.io * Text Domain: ayecode-ds diff --git a/vendor/ayecode/wp-deactivation-survey/wp-deactivation-survey.php b/vendor/ayecode/wp-deactivation-survey/wp-deactivation-survey.php index de7f686..42d76e5 100644 --- a/vendor/ayecode/wp-deactivation-survey/wp-deactivation-survey.php +++ b/vendor/ayecode/wp-deactivation-survey/wp-deactivation-survey.php @@ -19,7 +19,7 @@ class AyeCode_Deactivation_Survey { public static $plugins; - public $version = "1.0.6"; + public $version = "1.0.7"; public static function instance( $plugin = array() ) { if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { @@ -55,19 +55,19 @@ public function scripts() { * We deliberately don't add textdomains here so that double textdomain warning is not given in theme review. */ wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_strings', array( - 'quick_feedback' => 'Quick Feedback', - 'foreword' => 'If you would be kind enough, please tell us why you\'re deactivating?', - 'better_plugins_name' => 'Please tell us which plugin?', - 'please_tell_us' => 'Please tell us the reason so we can improve the plugin', - 'do_not_attach_email' => 'Do not send my e-mail address with this feedback', - 'brief_description' => 'Please give us any feedback that could help us improve', - 'cancel' => 'Cancel', - 'skip_and_deactivate' => 'Skip & Deactivate', - 'submit_and_deactivate' => 'Submit & Deactivate', - 'please_wait' => 'Please wait', - 'get_support' => 'Get Support', - 'documentation' => 'Documentation', - 'thank_you' => 'Thank you!', + 'quick_feedback' => __( 'Quick Feedback', 'ayecode-connect' ), + 'foreword' => __( 'If you would be kind enough, please tell us why you\'re deactivating?', 'ayecode-connect' ), + 'better_plugins_name' => __( 'Please tell us which plugin?', 'ayecode-connect' ), + 'please_tell_us' => __( 'Please tell us the reason so we can improve the plugin', 'ayecode-connect' ), + 'do_not_attach_email' => __( 'Do not send my e-mail address with this feedback', 'ayecode-connect' ), + 'brief_description' => __( 'Please give us any feedback that could help us improve', 'ayecode-connect' ), + 'cancel' => __( 'Cancel', 'ayecode-connect' ), + 'skip_and_deactivate' => __( 'Skip & Deactivate', 'ayecode-connect' ), + 'submit_and_deactivate' => __( 'Submit & Deactivate', 'ayecode-connect' ), + 'please_wait' => __( 'Please wait', 'ayecode-connect' ), + 'get_support' => __( 'Get Support', 'ayecode-connect' ), + 'documentation' => __( 'Documentation', 'ayecode-connect' ), + 'thank_you' => __( 'Thank you!', 'ayecode-connect' ), )); // Plugins @@ -75,29 +75,25 @@ public function scripts() { // Reasons $defaultReasons = array( - 'suddenly-stopped-working' => 'The plugin suddenly stopped working', - 'plugin-broke-site' => 'The plugin broke my site', - 'plugin-setup-difficult' => 'Too difficult to setup', - 'plugin-design-difficult' => 'Too difficult to get the design i want', - 'no-longer-needed' => 'I don\'t need this plugin any more', - 'found-better-plugin' => 'I found a better plugin', - 'temporary-deactivation' => 'It\'s a temporary deactivation, I\'m troubleshooting', - 'other' => 'Other', + 'suddenly-stopped-working' => __( 'The plugin suddenly stopped working', 'ayecode-connect' ), + 'plugin-broke-site' => __( 'The plugin broke my site', 'ayecode-connect' ), + 'plugin-setup-difficult' => __( 'Too difficult to setup', 'ayecode-connect' ), + 'plugin-design-difficult' => __( 'Too difficult to get the design i want', 'ayecode-connect' ), + 'no-longer-needed' => __( 'I don\'t need this plugin any more', 'ayecode-connect' ), + 'found-better-plugin' => __( 'I found a better plugin', 'ayecode-connect' ), + 'temporary-deactivation' => __( 'It\'s a temporary deactivation, I\'m troubleshooting', 'ayecode-connect' ), + 'other' => __( 'Other', 'ayecode-connect' ), ); - foreach($plugins as $plugin) - { - $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); + foreach( $plugins as $plugin ) { + $plugin->reasons = apply_filters( 'ayecode_deactivation_survey_reasons', $defaultReasons, $plugin ); $plugin->url = home_url(); $plugin->activated = 0; } // Send plugin data wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_plugins', $plugins); - } - - } } \ No newline at end of file diff --git a/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.js b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.js new file mode 100644 index 0000000..ef23596 --- /dev/null +++ b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.js @@ -0,0 +1,1093 @@ +/*! + * Font Awesome Icon Picker + * https://farbelous.github.io/fontawesome-iconpicker/ + * + * Originally written by (c) 2016 Javi Aguilar + * Licensed under the MIT License + * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE + * + */ +(function(a) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], a); + } else { + a(jQuery); + } +})(function(a) { + a.ui = a.ui || {}; + var b = a.ui.version = "1.12.1"; + /*! + * jQuery UI Position 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * http://api.jqueryui.com/position/ + */ + (function() { + var b, c = Math.max, d = Math.abs, e = /left|center|right/, f = /top|center|bottom/, g = /[\+\-]\d+(\.[\d]+)?%?/, h = /^\w+/, i = /%$/, j = a.fn.pos; + function k(a, b, c) { + return [ parseFloat(a[0]) * (i.test(a[0]) ? b / 100 : 1), parseFloat(a[1]) * (i.test(a[1]) ? c / 100 : 1) ]; + } + function l(b, c) { + return parseInt(a.css(b, c), 10) || 0; + } + function m(b) { + var c = b[0]; + if (c.nodeType === 9) { + return { + width: b.width(), + height: b.height(), + offset: { + top: 0, + left: 0 + } + }; + } + if (a.isWindow(c)) { + return { + width: b.width(), + height: b.height(), + offset: { + top: b.scrollTop(), + left: b.scrollLeft() + } + }; + } + if (c.preventDefault) { + return { + width: 0, + height: 0, + offset: { + top: c.pageY, + left: c.pageX + } + }; + } + return { + width: b.outerWidth(), + height: b.outerHeight(), + offset: b.offset() + }; + } + a.pos = { + scrollbarWidth: function() { + if (b !== undefined) { + return b; + } + var c, d, e = a("
              " + "
              "), f = e.children()[0]; + a("body").append(e); + c = f.offsetWidth; + e.css("overflow", "scroll"); + d = f.offsetWidth; + if (c === d) { + d = e[0].clientWidth; + } + e.remove(); + return b = c - d; + }, + getScrollInfo: function(b) { + var c = b.isWindow || b.isDocument ? "" : b.element.css("overflow-x"), d = b.isWindow || b.isDocument ? "" : b.element.css("overflow-y"), e = c === "scroll" || c === "auto" && b.width < b.element[0].scrollWidth, f = d === "scroll" || d === "auto" && b.height < b.element[0].scrollHeight; + return { + width: f ? a.pos.scrollbarWidth() : 0, + height: e ? a.pos.scrollbarWidth() : 0 + }; + }, + getWithinInfo: function(b) { + var c = a(b || window), d = a.isWindow(c[0]), e = !!c[0] && c[0].nodeType === 9, f = !d && !e; + return { + element: c, + isWindow: d, + isDocument: e, + offset: f ? a(b).offset() : { + left: 0, + top: 0 + }, + scrollLeft: c.scrollLeft(), + scrollTop: c.scrollTop(), + width: c.outerWidth(), + height: c.outerHeight() + }; + } + }; + a.fn.pos = function(b) { + if (!b || !b.of) { + return j.apply(this, arguments); + } + b = a.extend({}, b); + var i, n, o, p, q, r, s = a(b.of), t = a.pos.getWithinInfo(b.within), u = a.pos.getScrollInfo(t), v = (b.collision || "flip").split(" "), w = {}; + r = m(s); + if (s[0].preventDefault) { + b.at = "left top"; + } + n = r.width; + o = r.height; + p = r.offset; + q = a.extend({}, p); + a.each([ "my", "at" ], function() { + var a = (b[this] || "").split(" "), c, d; + if (a.length === 1) { + a = e.test(a[0]) ? a.concat([ "center" ]) : f.test(a[0]) ? [ "center" ].concat(a) : [ "center", "center" ]; + } + a[0] = e.test(a[0]) ? a[0] : "center"; + a[1] = f.test(a[1]) ? a[1] : "center"; + c = g.exec(a[0]); + d = g.exec(a[1]); + w[this] = [ c ? c[0] : 0, d ? d[0] : 0 ]; + b[this] = [ h.exec(a[0])[0], h.exec(a[1])[0] ]; + }); + if (v.length === 1) { + v[1] = v[0]; + } + if (b.at[0] === "right") { + q.left += n; + } else if (b.at[0] === "center") { + q.left += n / 2; + } + if (b.at[1] === "bottom") { + q.top += o; + } else if (b.at[1] === "center") { + q.top += o / 2; + } + i = k(w.at, n, o); + q.left += i[0]; + q.top += i[1]; + return this.each(function() { + var e, f, g = a(this), h = g.outerWidth(), j = g.outerHeight(), m = l(this, "marginLeft"), r = l(this, "marginTop"), x = h + m + l(this, "marginRight") + u.width, y = j + r + l(this, "marginBottom") + u.height, z = a.extend({}, q), A = k(w.my, g.outerWidth(), g.outerHeight()); + if (b.my[0] === "right") { + z.left -= h; + } else if (b.my[0] === "center") { + z.left -= h / 2; + } + if (b.my[1] === "bottom") { + z.top -= j; + } else if (b.my[1] === "center") { + z.top -= j / 2; + } + z.left += A[0]; + z.top += A[1]; + e = { + marginLeft: m, + marginTop: r + }; + a.each([ "left", "top" ], function(c, d) { + if (a.ui.pos[v[c]]) { + a.ui.pos[v[c]][d](z, { + targetWidth: n, + targetHeight: o, + elemWidth: h, + elemHeight: j, + collisionPosition: e, + collisionWidth: x, + collisionHeight: y, + offset: [ i[0] + A[0], i[1] + A[1] ], + my: b.my, + at: b.at, + within: t, + elem: g + }); + } + }); + if (b.using) { + f = function(a) { + var e = p.left - z.left, f = e + n - h, i = p.top - z.top, k = i + o - j, l = { + target: { + element: s, + left: p.left, + top: p.top, + width: n, + height: o + }, + element: { + element: g, + left: z.left, + top: z.top, + width: h, + height: j + }, + horizontal: f < 0 ? "left" : e > 0 ? "right" : "center", + vertical: k < 0 ? "top" : i > 0 ? "bottom" : "middle" + }; + if (n < h && d(e + f) < n) { + l.horizontal = "center"; + } + if (o < j && d(i + k) < o) { + l.vertical = "middle"; + } + if (c(d(e), d(f)) > c(d(i), d(k))) { + l.important = "horizontal"; + } else { + l.important = "vertical"; + } + b.using.call(this, a, l); + }; + } + g.offset(a.extend(z, { + using: f + })); + }); + }; + a.ui.pos = { + _trigger: function(a, b, c, d) { + if (b.elem) { + b.elem.trigger({ + type: c, + position: a, + positionData: b, + triggered: d + }); + } + }, + fit: { + left: function(b, d) { + a.ui.pos._trigger(b, d, "posCollide", "fitLeft"); + var e = d.within, f = e.isWindow ? e.scrollLeft : e.offset.left, g = e.width, h = b.left - d.collisionPosition.marginLeft, i = f - h, j = h + d.collisionWidth - g - f, k; + if (d.collisionWidth > g) { + if (i > 0 && j <= 0) { + k = b.left + i + d.collisionWidth - g - f; + b.left += i - k; + } else if (j > 0 && i <= 0) { + b.left = f; + } else { + if (i > j) { + b.left = f + g - d.collisionWidth; + } else { + b.left = f; + } + } + } else if (i > 0) { + b.left += i; + } else if (j > 0) { + b.left -= j; + } else { + b.left = c(b.left - h, b.left); + } + a.ui.pos._trigger(b, d, "posCollided", "fitLeft"); + }, + top: function(b, d) { + a.ui.pos._trigger(b, d, "posCollide", "fitTop"); + var e = d.within, f = e.isWindow ? e.scrollTop : e.offset.top, g = d.within.height, h = b.top - d.collisionPosition.marginTop, i = f - h, j = h + d.collisionHeight - g - f, k; + if (d.collisionHeight > g) { + if (i > 0 && j <= 0) { + k = b.top + i + d.collisionHeight - g - f; + b.top += i - k; + } else if (j > 0 && i <= 0) { + b.top = f; + } else { + if (i > j) { + b.top = f + g - d.collisionHeight; + } else { + b.top = f; + } + } + } else if (i > 0) { + b.top += i; + } else if (j > 0) { + b.top -= j; + } else { + b.top = c(b.top - h, b.top); + } + a.ui.pos._trigger(b, d, "posCollided", "fitTop"); + } + }, + flip: { + left: function(b, c) { + a.ui.pos._trigger(b, c, "posCollide", "flipLeft"); + var e = c.within, f = e.offset.left + e.scrollLeft, g = e.width, h = e.isWindow ? e.scrollLeft : e.offset.left, i = b.left - c.collisionPosition.marginLeft, j = i - h, k = i + c.collisionWidth - g - h, l = c.my[0] === "left" ? -c.elemWidth : c.my[0] === "right" ? c.elemWidth : 0, m = c.at[0] === "left" ? c.targetWidth : c.at[0] === "right" ? -c.targetWidth : 0, n = -2 * c.offset[0], o, p; + if (j < 0) { + o = b.left + l + m + n + c.collisionWidth - g - f; + if (o < 0 || o < d(j)) { + b.left += l + m + n; + } + } else if (k > 0) { + p = b.left - c.collisionPosition.marginLeft + l + m + n - h; + if (p > 0 || d(p) < k) { + b.left += l + m + n; + } + } + a.ui.pos._trigger(b, c, "posCollided", "flipLeft"); + }, + top: function(b, c) { + a.ui.pos._trigger(b, c, "posCollide", "flipTop"); + var e = c.within, f = e.offset.top + e.scrollTop, g = e.height, h = e.isWindow ? e.scrollTop : e.offset.top, i = b.top - c.collisionPosition.marginTop, j = i - h, k = i + c.collisionHeight - g - h, l = c.my[1] === "top", m = l ? -c.elemHeight : c.my[1] === "bottom" ? c.elemHeight : 0, n = c.at[1] === "top" ? c.targetHeight : c.at[1] === "bottom" ? -c.targetHeight : 0, o = -2 * c.offset[1], p, q; + if (j < 0) { + q = b.top + m + n + o + c.collisionHeight - g - f; + if (q < 0 || q < d(j)) { + b.top += m + n + o; + } + } else if (k > 0) { + p = b.top - c.collisionPosition.marginTop + m + n + o - h; + if (p > 0 || d(p) < k) { + b.top += m + n + o; + } + } + a.ui.pos._trigger(b, c, "posCollided", "flipTop"); + } + }, + flipfit: { + left: function() { + a.ui.pos.flip.left.apply(this, arguments); + a.ui.pos.fit.left.apply(this, arguments); + }, + top: function() { + a.ui.pos.flip.top.apply(this, arguments); + a.ui.pos.fit.top.apply(this, arguments); + } + } + }; + (function() { + var b, c, d, e, f, g = document.getElementsByTagName("body")[0], h = document.createElement("div"); + b = document.createElement(g ? "div" : "body"); + d = { + visibility: "hidden", + width: 0, + height: 0, + border: 0, + margin: 0, + background: "none" + }; + if (g) { + a.extend(d, { + position: "absolute", + left: "-1000px", + top: "-1000px" + }); + } + for (f in d) { + b.style[f] = d[f]; + } + b.appendChild(h); + c = g || document.documentElement; + c.insertBefore(b, c.firstChild); + h.style.cssText = "position: absolute; left: 10.7432222px;"; + e = a(h).offset().left; + a.support.offsetFractions = e > 10 && e < 11; + b.innerHTML = ""; + c.removeChild(b); + })(); + })(); + var c = a.ui.position; +}); + +(function(a) { + "use strict"; + if (typeof define === "function" && define.amd) { + define([ "jquery" ], a); + } else if (window.jQuery && !window.jQuery.fn.iconpicker) { + a(window.jQuery); + } +})(function(a) { + "use strict"; + var b = { + isEmpty: function(a) { + return a === false || a === "" || a === null || a === undefined; + }, + isEmptyObject: function(a) { + return this.isEmpty(a) === true || a.length === 0; + }, + isElement: function(b) { + return a(b).length > 0; + }, + isString: function(a) { + return typeof a === "string" || a instanceof String; + }, + isArray: function(b) { + return a.isArray(b); + }, + inArray: function(b, c) { + return a.inArray(b, c) !== -1; + }, + throwError: function(a) { + throw "Font Awesome Icon Picker Exception: " + a; + } + }; + var c = function(d, e) { + this._id = c._idCounter++; + this.element = a(d).addClass("iconpicker-element"); + this._trigger("iconpickerCreate", { + iconpickerValue: this.iconpickerValue + }); + this.options = a.extend({}, c.defaultOptions, this.element.data(), e); + this.options.templates = a.extend({}, c.defaultOptions.templates, this.options.templates); + this.options.originalPlacement = this.options.placement; + this.container = b.isElement(this.options.container) ? a(this.options.container) : false; + if (this.container === false) { + if (this.element.is(".dropdown-toggle")) { + this.container = a("~ .dropdown-menu:first", this.element); + } else { + this.container = this.element.is("input,textarea,button,.btn") ? this.element.parent() : this.element; + } + } + this.container.addClass("iconpicker-container"); + if (this.isDropdownMenu()) { + this.options.placement = "inline"; + } + this.input = this.element.is("input,textarea") ? this.element.addClass("iconpicker-input") : false; + if (this.input === false) { + this.input = this.container.find(this.options.input); + if (!this.input.is("input,textarea")) { + this.input = false; + } + } + this.component = this.isDropdownMenu() ? this.container.parent().find(this.options.component) : this.container.find(this.options.component); + if (this.component.length === 0) { + this.component = false; + } else { + this.component.find("i").addClass("iconpicker-component"); + } + this._createPopover(); + this._createIconpicker(); + if (this.getAcceptButton().length === 0) { + this.options.mustAccept = false; + } + if (this.isInputGroup()) { + this.container.parent().append(this.popover); + } else { + this.container.append(this.popover); + } + this._bindElementEvents(); + this._bindWindowEvents(); + this.update(this.options.selected); + if (this.isInline()) { + this.show(); + } + this._trigger("iconpickerCreated", { + iconpickerValue: this.iconpickerValue + }); + }; + c._idCounter = 0; + c.defaultOptions = { + title: false, + selected: false, + defaultValue: false, + placement: "bottom", + collision: "none", + animation: true, + hideOnSelect: true, + showFooter: false, + searchInFooter: false, + mustAccept: false, + selectedCustomClass: "bg-primary", + icons: [], + fullClassFormatter: function(a) { + return a; + }, + input: "input,.iconpicker-input", + inputSearch: false, + container: false, + component: ".input-group-addon,.iconpicker-component", + templates: { + popover: '
              ' + '
              ', + footer: '', + buttons: '' + ' ', + search: '', + iconpicker: '
              ', + iconpickerItem: '' + } + }; + c.batch = function(b, c) { + var d = Array.prototype.slice.call(arguments, 2); + return a(b).each(function() { + var b = a(this).data("iconpicker"); + if (!!b) { + b[c].apply(b, d); + } + }); + }; + c.prototype = { + constructor: c, + options: {}, + _id: 0, + _trigger: function(b, c) { + c = c || {}; + this.element.trigger(a.extend({ + type: b, + iconpickerInstance: this + }, c)); + }, + _createPopover: function() { + this.popover = a(this.options.templates.popover); + var c = this.popover.find(".popover-title"); + if (!!this.options.title) { + c.append(a('
              ' + this.options.title + "
              ")); + } + if (this.hasSeparatedSearchInput() && !this.options.searchInFooter) { + c.append(this.options.templates.search); + } else if (!this.options.title) { + c.remove(); + } + if (this.options.showFooter && !b.isEmpty(this.options.templates.footer)) { + var d = a(this.options.templates.footer); + if (this.hasSeparatedSearchInput() && this.options.searchInFooter) { + d.append(a(this.options.templates.search)); + } + if (!b.isEmpty(this.options.templates.buttons)) { + d.append(a(this.options.templates.buttons)); + } + this.popover.append(d); + } + if (this.options.animation === true) { + this.popover.addClass("fade"); + } + return this.popover; + }, + _createIconpicker: function() { + var b = this; + this.iconpicker = a(this.options.templates.iconpicker); + var c = function(c) { + var d = a(this); + if (d.is("i")) { + d = d.parent(); + } + b._trigger("iconpickerSelect", { + iconpickerItem: d, + iconpickerValue: b.iconpickerValue + }); + if (b.options.mustAccept === false) { + b.update(d.data("iconpickerValue")); + b._trigger("iconpickerSelected", { + iconpickerItem: this, + iconpickerValue: b.iconpickerValue + }); + } else { + b.update(d.data("iconpickerValue"), true); + } + if (b.options.hideOnSelect && b.options.mustAccept === false) { + b.hide(); + } + }; + for (var d in this.options.icons) { + if (typeof this.options.icons[d].title === "string") { + var e = a(this.options.templates.iconpickerItem); + e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title)); + e.data("iconpickerValue", this.options.icons[d].title).on("click.iconpicker", c); + this.iconpicker.find(".iconpicker-items").append(e.attr("title", "." + this.options.icons[d].title)); + if (this.options.icons[d].searchTerms.length > 0) { + var f = ""; + for (var g = 0; g < this.options.icons[d].searchTerms.length; g++) { + f = f + this.options.icons[d].searchTerms[g] + " "; + } + this.iconpicker.find(".iconpicker-items").append(e.attr("data-search-terms", f)); + } + } + } + this.popover.find(".popover-content").append(this.iconpicker); + return this.iconpicker; + }, + _isEventInsideIconpicker: function(b) { + var c = a(b.target); + if ((!c.hasClass("iconpicker-element") || c.hasClass("iconpicker-element") && !c.is(this.element)) && c.parents(".iconpicker-popover").length === 0) { + return false; + } + return true; + }, + _bindElementEvents: function() { + var c = this; + this.getSearchInput().on("keyup.iconpicker", function() { + c.filter(a(this).val().toLowerCase()); + }); + this.getAcceptButton().on("click.iconpicker", function() { + var a = c.iconpicker.find(".iconpicker-selected").get(0); + c.update(c.iconpickerValue); + c._trigger("iconpickerSelected", { + iconpickerItem: a, + iconpickerValue: c.iconpickerValue + }); + if (!c.isInline()) { + c.hide(); + } + }); + this.getCancelButton().on("click.iconpicker", function() { + if (!c.isInline()) { + c.hide(); + } + }); + this.element.on("focus.iconpicker", function(a) { + c.show(); + a.stopPropagation(); + }); + if (this.hasComponent()) { + this.component.on("click.iconpicker", function() { + c.toggle(); + }); + } + if (this.hasInput()) { + this.input.on("keyup.iconpicker paste", function(d) { // Notice the added "paste" + if (d.type === 'paste') { + // Handle the paste event + setTimeout(function() { // Use a timeout to ensure the pasted content is actually in the input + c.update(); + if (c.options.inputSearch === true) { + c.filter(a(this).val().toLowerCase()); + } + }.bind(this), 0); // bind(this) to ensure 'this' inside the setTimeout is the input element + } else { + // Existing keyup event logic + if (!b.inArray(d.keyCode, [ 38, 40, 37, 39, 16, 17, 18, 9, 8, 91, 93, 20, 46, 186, 190, 46, 78, 188, 44, 86 ])) { + c.update(); + } else { + c._updateFormGroupStatus(c.getValid(this.value) !== false); + } + if (c.options.inputSearch === true) { + c.filter(a(this).val().toLowerCase()); + } + } + }); + } + }, + _bindWindowEvents: function() { + var b = a(window.document); + var c = this; + var d = ".iconpicker.inst" + this._id; + a(window).on("resize.iconpicker" + d + " orientationchange.iconpicker" + d, function(a) { + if (c.popover.hasClass("show")) { + c.updatePlacement(); + } + }); + if (!c.isInline()) { + b.on("mouseup" + d, function(a) { + if (!c._isEventInsideIconpicker(a) && !c.isInline()) { + c.hide(); + } + }); + } + }, + _unbindElementEvents: function() { + this.popover.off(".iconpicker"); + this.element.off(".iconpicker"); + if (this.hasInput()) { + this.input.off(".iconpicker"); + } + if (this.hasComponent()) { + this.component.off(".iconpicker"); + } + if (this.hasContainer()) { + this.container.off(".iconpicker"); + } + }, + _unbindWindowEvents: function() { + a(window).off(".iconpicker.inst" + this._id); + a(window.document).off(".iconpicker.inst" + this._id); + }, + updatePlacement: function(b, c) { + b = b || this.options.placement; + this.options.placement = b; + c = c || this.options.collision; + c = c === true ? "flip" : c; + var d = { + at: "right bottom", + my: "right top", + of: this.hasInput() && !this.isInputGroup() ? this.input : this.container, + collision: c === true ? "flip" : c, + within: window + }; + this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner " + "rightTop right rightBottom bottomRight bottomRightCorner " + "bottom bottomLeft bottomLeftCorner leftBottom left leftTop"); + if (typeof b === "object") { + return this.popover.pos(a.extend({}, d, b)); + } + switch (b) { + case "inline": + { + d = false; + } + break; + + case "topLeftCorner": + { + d.my = "right bottom"; + d.at = "left top"; + } + break; + + case "topLeft": + { + d.my = "left bottom"; + d.at = "left top"; + } + break; + + case "top": + { + d.my = "center bottom"; + d.at = "center top"; + } + break; + + case "topRight": + { + d.my = "right bottom"; + d.at = "right top"; + } + break; + + case "topRightCorner": + { + d.my = "left bottom"; + d.at = "right top"; + } + break; + + case "rightTop": + { + d.my = "left bottom"; + d.at = "right center"; + } + break; + + case "right": + { + d.my = "left center"; + d.at = "right center"; + } + break; + + case "rightBottom": + { + d.my = "left top"; + d.at = "right center"; + } + break; + + case "bottomRightCorner": + { + d.my = "left top"; + d.at = "right bottom"; + } + break; + + case "bottomRight": + { + d.my = "right top"; + d.at = "right bottom"; + } + break; + + case "bottom": + { + d.my = "center top"; + d.at = "center bottom"; + } + break; + + case "bottomLeft": + { + d.my = "left top"; + d.at = "left bottom"; + } + break; + + case "bottomLeftCorner": + { + d.my = "right top"; + d.at = "left bottom"; + } + break; + + case "leftBottom": + { + d.my = "right top"; + d.at = "left center"; + } + break; + + case "left": + { + d.my = "right center"; + d.at = "left center"; + } + break; + + case "leftTop": + { + d.my = "right bottom"; + d.at = "left center"; + } + break; + + default: + { + return false; + } + break; + } + this.popover.css({ + display: this.options.placement === "inline" ? "" : "block" + }); + if (d !== false) { + this.popover.pos(d).css("maxWidth", a(window).width() - this.container.offset().left - 5); + } else { + this.popover.css({ + top: "auto", + right: "auto", + bottom: "auto", + left: "auto", + maxWidth: "none" + }); + } + this.popover.addClass(this.options.placement); + return true; + }, + _updateComponents: function() { + this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected " + this.options.selectedCustomClass); + if (this.iconpickerValue) { + console.log(this.iconpickerValue); + this.iconpicker.find("." + this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g, ".")).parent().addClass("iconpicker-selected " + this.options.selectedCustomClass); + } + if (this.hasComponent()) { + var a = this.component.find("i"); + + // check if we have a unknowen class value + if(a.className === undefined && this.input[0].value){ + this.iconpickerValue = this.input[0].value; + } + + if (a.length > 0) { + a.attr("class", this.options.fullClassFormatter(this.iconpickerValue)); + } else { + this.component.html(this.getHtml()); + } + } + }, + _updateFormGroupStatus: function(a) { + if (this.hasInput()) { + if (a !== false) { + this.input.parents(".form-group:first").removeClass("has-error"); + } else { + this.input.parents(".form-group:first").addClass("has-error"); + } + return true; + } + return false; + }, + getValid: function(c) { + if (!b.isString(c)) { + c = ""; + } + var d = c === ""; + c = a.trim(c); + var e = false; + for (var f = 0; f < this.options.icons.length; f++) { + if (this.options.icons[f].title === c) { + e = true; + break; + } + } + if (e || d) { + return c; + } + return false; + }, + setValue: function(a) { + var b = this.getValid(a); + if (b !== false) { + this.iconpickerValue = b; + this._trigger("iconpickerSetValue", { + iconpickerValue: b + }); + return this.iconpickerValue; + } else { + this._trigger("iconpickerInvalid", { + iconpickerValue: a + }); + return false; + } + }, + getHtml: function() { + return ''; + }, + setSourceValue: function(a) { + a = this.setValue(a); + if (a !== false && a !== "") { + if (this.hasInput()) { + this.input.val(this.iconpickerValue); + } else { + this.element.data("iconpickerValue", this.iconpickerValue); + } + this._trigger("iconpickerSetSourceValue", { + iconpickerValue: a + }); + } + return a; + }, + getSourceValue: function(a) { + a = a || this.options.defaultValue; + var b = a; + if (this.hasInput()) { + b = this.input.val(); + } else { + b = this.element.data("iconpickerValue"); + } + if (b === undefined || b === "" || b === null || b === false) { + b = a; + } + return b; + }, + hasInput: function() { + return this.input !== false; + }, + isInputSearch: function() { + return this.hasInput() && this.options.inputSearch === true; + }, + isInputGroup: function() { + return this.container.is(".input-group"); + }, + isDropdownMenu: function() { + return this.container.is(".dropdown-menu"); + }, + hasSeparatedSearchInput: function() { + return this.options.templates.search !== false && !this.isInputSearch(); + }, + hasComponent: function() { + return this.component !== false; + }, + hasContainer: function() { + return this.container !== false; + }, + getAcceptButton: function() { + return this.popover.find(".iconpicker-btn-accept"); + }, + getCancelButton: function() { + return this.popover.find(".iconpicker-btn-cancel"); + }, + getSearchInput: function() { + return this.popover.find(".iconpicker-search"); + }, + filter: function(c) { + if (b.isEmpty(c)) { + this.iconpicker.find(".iconpicker-item").show(); + return a(false); + } else { + var d = []; + this.iconpicker.find(".iconpicker-item").each(function() { + var b = a(this); + var e = b.attr("title").toLowerCase(); + var f = b.attr("data-search-terms") ? b.attr("data-search-terms").toLowerCase() : ""; + e = e + " " + f; + var g = false; + try { + g = new RegExp("(^|\\W)" + c, "g"); + } catch (a) { + g = false; + } + if (g !== false && e.match(g)) { + d.push(b); + b.show(); + } else { + b.hide(); + } + }); + return d; + } + }, + show: function() { + if (this.popover.hasClass("show")) { + return false; + } + a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover), "hide"); + this._trigger("iconpickerShow", { + iconpickerValue: this.iconpickerValue + }); + this.updatePlacement(); + this.popover.addClass("show"); + setTimeout(a.proxy(function() { + this.popover.css("display", this.isInline() ? "" : "block"); + this._trigger("iconpickerShown", { + iconpickerValue: this.iconpickerValue + }); + }, this), this.options.animation ? 300 : 1); + }, + hide: function() { + if (!this.popover.hasClass("show")) { + return false; + } + this._trigger("iconpickerHide", { + iconpickerValue: this.iconpickerValue + }); + this.popover.removeClass("show"); + setTimeout(a.proxy(function() { + this.popover.css("display", "none"); + this.getSearchInput().val(""); + this.filter(""); + this._trigger("iconpickerHidden", { + iconpickerValue: this.iconpickerValue + }); + }, this), this.options.animation ? 300 : 1); + }, + toggle: function() { + if (this.popover.is(":visible")) { + this.hide(); + } else { + this.show(true); + } + }, + update: function(a, b) { + a = a ? a : this.getSourceValue(this.iconpickerValue); + this._trigger("iconpickerUpdate", { + iconpickerValue: this.iconpickerValue + }); + if (b === true) { + a = this.setValue(a); + } else { + a = this.setSourceValue(a); + this._updateFormGroupStatus(a !== false); + } + //if (a !== false) { + this._updateComponents(); + // } + this._trigger("iconpickerUpdated", { + iconpickerValue: this.iconpickerValue + }); + return a; + }, + destroy: function() { + this._trigger("iconpickerDestroy", { + iconpickerValue: this.iconpickerValue + }); + this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element"); + this._unbindElementEvents(); + this._unbindWindowEvents(); + a(this.popover).remove(); + this._trigger("iconpickerDestroyed", { + iconpickerValue: this.iconpickerValue + }); + }, + disable: function() { + if (this.hasInput()) { + this.input.prop("disabled", true); + return true; + } + return false; + }, + enable: function() { + if (this.hasInput()) { + this.input.prop("disabled", false); + return true; + } + return false; + }, + isDisabled: function() { + if (this.hasInput()) { + return this.input.prop("disabled") === true; + } + return false; + }, + isInline: function() { + return this.options.placement === "inline" || this.popover.hasClass("inline"); + } + }; + a.iconpicker = c; + a.fn.iconpicker = function(b) { + return this.each(function() { + var d = a(this); + if (!d.data("iconpicker")) { + d.data("iconpicker", new c(this, typeof b === "object" ? b : {})); + } + }); + }; + c.defaultOptions = a.extend(c.defaultOptions, { + icons: + [{"title":"fab fa-500px","searchTerms":[]},{"title":"fab fa-accessible-icon","searchTerms":["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{"title":"fab fa-accusoft","searchTerms":[]},{"title":"fab fa-acquisitions-incorporated","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-ad","searchTerms":["advertisement","media","newspaper","promotion","publicity"]},{"title":"fas fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"far fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"fas fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile"]},{"title":"far fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile"]},{"title":"fas fa-adjust","searchTerms":["contrast","dark","light","saturation"]},{"title":"fab fa-adn","searchTerms":[]},{"title":"fab fa-adversal","searchTerms":[]},{"title":"fab fa-affiliatetheme","searchTerms":[]},{"title":"fas fa-air-freshener","searchTerms":["car","deodorize","fresh","pine","scent"]},{"title":"fab fa-airbnb","searchTerms":[]},{"title":"fab fa-algolia","searchTerms":[]},{"title":"fas fa-align-center","searchTerms":["format","middle","paragraph","text"]},{"title":"fas fa-align-justify","searchTerms":["format","paragraph","text"]},{"title":"fas fa-align-left","searchTerms":["format","paragraph","text"]},{"title":"fas fa-align-right","searchTerms":["format","paragraph","text"]},{"title":"fab fa-alipay","searchTerms":[]},{"title":"fas fa-allergies","searchTerms":["allergy","freckles","hand","hives","pox","skin","spots"]},{"title":"fab fa-amazon","searchTerms":[]},{"title":"fab fa-amazon-pay","searchTerms":[]},{"title":"fas fa-ambulance","searchTerms":["covid-19","emergency","emt","er","help","hospital","support","vehicle"]},{"title":"fas fa-american-sign-language-interpreting","searchTerms":["asl","deaf","finger","hand","interpret","speak"]},{"title":"fab fa-amilia","searchTerms":[]},{"title":"fas fa-anchor","searchTerms":["berth","boat","dock","embed","link","maritime","moor","secure"]},{"title":"fab fa-android","searchTerms":["robot"]},{"title":"fab fa-angellist","searchTerms":[]},{"title":"fas fa-angle-double-down","searchTerms":["arrows","caret","download","expand"]},{"title":"fas fa-angle-double-left","searchTerms":["arrows","back","caret","laquo","previous","quote"]},{"title":"fas fa-angle-double-right","searchTerms":["arrows","caret","forward","more","next","quote","raquo"]},{"title":"fas fa-angle-double-up","searchTerms":["arrows","caret","collapse","upload"]},{"title":"fas fa-angle-down","searchTerms":["arrow","caret","download","expand"]},{"title":"fas fa-angle-left","searchTerms":["arrow","back","caret","less","previous"]},{"title":"fas fa-angle-right","searchTerms":["arrow","care","forward","more","next"]},{"title":"fas fa-angle-up","searchTerms":["arrow","caret","collapse","upload"]},{"title":"fas fa-angry","searchTerms":["disapprove","emoticon","face","mad","upset"]},{"title":"far fa-angry","searchTerms":["disapprove","emoticon","face","mad","upset"]},{"title":"fab fa-angrycreative","searchTerms":[]},{"title":"fab fa-angular","searchTerms":[]},{"title":"fas fa-ankh","searchTerms":["amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{"title":"fab fa-app-store","searchTerms":[]},{"title":"fab fa-app-store-ios","searchTerms":[]},{"title":"fab fa-apper","searchTerms":[]},{"title":"fab fa-apple","searchTerms":["fruit","ios","mac","operating system","os","osx"]},{"title":"fas fa-apple-alt","searchTerms":["fall","fruit","fuji","macintosh","orchard","seasonal","vegan"]},{"title":"fab fa-apple-pay","searchTerms":[]},{"title":"fas fa-archive","searchTerms":["box","package","save","storage"]},{"title":"fas fa-archway","searchTerms":["arc","monument","road","street","tunnel"]},{"title":"fas fa-arrow-alt-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"far fa-arrow-alt-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"fas fa-arrow-alt-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"far fa-arrow-alt-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"fas fa-arrow-alt-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"far fa-arrow-alt-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"fas fa-arrow-alt-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"far fa-arrow-alt-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"fas fa-arrow-circle-down","searchTerms":["download"]},{"title":"fas fa-arrow-circle-left","searchTerms":["back","previous"]},{"title":"fas fa-arrow-circle-right","searchTerms":["forward","next"]},{"title":"fas fa-arrow-circle-up","searchTerms":["upload"]},{"title":"fas fa-arrow-down","searchTerms":["download"]},{"title":"fas fa-arrow-left","searchTerms":["back","previous"]},{"title":"fas fa-arrow-right","searchTerms":["forward","next"]},{"title":"fas fa-arrow-up","searchTerms":["forward","upload"]},{"title":"fas fa-arrows-alt","searchTerms":["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{"title":"fas fa-arrows-alt-h","searchTerms":["arrows-h","expand","horizontal","landscape","resize","wide"]},{"title":"fas fa-arrows-alt-v","searchTerms":["arrows-v","expand","portrait","resize","tall","vertical"]},{"title":"fab fa-artstation","searchTerms":[]},{"title":"fas fa-assistive-listening-systems","searchTerms":["amplify","audio","deaf","ear","headset","hearing","sound"]},{"title":"fas fa-asterisk","searchTerms":["annotation","details","reference","star"]},{"title":"fab fa-asymmetrik","searchTerms":[]},{"title":"fas fa-at","searchTerms":["address","author","e-mail","email","handle"]},{"title":"fas fa-atlas","searchTerms":["book","directions","geography","globe","map","travel","wayfinding"]},{"title":"fab fa-atlassian","searchTerms":[]},{"title":"fas fa-atom","searchTerms":["atheism","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{"title":"fab fa-audible","searchTerms":[]},{"title":"fas fa-audio-description","searchTerms":["blind","narration","video","visual"]},{"title":"fab fa-autoprefixer","searchTerms":[]},{"title":"fab fa-avianex","searchTerms":[]},{"title":"fab fa-aviato","searchTerms":[]},{"title":"fas fa-award","searchTerms":["honor","praise","prize","recognition","ribbon","trophy"]},{"title":"fab fa-aws","searchTerms":[]},{"title":"fas fa-baby","searchTerms":["child","diaper","doll","human","infant","kid","offspring","person","sprout"]},{"title":"fas fa-baby-carriage","searchTerms":["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{"title":"fas fa-backspace","searchTerms":["command","delete","erase","keyboard","undo"]},{"title":"fas fa-backward","searchTerms":["previous","rewind"]},{"title":"fas fa-bacon","searchTerms":["blt","breakfast","ham","lard","meat","pancetta","pork","rasher"]},{"title":"fas fa-bacteria","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fas fa-bacterium","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fas fa-bahai","searchTerms":["bahai","bah\u00e1'\u00ed","star"]},{"title":"fas fa-balance-scale","searchTerms":["balanced","justice","legal","measure","weight"]},{"title":"fas fa-balance-scale-left","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fas fa-balance-scale-right","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fas fa-ban","searchTerms":["abort","ban","block","cancel","delete","hide","prohibit","remove","stop","trash"]},{"title":"fas fa-band-aid","searchTerms":["bandage","boo boo","first aid","ouch"]},{"title":"fab fa-bandcamp","searchTerms":[]},{"title":"fas fa-barcode","searchTerms":["info","laser","price","scan","upc"]},{"title":"fas fa-bars","searchTerms":["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{"title":"fas fa-baseball-ball","searchTerms":["foul","hardball","league","leather","mlb","softball","sport"]},{"title":"fas fa-basketball-ball","searchTerms":["dribble","dunk","hoop","nba"]},{"title":"fas fa-bath","searchTerms":["clean","shower","tub","wash"]},{"title":"fas fa-battery-empty","searchTerms":["charge","dead","power","status"]},{"title":"fas fa-battery-full","searchTerms":["charge","power","status"]},{"title":"fas fa-battery-half","searchTerms":["charge","power","status"]},{"title":"fas fa-battery-quarter","searchTerms":["charge","low","power","status"]},{"title":"fas fa-battery-three-quarters","searchTerms":["charge","power","status"]},{"title":"fab fa-battle-net","searchTerms":[]},{"title":"fas fa-bed","searchTerms":["lodging","mattress","rest","sleep","travel"]},{"title":"fas fa-beer","searchTerms":["alcohol","ale","bar","beverage","brewery","drink","lager","liquor","mug","stein"]},{"title":"fab fa-behance","searchTerms":[]},{"title":"fab fa-behance-square","searchTerms":[]},{"title":"fas fa-bell","searchTerms":["alarm","alert","chime","notification","reminder"]},{"title":"far fa-bell","searchTerms":["alarm","alert","chime","notification","reminder"]},{"title":"fas fa-bell-slash","searchTerms":["alert","cancel","disabled","notification","off","reminder"]},{"title":"far fa-bell-slash","searchTerms":["alert","cancel","disabled","notification","off","reminder"]},{"title":"fas fa-bezier-curve","searchTerms":["curves","illustrator","lines","path","vector"]},{"title":"fas fa-bible","searchTerms":["book","catholicism","christianity","god","holy"]},{"title":"fas fa-bicycle","searchTerms":["bike","gears","pedal","transportation","vehicle"]},{"title":"fas fa-biking","searchTerms":["bicycle","bike","cycle","cycling","ride","wheel"]},{"title":"fab fa-bimobject","searchTerms":[]},{"title":"fas fa-binoculars","searchTerms":["glasses","magnify","scenic","spyglass","view"]},{"title":"fas fa-biohazard","searchTerms":["covid-19","danger","dangerous","hazmat","medical","radioactive","toxic","waste","zombie"]},{"title":"fas fa-birthday-cake","searchTerms":["anniversary","bakery","candles","celebration","dessert","frosting","holiday","party","pastry"]},{"title":"fab fa-bitbucket","searchTerms":["atlassian","bitbucket-square","git"]},{"title":"fab fa-bitcoin","searchTerms":[]},{"title":"fab fa-bity","searchTerms":[]},{"title":"fab fa-black-tie","searchTerms":[]},{"title":"fab fa-blackberry","searchTerms":[]},{"title":"fas fa-blender","searchTerms":["cocktail","milkshake","mixer","puree","smoothie"]},{"title":"fas fa-blender-phone","searchTerms":["appliance","cocktail","communication","fantasy","milkshake","mixer","puree","silly","smoothie"]},{"title":"fas fa-blind","searchTerms":["cane","disability","person","sight"]},{"title":"fas fa-blog","searchTerms":["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{"title":"fab fa-blogger","searchTerms":[]},{"title":"fab fa-blogger-b","searchTerms":[]},{"title":"fab fa-bluetooth","searchTerms":[]},{"title":"fab fa-bluetooth-b","searchTerms":[]},{"title":"fas fa-bold","searchTerms":["emphasis","format","text"]},{"title":"fas fa-bolt","searchTerms":["electricity","lightning","weather","zap"]},{"title":"fas fa-bomb","searchTerms":["error","explode","fuse","grenade","warning"]},{"title":"fas fa-bone","searchTerms":["calcium","dog","skeletal","skeleton","tibia"]},{"title":"fas fa-bong","searchTerms":["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{"title":"fas fa-book","searchTerms":["diary","documentation","journal","library","read"]},{"title":"fas fa-book-dead","searchTerms":["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","necronomicon","read","skull","spell"]},{"title":"fas fa-book-medical","searchTerms":["diary","documentation","health","history","journal","library","read","record"]},{"title":"fas fa-book-open","searchTerms":["flyer","library","notebook","open book","pamphlet","reading"]},{"title":"fas fa-book-reader","searchTerms":["flyer","library","notebook","open book","pamphlet","reading"]},{"title":"fas fa-bookmark","searchTerms":["favorite","marker","read","remember","save"]},{"title":"far fa-bookmark","searchTerms":["favorite","marker","read","remember","save"]},{"title":"fab fa-bootstrap","searchTerms":[]},{"title":"fas fa-border-all","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fas fa-border-none","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fas fa-border-style","searchTerms":[]},{"title":"fas fa-bowling-ball","searchTerms":["alley","candlepin","gutter","lane","strike","tenpin"]},{"title":"fas fa-box","searchTerms":["archive","container","package","storage"]},{"title":"fas fa-box-open","searchTerms":["archive","container","package","storage","unpack"]},{"title":"fas fa-box-tissue","searchTerms":["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{"title":"fas fa-boxes","searchTerms":["archives","inventory","storage","warehouse"]},{"title":"fas fa-braille","searchTerms":["alphabet","blind","dots","raised","vision"]},{"title":"fas fa-brain","searchTerms":["cerebellum","gray matter","intellect","medulla oblongata","mind","noodle","wit"]},{"title":"fas fa-bread-slice","searchTerms":["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{"title":"fas fa-briefcase","searchTerms":["bag","business","luggage","office","work"]},{"title":"fas fa-briefcase-medical","searchTerms":["doctor","emt","first aid","health"]},{"title":"fas fa-broadcast-tower","searchTerms":["airwaves","antenna","radio","reception","waves"]},{"title":"fas fa-broom","searchTerms":["clean","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","witch"]},{"title":"fas fa-brush","searchTerms":["art","bristles","color","handle","paint"]},{"title":"fab fa-btc","searchTerms":[]},{"title":"fab fa-buffer","searchTerms":[]},{"title":"fas fa-bug","searchTerms":["beetle","error","insect","report"]},{"title":"fas fa-building","searchTerms":["apartment","business","city","company","office","work"]},{"title":"far fa-building","searchTerms":["apartment","business","city","company","office","work"]},{"title":"fas fa-bullhorn","searchTerms":["announcement","broadcast","louder","megaphone","share"]},{"title":"fas fa-bullseye","searchTerms":["archery","goal","objective","target"]},{"title":"fas fa-burn","searchTerms":["caliente","energy","fire","flame","gas","heat","hot"]},{"title":"fab fa-buromobelexperte","searchTerms":[]},{"title":"fas fa-bus","searchTerms":["public transportation","transportation","travel","vehicle"]},{"title":"fas fa-bus-alt","searchTerms":["mta","public transportation","transportation","travel","vehicle"]},{"title":"fas fa-business-time","searchTerms":["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{"title":"fab fa-buy-n-large","searchTerms":[]},{"title":"fab fa-buysellads","searchTerms":[]},{"title":"fas fa-calculator","searchTerms":["abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{"title":"fas fa-calendar","searchTerms":["calendar-o","date","event","schedule","time","when"]},{"title":"far fa-calendar","searchTerms":["calendar-o","date","event","schedule","time","when"]},{"title":"fas fa-calendar-alt","searchTerms":["calendar","date","event","schedule","time","when"]},{"title":"far fa-calendar-alt","searchTerms":["calendar","date","event","schedule","time","when"]},{"title":"fas fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{"title":"far fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{"title":"fas fa-calendar-day","searchTerms":["date","detail","event","focus","schedule","single day","time","today","when"]},{"title":"fas fa-calendar-minus","searchTerms":["calendar","date","delete","event","negative","remove","schedule","time","when"]},{"title":"far fa-calendar-minus","searchTerms":["calendar","date","delete","event","negative","remove","schedule","time","when"]},{"title":"fas fa-calendar-plus","searchTerms":["add","calendar","create","date","event","new","positive","schedule","time","when"]},{"title":"far fa-calendar-plus","searchTerms":["add","calendar","create","date","event","new","positive","schedule","time","when"]},{"title":"fas fa-calendar-times","searchTerms":["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{"title":"far fa-calendar-times","searchTerms":["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{"title":"fas fa-calendar-week","searchTerms":["date","detail","event","focus","schedule","single week","time","today","when"]},{"title":"fas fa-camera","searchTerms":["image","lens","photo","picture","record","shutter","video"]},{"title":"fas fa-camera-retro","searchTerms":["image","lens","photo","picture","record","shutter","video"]},{"title":"fas fa-campground","searchTerms":["camping","fall","outdoors","teepee","tent","tipi"]},{"title":"fab fa-canadian-maple-leaf","searchTerms":["canada","flag","flora","nature","plant"]},{"title":"fas fa-candy-cane","searchTerms":["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{"title":"fas fa-cannabis","searchTerms":["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{"title":"fas fa-capsules","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fas fa-car","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-car-alt","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-car-battery","searchTerms":["auto","electric","mechanic","power"]},{"title":"fas fa-car-crash","searchTerms":["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{"title":"fas fa-car-side","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fas fa-caravan","searchTerms":["camper","motor home","rv","trailer","travel"]},{"title":"fas fa-caret-down","searchTerms":["arrow","dropdown","expand","menu","more","triangle"]},{"title":"fas fa-caret-left","searchTerms":["arrow","back","previous","triangle"]},{"title":"fas fa-caret-right","searchTerms":["arrow","forward","next","triangle"]},{"title":"fas fa-caret-square-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"far fa-caret-square-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"fas fa-caret-square-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"far fa-caret-square-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"fas fa-caret-square-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"far fa-caret-square-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"fas fa-caret-square-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"far fa-caret-square-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"fas fa-caret-up","searchTerms":["arrow","collapse","triangle"]},{"title":"fas fa-carrot","searchTerms":["bugs bunny","orange","vegan","vegetable"]},{"title":"fas fa-cart-arrow-down","searchTerms":["download","save","shopping"]},{"title":"fas fa-cart-plus","searchTerms":["add","create","new","positive","shopping"]},{"title":"fas fa-cash-register","searchTerms":["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{"title":"fas fa-cat","searchTerms":["feline","halloween","holiday","kitten","kitty","meow","pet"]},{"title":"fab fa-cc-amazon-pay","searchTerms":[]},{"title":"fab fa-cc-amex","searchTerms":["amex"]},{"title":"fab fa-cc-apple-pay","searchTerms":[]},{"title":"fab fa-cc-diners-club","searchTerms":[]},{"title":"fab fa-cc-discover","searchTerms":[]},{"title":"fab fa-cc-jcb","searchTerms":[]},{"title":"fab fa-cc-mastercard","searchTerms":[]},{"title":"fab fa-cc-paypal","searchTerms":[]},{"title":"fab fa-cc-stripe","searchTerms":[]},{"title":"fab fa-cc-visa","searchTerms":[]},{"title":"fab fa-centercode","searchTerms":[]},{"title":"fab fa-centos","searchTerms":["linux","operating system","os"]},{"title":"fas fa-certificate","searchTerms":["badge","star","verified"]},{"title":"fas fa-chair","searchTerms":["furniture","seat","sit"]},{"title":"fas fa-chalkboard","searchTerms":["blackboard","learning","school","teaching","whiteboard","writing"]},{"title":"fas fa-chalkboard-teacher","searchTerms":["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{"title":"fas fa-charging-station","searchTerms":["electric","ev","tesla","vehicle"]},{"title":"fas fa-chart-area","searchTerms":["analytics","area","chart","graph"]},{"title":"fas fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"far fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"fas fa-chart-line","searchTerms":["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{"title":"fas fa-chart-pie","searchTerms":["analytics","chart","diagram","graph","pie"]},{"title":"fas fa-check","searchTerms":["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo","yes"]},{"title":"fas fa-check-circle","searchTerms":["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"far fa-check-circle","searchTerms":["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-check-double","searchTerms":["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{"title":"fas fa-check-square","searchTerms":["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"far fa-check-square","searchTerms":["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-cheese","searchTerms":["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{"title":"fas fa-chess","searchTerms":["board","castle","checkmate","game","king","rook","strategy","tournament"]},{"title":"fas fa-chess-bishop","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-board","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-king","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-knight","searchTerms":["board","checkmate","game","horse","strategy"]},{"title":"fas fa-chess-pawn","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-queen","searchTerms":["board","checkmate","game","strategy"]},{"title":"fas fa-chess-rook","searchTerms":["board","castle","checkmate","game","strategy"]},{"title":"fas fa-chevron-circle-down","searchTerms":["arrow","download","dropdown","menu","more"]},{"title":"fas fa-chevron-circle-left","searchTerms":["arrow","back","previous"]},{"title":"fas fa-chevron-circle-right","searchTerms":["arrow","forward","next"]},{"title":"fas fa-chevron-circle-up","searchTerms":["arrow","collapse","upload"]},{"title":"fas fa-chevron-down","searchTerms":["arrow","download","expand"]},{"title":"fas fa-chevron-left","searchTerms":["arrow","back","bracket","previous"]},{"title":"fas fa-chevron-right","searchTerms":["arrow","bracket","forward","next"]},{"title":"fas fa-chevron-up","searchTerms":["arrow","collapse","upload"]},{"title":"fas fa-child","searchTerms":["boy","girl","kid","toddler","young"]},{"title":"fab fa-chrome","searchTerms":["browser"]},{"title":"fab fa-chromecast","searchTerms":[]},{"title":"fas fa-church","searchTerms":["building","cathedral","chapel","community","religion"]},{"title":"fas fa-circle","searchTerms":["circle-thin","diameter","dot","ellipse","notification","round"]},{"title":"far fa-circle","searchTerms":["circle-thin","diameter","dot","ellipse","notification","round"]},{"title":"fas fa-circle-notch","searchTerms":["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{"title":"fas fa-city","searchTerms":["buildings","busy","skyscrapers","urban","windows"]},{"title":"fas fa-clinic-medical","searchTerms":["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{"title":"fas fa-clipboard","searchTerms":["copy","notes","paste","record"]},{"title":"far fa-clipboard","searchTerms":["copy","notes","paste","record"]},{"title":"fas fa-clipboard-check","searchTerms":["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{"title":"fas fa-clipboard-list","searchTerms":["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{"title":"fas fa-clock","searchTerms":["date","late","schedule","time","timer","timestamp","watch"]},{"title":"far fa-clock","searchTerms":["date","late","schedule","time","timer","timestamp","watch"]},{"title":"fas fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"far fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"fas fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"far fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"fas fa-cloud","searchTerms":["atmosphere","fog","overcast","save","upload","weather"]},{"title":"fas fa-cloud-download-alt","searchTerms":["download","export","save"]},{"title":"fas fa-cloud-meatball","searchTerms":["FLDSMDFR","food","spaghetti","storm"]},{"title":"fas fa-cloud-moon","searchTerms":["crescent","evening","lunar","night","partly cloudy","sky"]},{"title":"fas fa-cloud-moon-rain","searchTerms":["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-rain","searchTerms":["precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-showers-heavy","searchTerms":["precipitation","rain","sky","storm"]},{"title":"fas fa-cloud-sun","searchTerms":["clear","day","daytime","fall","outdoors","overcast","partly cloudy"]},{"title":"fas fa-cloud-sun-rain","searchTerms":["day","overcast","precipitation","storm","summer","sunshower"]},{"title":"fas fa-cloud-upload-alt","searchTerms":["cloud-upload","import","save","upload"]},{"title":"fab fa-cloudflare","searchTerms":[]},{"title":"fab fa-cloudscale","searchTerms":[]},{"title":"fab fa-cloudsmith","searchTerms":[]},{"title":"fab fa-cloudversify","searchTerms":[]},{"title":"fas fa-cocktail","searchTerms":["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{"title":"fas fa-code","searchTerms":["brackets","code","development","html"]},{"title":"fas fa-code-branch","searchTerms":["branch","code-fork","fork","git","github","rebase","svn","vcs","version"]},{"title":"fab fa-codepen","searchTerms":[]},{"title":"fab fa-codiepie","searchTerms":[]},{"title":"fas fa-coffee","searchTerms":["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{"title":"fas fa-cog","searchTerms":["gear","mechanical","settings","sprocket","wheel"]},{"title":"fas fa-cogs","searchTerms":["gears","mechanical","settings","sprocket","wheel"]},{"title":"fas fa-coins","searchTerms":["currency","dime","financial","gold","money","penny"]},{"title":"fas fa-columns","searchTerms":["browser","dashboard","organize","panes","split"]},{"title":"fas fa-comment","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comment","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comment-alt","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comment-alt","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comment-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fas fa-comment-dots","searchTerms":["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{"title":"far fa-comment-dots","searchTerms":["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{"title":"fas fa-comment-medical","searchTerms":["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{"title":"fas fa-comment-slash","searchTerms":["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{"title":"fas fa-comments","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"far fa-comments","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fas fa-comments-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fas fa-compact-disc","searchTerms":["album","bluray","cd","disc","dvd","media","movie","music","record","video","vinyl"]},{"title":"fas fa-compass","searchTerms":["directions","directory","location","menu","navigation","safari","travel"]},{"title":"far fa-compass","searchTerms":["directions","directory","location","menu","navigation","safari","travel"]},{"title":"fas fa-compress","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-compress-alt","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-compress-arrows-alt","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fas fa-concierge-bell","searchTerms":["attention","hotel","receptionist","service","support"]},{"title":"fab fa-confluence","searchTerms":["atlassian"]},{"title":"fab fa-connectdevelop","searchTerms":[]},{"title":"fab fa-contao","searchTerms":[]},{"title":"fas fa-cookie","searchTerms":["baked good","chips","chocolate","eat","snack","sweet","treat"]},{"title":"fas fa-cookie-bite","searchTerms":["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{"title":"fas fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"far fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"fas fa-copyright","searchTerms":["brand","mark","register","trademark"]},{"title":"far fa-copyright","searchTerms":["brand","mark","register","trademark"]},{"title":"fab fa-cotton-bureau","searchTerms":["clothing","t-shirts","tshirts"]},{"title":"fas fa-couch","searchTerms":["chair","cushion","furniture","relax","sofa"]},{"title":"fab fa-cpanel","searchTerms":[]},{"title":"fab fa-creative-commons","searchTerms":[]},{"title":"fab fa-creative-commons-by","searchTerms":[]},{"title":"fab fa-creative-commons-nc","searchTerms":[]},{"title":"fab fa-creative-commons-nc-eu","searchTerms":[]},{"title":"fab fa-creative-commons-nc-jp","searchTerms":[]},{"title":"fab fa-creative-commons-nd","searchTerms":[]},{"title":"fab fa-creative-commons-pd","searchTerms":[]},{"title":"fab fa-creative-commons-pd-alt","searchTerms":[]},{"title":"fab fa-creative-commons-remix","searchTerms":[]},{"title":"fab fa-creative-commons-sa","searchTerms":[]},{"title":"fab fa-creative-commons-sampling","searchTerms":[]},{"title":"fab fa-creative-commons-sampling-plus","searchTerms":[]},{"title":"fab fa-creative-commons-share","searchTerms":[]},{"title":"fab fa-creative-commons-zero","searchTerms":[]},{"title":"fas fa-credit-card","searchTerms":["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{"title":"far fa-credit-card","searchTerms":["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{"title":"fab fa-critical-role","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-crop","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fas fa-crop-alt","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fas fa-cross","searchTerms":["catholicism","christianity","church","jesus"]},{"title":"fas fa-crosshairs","searchTerms":["aim","bullseye","gpd","picker","position"]},{"title":"fas fa-crow","searchTerms":["bird","bullfrog","fauna","halloween","holiday","toad"]},{"title":"fas fa-crown","searchTerms":["award","favorite","king","queen","royal","tiara"]},{"title":"fas fa-crutch","searchTerms":["cane","injury","mobility","wheelchair"]},{"title":"fab fa-css3","searchTerms":["code"]},{"title":"fab fa-css3-alt","searchTerms":[]},{"title":"fas fa-cube","searchTerms":["3d","block","dice","package","square","tesseract"]},{"title":"fas fa-cubes","searchTerms":["3d","block","dice","package","pyramid","square","stack","tesseract"]},{"title":"fas fa-cut","searchTerms":["clip","scissors","snip"]},{"title":"fab fa-cuttlefish","searchTerms":[]},{"title":"fab fa-d-and-d","searchTerms":[]},{"title":"fab fa-d-and-d-beyond","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{"title":"fab fa-dailymotion","searchTerms":[]},{"title":"fab fa-dashcube","searchTerms":[]},{"title":"fas fa-database","searchTerms":["computer","development","directory","memory","storage"]},{"title":"fas fa-deaf","searchTerms":["ear","hearing","sign language"]},{"title":"fab fa-deezer","searchTerms":[]},{"title":"fab fa-delicious","searchTerms":[]},{"title":"fas fa-democrat","searchTerms":["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{"title":"fab fa-deploydog","searchTerms":[]},{"title":"fab fa-deskpro","searchTerms":[]},{"title":"fas fa-desktop","searchTerms":["computer","cpu","demo","desktop","device","imac","machine","monitor","pc","screen"]},{"title":"fab fa-dev","searchTerms":[]},{"title":"fab fa-deviantart","searchTerms":[]},{"title":"fas fa-dharmachakra","searchTerms":["buddhism","buddhist","wheel of dharma"]},{"title":"fab fa-dhl","searchTerms":["Dalsey","Hillblom and Lynn","german","package","shipping"]},{"title":"fas fa-diagnoses","searchTerms":["analyze","detect","diagnosis","examine","medicine"]},{"title":"fab fa-diaspora","searchTerms":[]},{"title":"fas fa-dice","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-d20","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fas fa-dice-d6","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fas fa-dice-five","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-four","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-one","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-six","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-three","searchTerms":["chance","gambling","game","roll"]},{"title":"fas fa-dice-two","searchTerms":["chance","gambling","game","roll"]},{"title":"fab fa-digg","searchTerms":[]},{"title":"fab fa-digital-ocean","searchTerms":[]},{"title":"fas fa-digital-tachograph","searchTerms":["data","distance","speed","tachometer"]},{"title":"fas fa-directions","searchTerms":["map","navigation","sign","turn"]},{"title":"fab fa-discord","searchTerms":[]},{"title":"fab fa-discourse","searchTerms":[]},{"title":"fas fa-disease","searchTerms":["bacteria","cancer","covid-19","illness","infection","sickness","virus"]},{"title":"fas fa-divide","searchTerms":["arithmetic","calculus","division","math"]},{"title":"fas fa-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"far fa-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"fas fa-dna","searchTerms":["double helix","genetic","helix","molecule","protein"]},{"title":"fab fa-dochub","searchTerms":[]},{"title":"fab fa-docker","searchTerms":[]},{"title":"fas fa-dog","searchTerms":["animal","canine","fauna","mammal","pet","pooch","puppy","woof"]},{"title":"fas fa-dollar-sign","searchTerms":["$","cost","dollar-sign","money","price","usd"]},{"title":"fas fa-dolly","searchTerms":["carry","shipping","transport"]},{"title":"fas fa-dolly-flatbed","searchTerms":["carry","inventory","shipping","transport"]},{"title":"fas fa-donate","searchTerms":["contribute","generosity","gift","give"]},{"title":"fas fa-door-closed","searchTerms":["enter","exit","locked"]},{"title":"fas fa-door-open","searchTerms":["enter","exit","welcome"]},{"title":"fas fa-dot-circle","searchTerms":["bullseye","notification","target"]},{"title":"far fa-dot-circle","searchTerms":["bullseye","notification","target"]},{"title":"fas fa-dove","searchTerms":["bird","fauna","flying","peace","war"]},{"title":"fas fa-download","searchTerms":["export","hard drive","save","transfer"]},{"title":"fab fa-draft2digital","searchTerms":[]},{"title":"fas fa-drafting-compass","searchTerms":["design","map","mechanical drawing","plot","plotting"]},{"title":"fas fa-dragon","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","fire","lizard","serpent"]},{"title":"fas fa-draw-polygon","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fab fa-dribbble","searchTerms":[]},{"title":"fab fa-dribbble-square","searchTerms":[]},{"title":"fab fa-dropbox","searchTerms":[]},{"title":"fas fa-drum","searchTerms":["instrument","music","percussion","snare","sound"]},{"title":"fas fa-drum-steelpan","searchTerms":["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{"title":"fas fa-drumstick-bite","searchTerms":["bone","chicken","leg","meat","poultry","turkey"]},{"title":"fab fa-drupal","searchTerms":[]},{"title":"fas fa-dumbbell","searchTerms":["exercise","gym","strength","weight","weight-lifting"]},{"title":"fas fa-dumpster","searchTerms":["alley","bin","commercial","trash","waste"]},{"title":"fas fa-dumpster-fire","searchTerms":["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{"title":"fas fa-dungeon","searchTerms":["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{"title":"fab fa-dyalog","searchTerms":[]},{"title":"fab fa-earlybirds","searchTerms":[]},{"title":"fab fa-ebay","searchTerms":[]},{"title":"fab fa-edge","searchTerms":["browser","ie"]},{"title":"fab fa-edge-legacy","searchTerms":[]},{"title":"fas fa-edit","searchTerms":["edit","pen","pencil","update","write"]},{"title":"far fa-edit","searchTerms":["edit","pen","pencil","update","write"]},{"title":"fas fa-egg","searchTerms":["breakfast","chicken","easter","shell","yolk"]},{"title":"fas fa-eject","searchTerms":["abort","cancel","cd","discharge"]},{"title":"fab fa-elementor","searchTerms":[]},{"title":"fas fa-ellipsis-h","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{"title":"fas fa-ellipsis-v","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{"title":"fab fa-ello","searchTerms":[]},{"title":"fab fa-ember","searchTerms":[]},{"title":"fab fa-empire","searchTerms":[]},{"title":"fas fa-envelope","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"far fa-envelope","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"far fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-open-text","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fas fa-envelope-square","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fab fa-envira","searchTerms":["leaf"]},{"title":"fas fa-equals","searchTerms":["arithmetic","even","match","math"]},{"title":"fas fa-eraser","searchTerms":["art","delete","remove","rubber"]},{"title":"fab fa-erlang","searchTerms":[]},{"title":"fab fa-ethereum","searchTerms":[]},{"title":"fas fa-ethernet","searchTerms":["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{"title":"fab fa-etsy","searchTerms":[]},{"title":"fas fa-euro-sign","searchTerms":["currency","dollar","exchange","money"]},{"title":"fab fa-evernote","searchTerms":[]},{"title":"fas fa-exchange-alt","searchTerms":["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{"title":"fas fa-exclamation","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-exclamation-circle","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-exclamation-triangle","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fas fa-expand","searchTerms":["bigger","enlarge","fullscreen","resize"]},{"title":"fas fa-expand-alt","searchTerms":["arrows","bigger","enlarge","fullscreen","resize"]},{"title":"fas fa-expand-arrows-alt","searchTerms":["bigger","enlarge","fullscreen","move","resize"]},{"title":"fab fa-expeditedssl","searchTerms":[]},{"title":"fas fa-external-link-alt","searchTerms":["external-link","new","open","share"]},{"title":"fas fa-external-link-square-alt","searchTerms":["external-link-square","new","open","share"]},{"title":"fas fa-eye","searchTerms":["look","optic","see","seen","show","sight","views","visible"]},{"title":"far fa-eye","searchTerms":["look","optic","see","seen","show","sight","views","visible"]},{"title":"fas fa-eye-dropper","searchTerms":["beaker","clone","color","copy","eyedropper","pipette"]},{"title":"fas fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"far fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"fab fa-facebook","searchTerms":["facebook-official","social network"]},{"title":"fab fa-facebook-f","searchTerms":["facebook"]},{"title":"fab fa-facebook-messenger","searchTerms":[]},{"title":"fab fa-facebook-square","searchTerms":["social network"]},{"title":"fas fa-fan","searchTerms":["ac","air conditioning","blade","blower","cool","hot"]},{"title":"fab fa-fantasy-flight-games","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fas fa-fast-backward","searchTerms":["beginning","first","previous","rewind","start"]},{"title":"fas fa-fast-forward","searchTerms":["end","last","next"]},{"title":"fas fa-faucet","searchTerms":["covid-19","drip","house","hygiene","kitchen","sink","water"]},{"title":"fas fa-fax","searchTerms":["business","communicate","copy","facsimile","send"]},{"title":"fas fa-feather","searchTerms":["bird","light","plucked","quill","write"]},{"title":"fas fa-feather-alt","searchTerms":["bird","light","plucked","quill","write"]},{"title":"fab fa-fedex","searchTerms":["Federal Express","package","shipping"]},{"title":"fab fa-fedora","searchTerms":["linux","operating system","os"]},{"title":"fas fa-female","searchTerms":["human","person","profile","user","woman"]},{"title":"fas fa-fighter-jet","searchTerms":["airplane","fast","fly","goose","maverick","plane","quick","top gun","transportation","travel"]},{"title":"fab fa-figma","searchTerms":["app","design","interface"]},{"title":"fas fa-file","searchTerms":["document","new","page","pdf","resume"]},{"title":"far fa-file","searchTerms":["document","new","page","pdf","resume"]},{"title":"fas fa-file-alt","searchTerms":["document","file-text","invoice","new","page","pdf"]},{"title":"far fa-file-alt","searchTerms":["document","file-text","invoice","new","page","pdf"]},{"title":"fas fa-file-archive","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"far fa-file-archive","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"fas fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"far fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"fas fa-file-code","searchTerms":["css","development","document","html"]},{"title":"far fa-file-code","searchTerms":["css","development","document","html"]},{"title":"fas fa-file-contract","searchTerms":["agreement","binding","document","legal","signature"]},{"title":"fas fa-file-csv","searchTerms":["document","excel","numbers","spreadsheets","table"]},{"title":"fas fa-file-download","searchTerms":["document","export","save"]},{"title":"fas fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"far fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"fas fa-file-export","searchTerms":["download","save"]},{"title":"fas fa-file-image","searchTerms":["document","image","jpg","photo","png"]},{"title":"far fa-file-image","searchTerms":["document","image","jpg","photo","png"]},{"title":"fas fa-file-import","searchTerms":["copy","document","send","upload"]},{"title":"fas fa-file-invoice","searchTerms":["account","bill","charge","document","payment","receipt"]},{"title":"fas fa-file-invoice-dollar","searchTerms":["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{"title":"fas fa-file-medical","searchTerms":["document","health","history","prescription","record"]},{"title":"fas fa-file-medical-alt","searchTerms":["document","health","history","prescription","record"]},{"title":"fas fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"far fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"fas fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"far fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"fas fa-file-prescription","searchTerms":["document","drugs","medical","medicine","rx"]},{"title":"fas fa-file-signature","searchTerms":["John Hancock","contract","document","name"]},{"title":"fas fa-file-upload","searchTerms":["document","import","page","save"]},{"title":"fas fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"far fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"fas fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"far fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"fas fa-fill","searchTerms":["bucket","color","paint","paint bucket"]},{"title":"fas fa-fill-drip","searchTerms":["bucket","color","drop","paint","paint bucket","spill"]},{"title":"fas fa-film","searchTerms":["cinema","movie","strip","video"]},{"title":"fas fa-filter","searchTerms":["funnel","options","separate","sort"]},{"title":"fas fa-fingerprint","searchTerms":["human","id","identification","lock","smudge","touch","unique","unlock"]},{"title":"fas fa-fire","searchTerms":["burn","caliente","flame","heat","hot","popular"]},{"title":"fas fa-fire-alt","searchTerms":["burn","caliente","flame","heat","hot","popular"]},{"title":"fas fa-fire-extinguisher","searchTerms":["burn","caliente","fire fighter","flame","heat","hot","rescue"]},{"title":"fab fa-firefox","searchTerms":["browser"]},{"title":"fab fa-firefox-browser","searchTerms":["browser"]},{"title":"fas fa-first-aid","searchTerms":["emergency","emt","health","medical","rescue"]},{"title":"fab fa-first-order","searchTerms":[]},{"title":"fab fa-first-order-alt","searchTerms":[]},{"title":"fab fa-firstdraft","searchTerms":[]},{"title":"fas fa-fish","searchTerms":["fauna","gold","seafood","swimming"]},{"title":"fas fa-fist-raised","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","hand","ki","monk","resist","strength","unarmed combat"]},{"title":"fas fa-flag","searchTerms":["country","notice","notification","notify","pole","report","symbol"]},{"title":"far fa-flag","searchTerms":["country","notice","notification","notify","pole","report","symbol"]},{"title":"fas fa-flag-checkered","searchTerms":["notice","notification","notify","pole","racing","report","symbol"]},{"title":"fas fa-flag-usa","searchTerms":["betsy ross","country","old glory","stars","stripes","symbol"]},{"title":"fas fa-flask","searchTerms":["beaker","experimental","labs","science"]},{"title":"fab fa-flickr","searchTerms":[]},{"title":"fab fa-flipboard","searchTerms":[]},{"title":"fas fa-flushed","searchTerms":["embarrassed","emoticon","face"]},{"title":"far fa-flushed","searchTerms":["embarrassed","emoticon","face"]},{"title":"fab fa-fly","searchTerms":[]},{"title":"fas fa-folder","searchTerms":["archive","directory","document","file"]},{"title":"far fa-folder","searchTerms":["archive","directory","document","file"]},{"title":"fas fa-folder-minus","searchTerms":["archive","delete","directory","document","file","negative","remove"]},{"title":"fas fa-folder-open","searchTerms":["archive","directory","document","empty","file","new"]},{"title":"far fa-folder-open","searchTerms":["archive","directory","document","empty","file","new"]},{"title":"fas fa-folder-plus","searchTerms":["add","archive","create","directory","document","file","new","positive"]},{"title":"fas fa-font","searchTerms":["alphabet","glyph","text","type","typeface"]},{"title":"fab fa-font-awesome","searchTerms":["meanpath"]},{"title":"fab fa-font-awesome-alt","searchTerms":[]},{"title":"fab fa-font-awesome-flag","searchTerms":[]},{"title":"far fa-font-awesome-logo-full","searchTerms":[]},{"title":"fas fa-font-awesome-logo-full","searchTerms":[]},{"title":"fab fa-font-awesome-logo-full","searchTerms":[]},{"title":"fab fa-fonticons","searchTerms":[]},{"title":"fab fa-fonticons-fi","searchTerms":[]},{"title":"fas fa-football-ball","searchTerms":["ball","fall","nfl","pigskin","seasonal"]},{"title":"fab fa-fort-awesome","searchTerms":["castle"]},{"title":"fab fa-fort-awesome-alt","searchTerms":["castle"]},{"title":"fab fa-forumbee","searchTerms":[]},{"title":"fas fa-forward","searchTerms":["forward","next","skip"]},{"title":"fab fa-foursquare","searchTerms":[]},{"title":"fab fa-free-code-camp","searchTerms":[]},{"title":"fab fa-freebsd","searchTerms":[]},{"title":"fas fa-frog","searchTerms":["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{"title":"fas fa-frown","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"far fa-frown","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"fas fa-frown-open","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"far fa-frown-open","searchTerms":["disapprove","emoticon","face","rating","sad"]},{"title":"fab fa-fulcrum","searchTerms":[]},{"title":"fas fa-funnel-dollar","searchTerms":["filter","money","options","separate","sort"]},{"title":"fas fa-futbol","searchTerms":["ball","football","mls","soccer"]},{"title":"far fa-futbol","searchTerms":["ball","football","mls","soccer"]},{"title":"fab fa-galactic-republic","searchTerms":["politics","star wars"]},{"title":"fab fa-galactic-senate","searchTerms":["star wars"]},{"title":"fas fa-gamepad","searchTerms":["arcade","controller","d-pad","joystick","video","video game"]},{"title":"fas fa-gas-pump","searchTerms":["car","fuel","gasoline","petrol"]},{"title":"fas fa-gavel","searchTerms":["hammer","judge","law","lawyer","opinion"]},{"title":"fas fa-gem","searchTerms":["diamond","jewelry","sapphire","stone","treasure"]},{"title":"far fa-gem","searchTerms":["diamond","jewelry","sapphire","stone","treasure"]},{"title":"fas fa-genderless","searchTerms":["androgynous","asexual","sexless"]},{"title":"fab fa-get-pocket","searchTerms":[]},{"title":"fab fa-gg","searchTerms":[]},{"title":"fab fa-gg-circle","searchTerms":[]},{"title":"fas fa-ghost","searchTerms":["apparition","blinky","clyde","floating","halloween","holiday","inky","pinky","spirit"]},{"title":"fas fa-gift","searchTerms":["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{"title":"fas fa-gifts","searchTerms":["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{"title":"fab fa-git","searchTerms":[]},{"title":"fab fa-git-alt","searchTerms":[]},{"title":"fab fa-git-square","searchTerms":[]},{"title":"fab fa-github","searchTerms":["octocat"]},{"title":"fab fa-github-alt","searchTerms":["octocat"]},{"title":"fab fa-github-square","searchTerms":["octocat"]},{"title":"fab fa-gitkraken","searchTerms":[]},{"title":"fab fa-gitlab","searchTerms":["Axosoft"]},{"title":"fab fa-gitter","searchTerms":[]},{"title":"fas fa-glass-cheers","searchTerms":["alcohol","bar","beverage","celebration","champagne","clink","drink","holiday","new year's eve","party","toast"]},{"title":"fas fa-glass-martini","searchTerms":["alcohol","bar","beverage","drink","liquor"]},{"title":"fas fa-glass-martini-alt","searchTerms":["alcohol","bar","beverage","drink","liquor"]},{"title":"fas fa-glass-whiskey","searchTerms":["alcohol","bar","beverage","bourbon","drink","liquor","neat","rye","scotch","whisky"]},{"title":"fas fa-glasses","searchTerms":["hipster","nerd","reading","sight","spectacles","vision"]},{"title":"fab fa-glide","searchTerms":[]},{"title":"fab fa-glide-g","searchTerms":[]},{"title":"fas fa-globe","searchTerms":["all","coordinates","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-africa","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-americas","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-asia","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fas fa-globe-europe","searchTerms":["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fab fa-gofore","searchTerms":[]},{"title":"fas fa-golf-ball","searchTerms":["caddy","eagle","putt","tee"]},{"title":"fab fa-goodreads","searchTerms":[]},{"title":"fab fa-goodreads-g","searchTerms":[]},{"title":"fab fa-google","searchTerms":[]},{"title":"fab fa-google-drive","searchTerms":[]},{"title":"fab fa-google-pay","searchTerms":[]},{"title":"fab fa-google-play","searchTerms":[]},{"title":"fab fa-google-plus","searchTerms":["google-plus-circle","google-plus-official"]},{"title":"fab fa-google-plus-g","searchTerms":["google-plus","social network"]},{"title":"fab fa-google-plus-square","searchTerms":["social network"]},{"title":"fab fa-google-wallet","searchTerms":[]},{"title":"fas fa-gopuram","searchTerms":["building","entrance","hinduism","temple","tower"]},{"title":"fas fa-graduation-cap","searchTerms":["ceremony","college","graduate","learning","school","student"]},{"title":"fab fa-gratipay","searchTerms":["favorite","heart","like","love"]},{"title":"fab fa-grav","searchTerms":[]},{"title":"fas fa-greater-than","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-greater-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-grimace","searchTerms":["cringe","emoticon","face","teeth"]},{"title":"far fa-grimace","searchTerms":["cringe","emoticon","face","teeth"]},{"title":"fas fa-grin","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-alt","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-alt","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-beam","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-beam","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-beam-sweat","searchTerms":["embarass","emoticon","face","smile"]},{"title":"far fa-grin-beam-sweat","searchTerms":["embarass","emoticon","face","smile"]},{"title":"fas fa-grin-hearts","searchTerms":["emoticon","face","love","smile"]},{"title":"far fa-grin-hearts","searchTerms":["emoticon","face","love","smile"]},{"title":"fas fa-grin-squint","searchTerms":["emoticon","face","laugh","smile"]},{"title":"far fa-grin-squint","searchTerms":["emoticon","face","laugh","smile"]},{"title":"fas fa-grin-squint-tears","searchTerms":["emoticon","face","happy","smile"]},{"title":"far fa-grin-squint-tears","searchTerms":["emoticon","face","happy","smile"]},{"title":"fas fa-grin-stars","searchTerms":["emoticon","face","star-struck"]},{"title":"far fa-grin-stars","searchTerms":["emoticon","face","star-struck"]},{"title":"fas fa-grin-tears","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tears","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue-squint","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue-squint","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-tongue-wink","searchTerms":["LOL","emoticon","face"]},{"title":"far fa-grin-tongue-wink","searchTerms":["LOL","emoticon","face"]},{"title":"fas fa-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"far fa-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"fas fa-grip-horizontal","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-lines","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-lines-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fas fa-grip-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fab fa-gripfire","searchTerms":[]},{"title":"fab fa-grunt","searchTerms":[]},{"title":"fab fa-guilded","searchTerms":[]},{"title":"fas fa-guitar","searchTerms":["acoustic","instrument","music","rock","rock and roll","song","strings"]},{"title":"fab fa-gulp","searchTerms":[]},{"title":"fas fa-h-square","searchTerms":["directions","emergency","hospital","hotel","map"]},{"title":"fab fa-hacker-news","searchTerms":[]},{"title":"fab fa-hacker-news-square","searchTerms":[]},{"title":"fab fa-hackerrank","searchTerms":[]},{"title":"fas fa-hamburger","searchTerms":["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{"title":"fas fa-hammer","searchTerms":["admin","fix","repair","settings","tool"]},{"title":"fas fa-hamsa","searchTerms":["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{"title":"fas fa-hand-holding","searchTerms":["carry","lift"]},{"title":"fas fa-hand-holding-heart","searchTerms":["carry","charity","gift","lift","package"]},{"title":"fas fa-hand-holding-medical","searchTerms":["care","covid-19","donate","help"]},{"title":"fas fa-hand-holding-usd","searchTerms":["$","carry","dollar sign","donation","giving","lift","money","price"]},{"title":"fas fa-hand-holding-water","searchTerms":["carry","covid-19","drought","grow","lift"]},{"title":"fas fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"far fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"fas fa-hand-middle-finger","searchTerms":["flip the bird","gesture","hate","rude"]},{"title":"fas fa-hand-paper","searchTerms":["game","halt","roshambo","stop"]},{"title":"far fa-hand-paper","searchTerms":["game","halt","roshambo","stop"]},{"title":"fas fa-hand-peace","searchTerms":["rest","truce"]},{"title":"far fa-hand-peace","searchTerms":["rest","truce"]},{"title":"fas fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"far fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"fas fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"far fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"fas fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"far fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"fas fa-hand-point-up","searchTerms":["finger","hand-o-up","point"]},{"title":"far fa-hand-point-up","searchTerms":["finger","hand-o-up","point"]},{"title":"fas fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"far fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fas fa-hand-rock","searchTerms":["fist","game","roshambo"]},{"title":"far fa-hand-rock","searchTerms":["fist","game","roshambo"]},{"title":"fas fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"far fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"fas fa-hand-sparkles","searchTerms":["clean","covid-19","hygiene","magic","soap","wash"]},{"title":"fas fa-hand-spock","searchTerms":["live long","prosper","salute","star trek","vulcan"]},{"title":"far fa-hand-spock","searchTerms":["live long","prosper","salute","star trek","vulcan"]},{"title":"fas fa-hands","searchTerms":["carry","hold","lift"]},{"title":"fas fa-hands-helping","searchTerms":["aid","assistance","handshake","partnership","volunteering"]},{"title":"fas fa-hands-wash","searchTerms":["covid-19","hygiene","soap","wash"]},{"title":"fas fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"far fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"fas fa-handshake-alt-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fas fa-handshake-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fas fa-hanukiah","searchTerms":["candle","hanukkah","jewish","judaism","light"]},{"title":"fas fa-hard-hat","searchTerms":["construction","hardhat","helmet","safety"]},{"title":"fas fa-hashtag","searchTerms":["Twitter","instagram","pound","social media","tag"]},{"title":"fas fa-hat-cowboy","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fas fa-hat-cowboy-side","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fas fa-hat-wizard","searchTerms":["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{"title":"fas fa-hdd","searchTerms":["cpu","hard drive","harddrive","machine","save","storage"]},{"title":"far fa-hdd","searchTerms":["cpu","hard drive","harddrive","machine","save","storage"]},{"title":"fas fa-head-side-cough","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fas fa-head-side-cough-slash","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fas fa-head-side-mask","searchTerms":["breath","covid-19","filter","respirator","virus"]},{"title":"fas fa-head-side-virus","searchTerms":["cold","covid-19","flu","sick"]},{"title":"fas fa-heading","searchTerms":["format","header","text","title"]},{"title":"fas fa-headphones","searchTerms":["audio","listen","music","sound","speaker"]},{"title":"fas fa-headphones-alt","searchTerms":["audio","listen","music","sound","speaker"]},{"title":"fas fa-headset","searchTerms":["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{"title":"fas fa-heart","searchTerms":["favorite","like","love","relationship","valentine"]},{"title":"far fa-heart","searchTerms":["favorite","like","love","relationship","valentine"]},{"title":"fas fa-heart-broken","searchTerms":["breakup","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{"title":"fas fa-heartbeat","searchTerms":["ekg","electrocardiogram","health","lifeline","vital signs"]},{"title":"fas fa-helicopter","searchTerms":["airwolf","apache","chopper","flight","fly","travel"]},{"title":"fas fa-highlighter","searchTerms":["edit","marker","sharpie","update","write"]},{"title":"fas fa-hiking","searchTerms":["activity","backpack","fall","fitness","outdoors","person","seasonal","walking"]},{"title":"fas fa-hippo","searchTerms":["animal","fauna","hippopotamus","hungry","mammal"]},{"title":"fab fa-hips","searchTerms":[]},{"title":"fab fa-hire-a-helper","searchTerms":[]},{"title":"fas fa-history","searchTerms":["Rewind","clock","reverse","time","time machine"]},{"title":"fab fa-hive","searchTerms":[]},{"title":"fas fa-hockey-puck","searchTerms":["ice","nhl","sport"]},{"title":"fas fa-holly-berry","searchTerms":["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{"title":"fas fa-home","searchTerms":["abode","building","house","main"]},{"title":"fab fa-hooli","searchTerms":[]},{"title":"fab fa-hornbill","searchTerms":[]},{"title":"fas fa-horse","searchTerms":["equus","fauna","mammmal","mare","neigh","pony"]},{"title":"fas fa-horse-head","searchTerms":["equus","fauna","mammmal","mare","neigh","pony"]},{"title":"fas fa-hospital","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"far fa-hospital","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"fas fa-hospital-alt","searchTerms":["building","covid-19","emergency room","medical center"]},{"title":"fas fa-hospital-symbol","searchTerms":["clinic","covid-19","emergency","map"]},{"title":"fas fa-hospital-user","searchTerms":["covid-19","doctor","network","patient","primary care"]},{"title":"fas fa-hot-tub","searchTerms":["bath","jacuzzi","massage","sauna","spa"]},{"title":"fas fa-hotdog","searchTerms":["bun","chili","frankfurt","frankfurter","kosher","polish","sandwich","sausage","vienna","weiner"]},{"title":"fas fa-hotel","searchTerms":["building","inn","lodging","motel","resort","travel"]},{"title":"fab fa-hotjar","searchTerms":[]},{"title":"fas fa-hourglass","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"far fa-hourglass","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-end","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-half","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-hourglass-start","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fas fa-house-damage","searchTerms":["building","devastation","disaster","home","insurance"]},{"title":"fas fa-house-user","searchTerms":["covid-19","home","isolation","quarantine"]},{"title":"fab fa-houzz","searchTerms":[]},{"title":"fas fa-hryvnia","searchTerms":["currency","money","ukraine","ukrainian"]},{"title":"fab fa-html5","searchTerms":[]},{"title":"fab fa-hubspot","searchTerms":[]},{"title":"fas fa-i-cursor","searchTerms":["editing","i-beam","type","writing"]},{"title":"fas fa-ice-cream","searchTerms":["chocolate","cone","dessert","frozen","scoop","sorbet","vanilla","yogurt"]},{"title":"fas fa-icicles","searchTerms":["cold","frozen","hanging","ice","seasonal","sharp"]},{"title":"fas fa-icons","searchTerms":["bolt","emoji","heart","image","music","photo","symbols"]},{"title":"fas fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"far fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"fas fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"far fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"fas fa-id-card-alt","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"fab fa-ideal","searchTerms":[]},{"title":"fas fa-igloo","searchTerms":["dome","dwelling","eskimo","home","house","ice","snow"]},{"title":"fas fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"far fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"fas fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"far fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"fab fa-imdb","searchTerms":[]},{"title":"fas fa-inbox","searchTerms":["archive","desk","email","mail","message"]},{"title":"fas fa-indent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fas fa-industry","searchTerms":["building","factory","industrial","manufacturing","mill","warehouse"]},{"title":"fas fa-infinity","searchTerms":["eternity","forever","math"]},{"title":"fas fa-info","searchTerms":["details","help","information","more","support"]},{"title":"fas fa-info-circle","searchTerms":["details","help","information","more","support"]},{"title":"fab fa-innosoft","searchTerms":[]},{"title":"fab fa-instagram","searchTerms":[]},{"title":"fab fa-instagram-square","searchTerms":[]},{"title":"fab fa-instalod","searchTerms":[]},{"title":"fab fa-intercom","searchTerms":["app","customer","messenger"]},{"title":"fab fa-internet-explorer","searchTerms":["browser","ie"]},{"title":"fab fa-invision","searchTerms":["app","design","interface"]},{"title":"fab fa-ioxhost","searchTerms":[]},{"title":"fas fa-italic","searchTerms":["edit","emphasis","font","format","text","type"]},{"title":"fab fa-itch-io","searchTerms":[]},{"title":"fab fa-itunes","searchTerms":[]},{"title":"fab fa-itunes-note","searchTerms":[]},{"title":"fab fa-java","searchTerms":[]},{"title":"fas fa-jedi","searchTerms":["crest","force","sith","skywalker","star wars","yoda"]},{"title":"fab fa-jedi-order","searchTerms":["star wars"]},{"title":"fab fa-jenkins","searchTerms":[]},{"title":"fab fa-jira","searchTerms":["atlassian"]},{"title":"fab fa-joget","searchTerms":[]},{"title":"fas fa-joint","searchTerms":["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{"title":"fab fa-joomla","searchTerms":[]},{"title":"fas fa-journal-whills","searchTerms":["book","force","jedi","sith","star wars","yoda"]},{"title":"fab fa-js","searchTerms":[]},{"title":"fab fa-js-square","searchTerms":[]},{"title":"fab fa-jsfiddle","searchTerms":[]},{"title":"fas fa-kaaba","searchTerms":["building","cube","islam","muslim"]},{"title":"fab fa-kaggle","searchTerms":[]},{"title":"fas fa-key","searchTerms":["lock","password","private","secret","unlock"]},{"title":"fab fa-keybase","searchTerms":[]},{"title":"fas fa-keyboard","searchTerms":["accessory","edit","input","text","type","write"]},{"title":"far fa-keyboard","searchTerms":["accessory","edit","input","text","type","write"]},{"title":"fab fa-keycdn","searchTerms":[]},{"title":"fas fa-khanda","searchTerms":["chakkar","sikh","sikhism","sword"]},{"title":"fab fa-kickstarter","searchTerms":[]},{"title":"fab fa-kickstarter-k","searchTerms":[]},{"title":"fas fa-kiss","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiss-beam","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss-beam","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiss-wink-heart","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"far fa-kiss-wink-heart","searchTerms":["beso","emoticon","face","love","smooch"]},{"title":"fas fa-kiwi-bird","searchTerms":["bird","fauna","new zealand"]},{"title":"fab fa-korvue","searchTerms":[]},{"title":"fas fa-landmark","searchTerms":["building","historic","memorable","monument","politics"]},{"title":"fas fa-language","searchTerms":["dialect","idiom","localize","speech","translate","vernacular"]},{"title":"fas fa-laptop","searchTerms":["computer","cpu","dell","demo","device","mac","macbook","machine","pc"]},{"title":"fas fa-laptop-code","searchTerms":["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{"title":"fas fa-laptop-house","searchTerms":["computer","covid-19","device","office","remote","work from home"]},{"title":"fas fa-laptop-medical","searchTerms":["computer","device","ehr","electronic health records","history"]},{"title":"fab fa-laravel","searchTerms":[]},{"title":"fab fa-lastfm","searchTerms":[]},{"title":"fab fa-lastfm-square","searchTerms":[]},{"title":"fas fa-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"far fa-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"fas fa-laugh-beam","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-beam","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"far fa-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fas fa-layer-group","searchTerms":["arrange","develop","layers","map","stack"]},{"title":"fas fa-leaf","searchTerms":["eco","flora","nature","plant","vegan"]},{"title":"fab fa-leanpub","searchTerms":[]},{"title":"fas fa-lemon","searchTerms":["citrus","lemonade","lime","tart"]},{"title":"far fa-lemon","searchTerms":["citrus","lemonade","lime","tart"]},{"title":"fab fa-less","searchTerms":[]},{"title":"fas fa-less-than","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-less-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-level-down-alt","searchTerms":["arrow","level-down"]},{"title":"fas fa-level-up-alt","searchTerms":["arrow","level-up"]},{"title":"fas fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"far fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"fas fa-lightbulb","searchTerms":["energy","idea","inspiration","light"]},{"title":"far fa-lightbulb","searchTerms":["energy","idea","inspiration","light"]},{"title":"fab fa-line","searchTerms":[]},{"title":"fas fa-link","searchTerms":["attach","attachment","chain","connect"]},{"title":"fab fa-linkedin","searchTerms":["linkedin-square"]},{"title":"fab fa-linkedin-in","searchTerms":["linkedin"]},{"title":"fab fa-linode","searchTerms":[]},{"title":"fab fa-linux","searchTerms":["tux"]},{"title":"fas fa-lira-sign","searchTerms":["currency","money","try","turkish"]},{"title":"fas fa-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-list-alt","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"far fa-list-alt","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-list-ol","searchTerms":["checklist","completed","done","finished","numbers","ol","todo","ul"]},{"title":"fas fa-list-ul","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fas fa-location-arrow","searchTerms":["address","compass","coordinate","direction","gps","map","navigation","place"]},{"title":"fas fa-lock","searchTerms":["admin","lock","open","password","private","protect","security"]},{"title":"fas fa-lock-open","searchTerms":["admin","lock","open","password","private","protect","security"]},{"title":"fas fa-long-arrow-alt-down","searchTerms":["download","long-arrow-down"]},{"title":"fas fa-long-arrow-alt-left","searchTerms":["back","long-arrow-left","previous"]},{"title":"fas fa-long-arrow-alt-right","searchTerms":["forward","long-arrow-right","next"]},{"title":"fas fa-long-arrow-alt-up","searchTerms":["long-arrow-up","upload"]},{"title":"fas fa-low-vision","searchTerms":["blind","eye","sight"]},{"title":"fas fa-luggage-cart","searchTerms":["bag","baggage","suitcase","travel"]},{"title":"fas fa-lungs","searchTerms":["air","breath","covid-19","organ","respiratory"]},{"title":"fas fa-lungs-virus","searchTerms":["breath","covid-19","respiratory","sick"]},{"title":"fab fa-lyft","searchTerms":[]},{"title":"fab fa-magento","searchTerms":[]},{"title":"fas fa-magic","searchTerms":["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{"title":"fas fa-magnet","searchTerms":["Attract","lodestone","tool"]},{"title":"fas fa-mail-bulk","searchTerms":["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{"title":"fab fa-mailchimp","searchTerms":[]},{"title":"fas fa-male","searchTerms":["human","man","person","profile","user"]},{"title":"fab fa-mandalorian","searchTerms":[]},{"title":"fas fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"far fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marked","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marked-alt","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marker","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-marker-alt","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fas fa-map-pin","searchTerms":["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","travel"]},{"title":"fas fa-map-signs","searchTerms":["directions","directory","map","signage","wayfinding"]},{"title":"fab fa-markdown","searchTerms":[]},{"title":"fas fa-marker","searchTerms":["design","edit","sharpie","update","write"]},{"title":"fas fa-mars","searchTerms":["male"]},{"title":"fas fa-mars-double","searchTerms":[]},{"title":"fas fa-mars-stroke","searchTerms":[]},{"title":"fas fa-mars-stroke-h","searchTerms":[]},{"title":"fas fa-mars-stroke-v","searchTerms":[]},{"title":"fas fa-mask","searchTerms":["carnivale","costume","disguise","halloween","secret","super hero"]},{"title":"fab fa-mastodon","searchTerms":[]},{"title":"fab fa-maxcdn","searchTerms":[]},{"title":"fab fa-mdb","searchTerms":[]},{"title":"fas fa-medal","searchTerms":["award","ribbon","star","trophy"]},{"title":"fab fa-medapps","searchTerms":[]},{"title":"fab fa-medium","searchTerms":[]},{"title":"fab fa-medium-m","searchTerms":[]},{"title":"fas fa-medkit","searchTerms":["first aid","firstaid","health","help","support"]},{"title":"fab fa-medrt","searchTerms":[]},{"title":"fab fa-meetup","searchTerms":[]},{"title":"fab fa-megaport","searchTerms":[]},{"title":"fas fa-meh","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-meh-blank","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh-blank","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-meh-rolling-eyes","searchTerms":["emoticon","face","neutral","rating"]},{"title":"far fa-meh-rolling-eyes","searchTerms":["emoticon","face","neutral","rating"]},{"title":"fas fa-memory","searchTerms":["DIMM","RAM","hardware","storage","technology"]},{"title":"fab fa-mendeley","searchTerms":[]},{"title":"fas fa-menorah","searchTerms":["candle","hanukkah","jewish","judaism","light"]},{"title":"fas fa-mercury","searchTerms":["transgender"]},{"title":"fas fa-meteor","searchTerms":["armageddon","asteroid","comet","shooting star","space"]},{"title":"fab fa-microblog","searchTerms":[]},{"title":"fas fa-microchip","searchTerms":["cpu","hardware","processor","technology"]},{"title":"fas fa-microphone","searchTerms":["audio","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-alt","searchTerms":["audio","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-alt-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fas fa-microphone-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fas fa-microscope","searchTerms":["covid-19","electron","lens","optics","science","shrink"]},{"title":"fab fa-microsoft","searchTerms":[]},{"title":"fas fa-minus","searchTerms":["collapse","delete","hide","minify","negative","remove","trash"]},{"title":"fas fa-minus-circle","searchTerms":["delete","hide","negative","remove","shape","trash"]},{"title":"fas fa-minus-square","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"far fa-minus-square","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"fas fa-mitten","searchTerms":["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{"title":"fab fa-mix","searchTerms":[]},{"title":"fab fa-mixcloud","searchTerms":[]},{"title":"fab fa-mixer","searchTerms":[]},{"title":"fab fa-mizuni","searchTerms":[]},{"title":"fas fa-mobile","searchTerms":["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{"title":"fas fa-mobile-alt","searchTerms":["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{"title":"fab fa-modx","searchTerms":[]},{"title":"fab fa-monero","searchTerms":[]},{"title":"fas fa-money-bill","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"far fa-money-bill-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-wave","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-bill-wave-alt","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fas fa-money-check","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fas fa-money-check-alt","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fas fa-monument","searchTerms":["building","historic","landmark","memorable"]},{"title":"fas fa-moon","searchTerms":["contrast","crescent","dark","lunar","night"]},{"title":"far fa-moon","searchTerms":["contrast","crescent","dark","lunar","night"]},{"title":"fas fa-mortar-pestle","searchTerms":["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{"title":"fas fa-mosque","searchTerms":["building","islam","landmark","muslim"]},{"title":"fas fa-motorcycle","searchTerms":["bike","machine","transportation","vehicle"]},{"title":"fas fa-mountain","searchTerms":["glacier","hiking","hill","landscape","travel","view"]},{"title":"fas fa-mouse","searchTerms":["click","computer","cursor","input","peripheral"]},{"title":"fas fa-mouse-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fas fa-mug-hot","searchTerms":["caliente","cocoa","coffee","cup","drink","holiday","hot chocolate","steam","tea","warmth"]},{"title":"fas fa-music","searchTerms":["lyrics","melody","note","sing","sound"]},{"title":"fab fa-napster","searchTerms":[]},{"title":"fab fa-neos","searchTerms":[]},{"title":"fas fa-network-wired","searchTerms":["computer","connect","ethernet","internet","intranet"]},{"title":"fas fa-neuter","searchTerms":[]},{"title":"fas fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","press"]},{"title":"far fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","press"]},{"title":"fab fa-nimblr","searchTerms":[]},{"title":"fab fa-node","searchTerms":[]},{"title":"fab fa-node-js","searchTerms":[]},{"title":"fas fa-not-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fas fa-notes-medical","searchTerms":["clipboard","doctor","ehr","health","history","records"]},{"title":"fab fa-npm","searchTerms":[]},{"title":"fab fa-ns8","searchTerms":[]},{"title":"fab fa-nutritionix","searchTerms":[]},{"title":"fas fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"far fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"fas fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"far fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"fab fa-octopus-deploy","searchTerms":[]},{"title":"fab fa-odnoklassniki","searchTerms":[]},{"title":"fab fa-odnoklassniki-square","searchTerms":[]},{"title":"fas fa-oil-can","searchTerms":["auto","crude","gasoline","grease","lubricate","petroleum"]},{"title":"fab fa-old-republic","searchTerms":["politics","star wars"]},{"title":"fas fa-om","searchTerms":["buddhism","hinduism","jainism","mantra"]},{"title":"fab fa-opencart","searchTerms":[]},{"title":"fab fa-openid","searchTerms":[]},{"title":"fab fa-opera","searchTerms":[]},{"title":"fab fa-optin-monster","searchTerms":[]},{"title":"fab fa-orcid","searchTerms":[]},{"title":"fab fa-osi","searchTerms":[]},{"title":"fas fa-otter","searchTerms":["animal","badger","fauna","fur","mammal","marten"]},{"title":"fas fa-outdent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fab fa-page4","searchTerms":[]},{"title":"fab fa-pagelines","searchTerms":["eco","flora","leaf","leaves","nature","plant","tree"]},{"title":"fas fa-pager","searchTerms":["beeper","cellphone","communication"]},{"title":"fas fa-paint-brush","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fas fa-paint-roller","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fas fa-palette","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fab fa-palfed","searchTerms":[]},{"title":"fas fa-pallet","searchTerms":["archive","box","inventory","shipping","warehouse"]},{"title":"fas fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"far fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"fas fa-paperclip","searchTerms":["attach","attachment","connect","link"]},{"title":"fas fa-parachute-box","searchTerms":["aid","assistance","rescue","supplies"]},{"title":"fas fa-paragraph","searchTerms":["edit","format","text","writing"]},{"title":"fas fa-parking","searchTerms":["auto","car","garage","meter"]},{"title":"fas fa-passport","searchTerms":["document","id","identification","issued","travel"]},{"title":"fas fa-pastafarianism","searchTerms":["agnosticism","atheism","flying spaghetti monster","fsm"]},{"title":"fas fa-paste","searchTerms":["clipboard","copy","document","paper"]},{"title":"fab fa-patreon","searchTerms":[]},{"title":"fas fa-pause","searchTerms":["hold","wait"]},{"title":"fas fa-pause-circle","searchTerms":["hold","wait"]},{"title":"far fa-pause-circle","searchTerms":["hold","wait"]},{"title":"fas fa-paw","searchTerms":["animal","cat","dog","pet","print"]},{"title":"fab fa-paypal","searchTerms":[]},{"title":"fas fa-peace","searchTerms":["serenity","tranquility","truce","war"]},{"title":"fas fa-pen","searchTerms":["design","edit","update","write"]},{"title":"fas fa-pen-alt","searchTerms":["design","edit","update","write"]},{"title":"fas fa-pen-fancy","searchTerms":["design","edit","fountain pen","update","write"]},{"title":"fas fa-pen-nib","searchTerms":["design","edit","fountain pen","update","write"]},{"title":"fas fa-pen-square","searchTerms":["edit","pencil-square","update","write"]},{"title":"fas fa-pencil-alt","searchTerms":["design","edit","pencil","update","write"]},{"title":"fas fa-pencil-ruler","searchTerms":["design","draft","draw","pencil"]},{"title":"fab fa-penny-arcade","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","pax","tabletop"]},{"title":"fas fa-people-arrows","searchTerms":["covid-19","personal space","social distance","space","spread","users"]},{"title":"fas fa-people-carry","searchTerms":["box","carry","fragile","help","movers","package"]},{"title":"fas fa-pepper-hot","searchTerms":["buffalo wings","capsicum","chili","chilli","habanero","jalapeno","mexican","spicy","tabasco","vegetable"]},{"title":"fab fa-perbyte","searchTerms":[]},{"title":"fas fa-percent","searchTerms":["discount","fraction","proportion","rate","ratio"]},{"title":"fas fa-percentage","searchTerms":["discount","fraction","proportion","rate","ratio"]},{"title":"fab fa-periscope","searchTerms":[]},{"title":"fas fa-person-booth","searchTerms":["changing","changing room","election","human","person","vote","voting"]},{"title":"fab fa-phabricator","searchTerms":[]},{"title":"fab fa-phoenix-framework","searchTerms":[]},{"title":"fab fa-phoenix-squadron","searchTerms":[]},{"title":"fas fa-phone","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-alt","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-slash","searchTerms":["call","cancel","earphone","mute","number","support","telephone","voice"]},{"title":"fas fa-phone-square","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-square-alt","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fas fa-phone-volume","searchTerms":["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{"title":"fas fa-photo-video","searchTerms":["av","film","image","library","media"]},{"title":"fab fa-php","searchTerms":[]},{"title":"fab fa-pied-piper","searchTerms":[]},{"title":"fab fa-pied-piper-alt","searchTerms":[]},{"title":"fab fa-pied-piper-hat","searchTerms":["clothing"]},{"title":"fab fa-pied-piper-pp","searchTerms":[]},{"title":"fab fa-pied-piper-square","searchTerms":[]},{"title":"fas fa-piggy-bank","searchTerms":["bank","save","savings"]},{"title":"fas fa-pills","searchTerms":["drugs","medicine","prescription","tablets"]},{"title":"fab fa-pinterest","searchTerms":[]},{"title":"fab fa-pinterest-p","searchTerms":[]},{"title":"fab fa-pinterest-square","searchTerms":[]},{"title":"fas fa-pizza-slice","searchTerms":["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{"title":"fas fa-place-of-worship","searchTerms":["building","church","holy","mosque","synagogue"]},{"title":"fas fa-plane","searchTerms":["airplane","destination","fly","location","mode","travel","trip"]},{"title":"fas fa-plane-arrival","searchTerms":["airplane","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{"title":"fas fa-plane-departure","searchTerms":["airplane","departing","destination","fly","location","mode","take off","taking off","travel","trip"]},{"title":"fas fa-plane-slash","searchTerms":["airplane mode","canceled","covid-19","delayed","grounded","travel"]},{"title":"fas fa-play","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fas fa-play-circle","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"far fa-play-circle","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fab fa-playstation","searchTerms":[]},{"title":"fas fa-plug","searchTerms":["connect","electric","online","power"]},{"title":"fas fa-plus","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-plus-circle","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-plus-square","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"far fa-plus-square","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fas fa-podcast","searchTerms":["audio","broadcast","music","sound"]},{"title":"fas fa-poll","searchTerms":["results","survey","trend","vote","voting"]},{"title":"fas fa-poll-h","searchTerms":["results","survey","trend","vote","voting"]},{"title":"fas fa-poo","searchTerms":["crap","poop","shit","smile","turd"]},{"title":"fas fa-poo-storm","searchTerms":["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{"title":"fas fa-poop","searchTerms":["crap","poop","shit","smile","turd"]},{"title":"fas fa-portrait","searchTerms":["id","image","photo","picture","selfie"]},{"title":"fas fa-pound-sign","searchTerms":["currency","gbp","money"]},{"title":"fas fa-power-off","searchTerms":["cancel","computer","on","reboot","restart"]},{"title":"fas fa-pray","searchTerms":["kneel","preach","religion","worship"]},{"title":"fas fa-praying-hands","searchTerms":["kneel","preach","religion","worship"]},{"title":"fas fa-prescription","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-prescription-bottle","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-prescription-bottle-alt","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fas fa-print","searchTerms":["business","copy","document","office","paper"]},{"title":"fas fa-procedures","searchTerms":["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{"title":"fab fa-product-hunt","searchTerms":[]},{"title":"fas fa-project-diagram","searchTerms":["chart","graph","network","pert"]},{"title":"fas fa-pump-medical","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{"title":"fas fa-pump-soap","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{"title":"fab fa-pushed","searchTerms":[]},{"title":"fas fa-puzzle-piece","searchTerms":["add-on","addon","game","section"]},{"title":"fab fa-python","searchTerms":[]},{"title":"fab fa-qq","searchTerms":[]},{"title":"fas fa-qrcode","searchTerms":["barcode","info","information","scan"]},{"title":"fas fa-question","searchTerms":["help","information","support","unknown"]},{"title":"fas fa-question-circle","searchTerms":["help","information","support","unknown"]},{"title":"far fa-question-circle","searchTerms":["help","information","support","unknown"]},{"title":"fas fa-quidditch","searchTerms":["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{"title":"fab fa-quinscape","searchTerms":[]},{"title":"fab fa-quora","searchTerms":[]},{"title":"fas fa-quote-left","searchTerms":["mention","note","phrase","text","type"]},{"title":"fas fa-quote-right","searchTerms":["mention","note","phrase","text","type"]},{"title":"fas fa-quran","searchTerms":["book","islam","muslim","religion"]},{"title":"fab fa-r-project","searchTerms":[]},{"title":"fas fa-radiation","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{"title":"fas fa-radiation-alt","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{"title":"fas fa-rainbow","searchTerms":["gold","leprechaun","prism","rain","sky"]},{"title":"fas fa-random","searchTerms":["arrows","shuffle","sort","swap","switch","transfer"]},{"title":"fab fa-raspberry-pi","searchTerms":[]},{"title":"fab fa-ravelry","searchTerms":[]},{"title":"fab fa-react","searchTerms":[]},{"title":"fab fa-reacteurope","searchTerms":[]},{"title":"fab fa-readme","searchTerms":[]},{"title":"fab fa-rebel","searchTerms":[]},{"title":"fas fa-receipt","searchTerms":["check","invoice","money","pay","table"]},{"title":"fas fa-record-vinyl","searchTerms":["LP","album","analog","music","phonograph","sound"]},{"title":"fas fa-recycle","searchTerms":["Waste","compost","garbage","reuse","trash"]},{"title":"fab fa-red-river","searchTerms":[]},{"title":"fab fa-reddit","searchTerms":[]},{"title":"fab fa-reddit-alien","searchTerms":[]},{"title":"fab fa-reddit-square","searchTerms":[]},{"title":"fab fa-redhat","searchTerms":["linux","operating system","os"]},{"title":"fas fa-redo","searchTerms":["forward","refresh","reload","repeat"]},{"title":"fas fa-redo-alt","searchTerms":["forward","refresh","reload","repeat"]},{"title":"fas fa-registered","searchTerms":["copyright","mark","trademark"]},{"title":"far fa-registered","searchTerms":["copyright","mark","trademark"]},{"title":"fas fa-remove-format","searchTerms":["cancel","font","format","remove","style","text"]},{"title":"fab fa-renren","searchTerms":[]},{"title":"fas fa-reply","searchTerms":["mail","message","respond"]},{"title":"fas fa-reply-all","searchTerms":["mail","message","respond"]},{"title":"fab fa-replyd","searchTerms":[]},{"title":"fas fa-republican","searchTerms":["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{"title":"fab fa-researchgate","searchTerms":[]},{"title":"fab fa-resolving","searchTerms":[]},{"title":"fas fa-restroom","searchTerms":["bathroom","john","loo","potty","washroom","waste","wc"]},{"title":"fas fa-retweet","searchTerms":["refresh","reload","share","swap"]},{"title":"fab fa-rev","searchTerms":[]},{"title":"fas fa-ribbon","searchTerms":["badge","cause","lapel","pin"]},{"title":"fas fa-ring","searchTerms":["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{"title":"fas fa-road","searchTerms":["highway","map","pavement","route","street","travel"]},{"title":"fas fa-robot","searchTerms":["android","automate","computer","cyborg"]},{"title":"fas fa-rocket","searchTerms":["aircraft","app","jet","launch","nasa","space"]},{"title":"fab fa-rocketchat","searchTerms":[]},{"title":"fab fa-rockrms","searchTerms":[]},{"title":"fas fa-route","searchTerms":["directions","navigation","travel"]},{"title":"fas fa-rss","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fas fa-rss-square","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fas fa-ruble-sign","searchTerms":["currency","money","rub"]},{"title":"fas fa-ruler","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-combined","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-horizontal","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-ruler-vertical","searchTerms":["design","draft","length","measure","planning"]},{"title":"fas fa-running","searchTerms":["exercise","health","jog","person","run","sport","sprint"]},{"title":"fas fa-rupee-sign","searchTerms":["currency","indian","inr","money"]},{"title":"fab fa-rust","searchTerms":[]},{"title":"fas fa-sad-cry","searchTerms":["emoticon","face","tear","tears"]},{"title":"far fa-sad-cry","searchTerms":["emoticon","face","tear","tears"]},{"title":"fas fa-sad-tear","searchTerms":["emoticon","face","tear","tears"]},{"title":"far fa-sad-tear","searchTerms":["emoticon","face","tear","tears"]},{"title":"fab fa-safari","searchTerms":["browser"]},{"title":"fab fa-salesforce","searchTerms":[]},{"title":"fab fa-sass","searchTerms":[]},{"title":"fas fa-satellite","searchTerms":["communications","hardware","orbit","space"]},{"title":"fas fa-satellite-dish","searchTerms":["SETI","communications","hardware","receiver","saucer","signal","space"]},{"title":"fas fa-save","searchTerms":["disk","download","floppy","floppy-o"]},{"title":"far fa-save","searchTerms":["disk","download","floppy","floppy-o"]},{"title":"fab fa-schlix","searchTerms":[]},{"title":"fas fa-school","searchTerms":["building","education","learn","student","teacher"]},{"title":"fas fa-screwdriver","searchTerms":["admin","fix","mechanic","repair","settings","tool"]},{"title":"fab fa-scribd","searchTerms":[]},{"title":"fas fa-scroll","searchTerms":["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script"]},{"title":"fas fa-sd-card","searchTerms":["image","memory","photo","save"]},{"title":"fas fa-search","searchTerms":["bigger","enlarge","find","magnify","preview","zoom"]},{"title":"fas fa-search-dollar","searchTerms":["bigger","enlarge","find","magnify","money","preview","zoom"]},{"title":"fas fa-search-location","searchTerms":["bigger","enlarge","find","magnify","preview","zoom"]},{"title":"fas fa-search-minus","searchTerms":["minify","negative","smaller","zoom","zoom out"]},{"title":"fas fa-search-plus","searchTerms":["bigger","enlarge","magnify","positive","zoom","zoom in"]},{"title":"fab fa-searchengin","searchTerms":[]},{"title":"fas fa-seedling","searchTerms":["flora","grow","plant","vegan"]},{"title":"fab fa-sellcast","searchTerms":["eercast"]},{"title":"fab fa-sellsy","searchTerms":[]},{"title":"fas fa-server","searchTerms":["computer","cpu","database","hardware","network"]},{"title":"fab fa-servicestack","searchTerms":[]},{"title":"fas fa-shapes","searchTerms":["blocks","build","circle","square","triangle"]},{"title":"fas fa-share","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-alt","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-alt-square","searchTerms":["forward","save","send","social"]},{"title":"fas fa-share-square","searchTerms":["forward","save","send","social"]},{"title":"far fa-share-square","searchTerms":["forward","save","send","social"]},{"title":"fas fa-shekel-sign","searchTerms":["currency","ils","money"]},{"title":"fas fa-shield-alt","searchTerms":["achievement","award","block","defend","security","winner"]},{"title":"fas fa-shield-virus","searchTerms":["antibodies","barrier","covid-19","health","protect"]},{"title":"fas fa-ship","searchTerms":["boat","sea","water"]},{"title":"fas fa-shipping-fast","searchTerms":["express","fedex","mail","overnight","package","ups"]},{"title":"fab fa-shirtsinbulk","searchTerms":[]},{"title":"fas fa-shoe-prints","searchTerms":["feet","footprints","steps","walk"]},{"title":"fab fa-shopify","searchTerms":[]},{"title":"fas fa-shopping-bag","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fas fa-shopping-basket","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fas fa-shopping-cart","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fab fa-shopware","searchTerms":[]},{"title":"fas fa-shower","searchTerms":["bath","clean","faucet","water"]},{"title":"fas fa-shuttle-van","searchTerms":["airport","machine","public-transportation","transportation","travel","vehicle"]},{"title":"fas fa-sign","searchTerms":["directions","real estate","signage","wayfinding"]},{"title":"fas fa-sign-in-alt","searchTerms":["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{"title":"fas fa-sign-language","searchTerms":["Translate","asl","deaf","hands"]},{"title":"fas fa-sign-out-alt","searchTerms":["arrow","exit","leave","log out","logout","sign-out"]},{"title":"fas fa-signal","searchTerms":["bars","graph","online","reception","status"]},{"title":"fas fa-signature","searchTerms":["John Hancock","cursive","name","writing"]},{"title":"fas fa-sim-card","searchTerms":["hard drive","hardware","portable","storage","technology","tiny"]},{"title":"fab fa-simplybuilt","searchTerms":[]},{"title":"fas fa-sink","searchTerms":["bathroom","covid-19","faucet","kitchen","wash"]},{"title":"fab fa-sistrix","searchTerms":[]},{"title":"fas fa-sitemap","searchTerms":["directory","hierarchy","ia","information architecture","organization"]},{"title":"fab fa-sith","searchTerms":[]},{"title":"fas fa-skating","searchTerms":["activity","figure skating","fitness","ice","person","winter"]},{"title":"fab fa-sketch","searchTerms":["app","design","interface"]},{"title":"fas fa-skiing","searchTerms":["activity","downhill","fast","fitness","olympics","outdoors","person","seasonal","slalom"]},{"title":"fas fa-skiing-nordic","searchTerms":["activity","cross country","fitness","outdoors","person","seasonal"]},{"title":"fas fa-skull","searchTerms":["bones","skeleton","x-ray","yorick"]},{"title":"fas fa-skull-crossbones","searchTerms":["Dungeons & Dragons","alert","bones","d","danger","dead","deadly","death","dnd","fantasy","halloween","holiday","jolly-roger","pirate","poison","skeleton","warning"]},{"title":"fab fa-skyatlas","searchTerms":[]},{"title":"fab fa-skype","searchTerms":[]},{"title":"fab fa-slack","searchTerms":["anchor","hash","hashtag"]},{"title":"fab fa-slack-hash","searchTerms":["anchor","hash","hashtag"]},{"title":"fas fa-slash","searchTerms":["cancel","close","mute","off","stop","x"]},{"title":"fas fa-sleigh","searchTerms":["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{"title":"fas fa-sliders-h","searchTerms":["adjust","settings","sliders","toggle"]},{"title":"fab fa-slideshare","searchTerms":[]},{"title":"fas fa-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied"]},{"title":"far fa-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied"]},{"title":"fas fa-smile-beam","searchTerms":["emoticon","face","happy","positive"]},{"title":"far fa-smile-beam","searchTerms":["emoticon","face","happy","positive"]},{"title":"fas fa-smile-wink","searchTerms":["emoticon","face","happy","hint","joke"]},{"title":"far fa-smile-wink","searchTerms":["emoticon","face","happy","hint","joke"]},{"title":"fas fa-smog","searchTerms":["dragon","fog","haze","pollution","smoke","weather"]},{"title":"fas fa-smoking","searchTerms":["cancer","cigarette","nicotine","smoking status","tobacco"]},{"title":"fas fa-smoking-ban","searchTerms":["ban","cancel","no smoking","non-smoking"]},{"title":"fas fa-sms","searchTerms":["chat","conversation","message","mobile","notification","phone","sms","texting"]},{"title":"fab fa-snapchat","searchTerms":[]},{"title":"fab fa-snapchat-ghost","searchTerms":[]},{"title":"fab fa-snapchat-square","searchTerms":[]},{"title":"fas fa-snowboarding","searchTerms":["activity","fitness","olympics","outdoors","person"]},{"title":"fas fa-snowflake","searchTerms":["precipitation","rain","winter"]},{"title":"far fa-snowflake","searchTerms":["precipitation","rain","winter"]},{"title":"fas fa-snowman","searchTerms":["decoration","frost","frosty","holiday"]},{"title":"fas fa-snowplow","searchTerms":["clean up","cold","road","storm","winter"]},{"title":"fas fa-soap","searchTerms":["bubbles","clean","covid-19","hygiene","wash"]},{"title":"fas fa-socks","searchTerms":["business socks","business time","clothing","feet","flight of the conchords","wednesday"]},{"title":"fas fa-solar-panel","searchTerms":["clean","eco-friendly","energy","green","sun"]},{"title":"fas fa-sort","searchTerms":["filter","order"]},{"title":"fas fa-sort-alpha-down","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fas fa-sort-alpha-down-alt","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fas fa-sort-alpha-up","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fas fa-sort-alpha-up-alt","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fas fa-sort-amount-down","searchTerms":["arrange","filter","number","order","sort-amount-asc"]},{"title":"fas fa-sort-amount-down-alt","searchTerms":["arrange","filter","order","sort-amount-asc"]},{"title":"fas fa-sort-amount-up","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fas fa-sort-amount-up-alt","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fas fa-sort-down","searchTerms":["arrow","descending","filter","order","sort-desc"]},{"title":"fas fa-sort-numeric-down","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fas fa-sort-numeric-down-alt","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fas fa-sort-numeric-up","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fas fa-sort-numeric-up-alt","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fas fa-sort-up","searchTerms":["arrow","ascending","filter","order","sort-asc"]},{"title":"fab fa-soundcloud","searchTerms":[]},{"title":"fab fa-sourcetree","searchTerms":[]},{"title":"fas fa-spa","searchTerms":["flora","massage","mindfulness","plant","wellness"]},{"title":"fas fa-space-shuttle","searchTerms":["astronaut","machine","nasa","rocket","space","transportation"]},{"title":"fab fa-speakap","searchTerms":[]},{"title":"fab fa-speaker-deck","searchTerms":[]},{"title":"fas fa-spell-check","searchTerms":["dictionary","edit","editor","grammar","text"]},{"title":"fas fa-spider","searchTerms":["arachnid","bug","charlotte","crawl","eight","halloween"]},{"title":"fas fa-spinner","searchTerms":["circle","loading","progress"]},{"title":"fas fa-splotch","searchTerms":["Ink","blob","blotch","glob","stain"]},{"title":"fab fa-spotify","searchTerms":[]},{"title":"fas fa-spray-can","searchTerms":["Paint","aerosol","design","graffiti","tag"]},{"title":"fas fa-square","searchTerms":["block","box","shape"]},{"title":"far fa-square","searchTerms":["block","box","shape"]},{"title":"fas fa-square-full","searchTerms":["block","box","shape"]},{"title":"fas fa-square-root-alt","searchTerms":["arithmetic","calculus","division","math"]},{"title":"fab fa-squarespace","searchTerms":[]},{"title":"fab fa-stack-exchange","searchTerms":[]},{"title":"fab fa-stack-overflow","searchTerms":[]},{"title":"fab fa-stackpath","searchTerms":[]},{"title":"fas fa-stamp","searchTerms":["art","certificate","imprint","rubber","seal"]},{"title":"fas fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score"]},{"title":"far fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score"]},{"title":"fas fa-star-and-crescent","searchTerms":["islam","muslim","religion"]},{"title":"fas fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"far fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fas fa-star-half-alt","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fas fa-star-of-david","searchTerms":["jewish","judaism","religion"]},{"title":"fas fa-star-of-life","searchTerms":["doctor","emt","first aid","health","medical"]},{"title":"fab fa-staylinked","searchTerms":[]},{"title":"fab fa-steam","searchTerms":[]},{"title":"fab fa-steam-square","searchTerms":[]},{"title":"fab fa-steam-symbol","searchTerms":[]},{"title":"fas fa-step-backward","searchTerms":["beginning","first","previous","rewind","start"]},{"title":"fas fa-step-forward","searchTerms":["end","last","next"]},{"title":"fas fa-stethoscope","searchTerms":["covid-19","diagnosis","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{"title":"fab fa-sticker-mule","searchTerms":[]},{"title":"fas fa-sticky-note","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"far fa-sticky-note","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"fas fa-stop","searchTerms":["block","box","square"]},{"title":"fas fa-stop-circle","searchTerms":["block","box","circle","square"]},{"title":"far fa-stop-circle","searchTerms":["block","box","circle","square"]},{"title":"fas fa-stopwatch","searchTerms":["clock","reminder","time"]},{"title":"fas fa-stopwatch-20","searchTerms":["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{"title":"fas fa-store","searchTerms":["building","buy","purchase","shopping"]},{"title":"fas fa-store-alt","searchTerms":["building","buy","purchase","shopping"]},{"title":"fas fa-store-alt-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fas fa-store-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fab fa-strava","searchTerms":[]},{"title":"fas fa-stream","searchTerms":["flow","list","timeline"]},{"title":"fas fa-street-view","searchTerms":["directions","location","map","navigation"]},{"title":"fas fa-strikethrough","searchTerms":["cancel","edit","font","format","text","type"]},{"title":"fab fa-stripe","searchTerms":[]},{"title":"fab fa-stripe-s","searchTerms":[]},{"title":"fas fa-stroopwafel","searchTerms":["caramel","cookie","dessert","sweets","waffle"]},{"title":"fab fa-studiovinari","searchTerms":[]},{"title":"fab fa-stumbleupon","searchTerms":[]},{"title":"fab fa-stumbleupon-circle","searchTerms":[]},{"title":"fas fa-subscript","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-subway","searchTerms":["machine","railway","train","transportation","vehicle"]},{"title":"fas fa-suitcase","searchTerms":["baggage","luggage","move","suitcase","travel","trip"]},{"title":"fas fa-suitcase-rolling","searchTerms":["baggage","luggage","move","suitcase","travel","trip"]},{"title":"fas fa-sun","searchTerms":["brighten","contrast","day","lighter","sol","solar","star","weather"]},{"title":"far fa-sun","searchTerms":["brighten","contrast","day","lighter","sol","solar","star","weather"]},{"title":"fab fa-superpowers","searchTerms":[]},{"title":"fas fa-superscript","searchTerms":["edit","exponential","font","format","text","type"]},{"title":"fab fa-supple","searchTerms":[]},{"title":"fas fa-surprise","searchTerms":["emoticon","face","shocked"]},{"title":"far fa-surprise","searchTerms":["emoticon","face","shocked"]},{"title":"fab fa-suse","searchTerms":["linux","operating system","os"]},{"title":"fas fa-swatchbook","searchTerms":["Pantone","color","design","hue","palette"]},{"title":"fab fa-swift","searchTerms":[]},{"title":"fas fa-swimmer","searchTerms":["athlete","head","man","olympics","person","pool","water"]},{"title":"fas fa-swimming-pool","searchTerms":["ladder","recreation","swim","water"]},{"title":"fab fa-symfony","searchTerms":[]},{"title":"fas fa-synagogue","searchTerms":["building","jewish","judaism","religion","star of david","temple"]},{"title":"fas fa-sync","searchTerms":["exchange","refresh","reload","rotate","swap"]},{"title":"fas fa-sync-alt","searchTerms":["exchange","refresh","reload","rotate","swap"]},{"title":"fas fa-syringe","searchTerms":["covid-19","doctor","immunizations","medical","needle"]},{"title":"fas fa-table","searchTerms":["data","excel","spreadsheet"]},{"title":"fas fa-table-tennis","searchTerms":["ball","paddle","ping pong"]},{"title":"fas fa-tablet","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fas fa-tablet-alt","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fas fa-tablets","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fas fa-tachometer-alt","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fas fa-tag","searchTerms":["discount","label","price","shopping"]},{"title":"fas fa-tags","searchTerms":["discount","label","price","shopping"]},{"title":"fas fa-tape","searchTerms":["design","package","sticky"]},{"title":"fas fa-tasks","searchTerms":["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{"title":"fas fa-taxi","searchTerms":["cab","cabbie","car","car service","lyft","machine","transportation","travel","uber","vehicle"]},{"title":"fab fa-teamspeak","searchTerms":[]},{"title":"fas fa-teeth","searchTerms":["bite","dental","dentist","gums","mouth","smile","tooth"]},{"title":"fas fa-teeth-open","searchTerms":["dental","dentist","gums bite","mouth","smile","tooth"]},{"title":"fab fa-telegram","searchTerms":[]},{"title":"fab fa-telegram-plane","searchTerms":[]},{"title":"fas fa-temperature-high","searchTerms":["cook","covid-19","mercury","summer","thermometer","warm"]},{"title":"fas fa-temperature-low","searchTerms":["cold","cool","covid-19","mercury","thermometer","winter"]},{"title":"fab fa-tencent-weibo","searchTerms":[]},{"title":"fas fa-tenge","searchTerms":["currency","kazakhstan","money","price"]},{"title":"fas fa-terminal","searchTerms":["code","command","console","development","prompt"]},{"title":"fas fa-text-height","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-text-width","searchTerms":["edit","font","format","text","type"]},{"title":"fas fa-th","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fas fa-th-large","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fas fa-th-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fab fa-the-red-yeti","searchTerms":[]},{"title":"fas fa-theater-masks","searchTerms":["comedy","perform","theatre","tragedy"]},{"title":"fab fa-themeco","searchTerms":[]},{"title":"fab fa-themeisle","searchTerms":[]},{"title":"fas fa-thermometer","searchTerms":["covid-19","mercury","status","temperature"]},{"title":"fas fa-thermometer-empty","searchTerms":["cold","mercury","status","temperature"]},{"title":"fas fa-thermometer-full","searchTerms":["fever","hot","mercury","status","temperature"]},{"title":"fas fa-thermometer-half","searchTerms":["mercury","status","temperature"]},{"title":"fas fa-thermometer-quarter","searchTerms":["mercury","status","temperature"]},{"title":"fas fa-thermometer-three-quarters","searchTerms":["mercury","status","temperature"]},{"title":"fab fa-think-peaks","searchTerms":[]},{"title":"fas fa-thumbs-down","searchTerms":["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{"title":"far fa-thumbs-down","searchTerms":["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{"title":"fas fa-thumbs-up","searchTerms":["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{"title":"far fa-thumbs-up","searchTerms":["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{"title":"fas fa-thumbtack","searchTerms":["coordinates","location","marker","pin","thumb-tack"]},{"title":"fas fa-ticket-alt","searchTerms":["movie","pass","support","ticket"]},{"title":"fab fa-tiktok","searchTerms":[]},{"title":"fas fa-times","searchTerms":["close","cross","error","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fas fa-times-circle","searchTerms":["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"far fa-times-circle","searchTerms":["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fas fa-tint","searchTerms":["color","drop","droplet","raindrop","waterdrop"]},{"title":"fas fa-tint-slash","searchTerms":["color","drop","droplet","raindrop","waterdrop"]},{"title":"fas fa-tired","searchTerms":["angry","emoticon","face","grumpy","upset"]},{"title":"far fa-tired","searchTerms":["angry","emoticon","face","grumpy","upset"]},{"title":"fas fa-toggle-off","searchTerms":["switch"]},{"title":"fas fa-toggle-on","searchTerms":["switch"]},{"title":"fas fa-toilet","searchTerms":["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","washroom","waste","wc"]},{"title":"fas fa-toilet-paper","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","prank","restroom","roll"]},{"title":"fas fa-toilet-paper-slash","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","restroom","roll","trouble","ut oh"]},{"title":"fas fa-toolbox","searchTerms":["admin","container","fix","repair","settings","tools"]},{"title":"fas fa-tools","searchTerms":["admin","fix","repair","screwdriver","settings","tools","wrench"]},{"title":"fas fa-tooth","searchTerms":["bicuspid","dental","dentist","molar","mouth","teeth"]},{"title":"fas fa-torah","searchTerms":["book","jewish","judaism","religion","scroll"]},{"title":"fas fa-torii-gate","searchTerms":["building","shintoism"]},{"title":"fas fa-tractor","searchTerms":["agriculture","farm","vehicle"]},{"title":"fab fa-trade-federation","searchTerms":[]},{"title":"fas fa-trademark","searchTerms":["copyright","register","symbol"]},{"title":"fas fa-traffic-light","searchTerms":["direction","road","signal","travel"]},{"title":"fas fa-trailer","searchTerms":["carry","haul","moving","travel"]},{"title":"fas fa-train","searchTerms":["bullet","commute","locomotive","railway","subway"]},{"title":"fas fa-tram","searchTerms":["crossing","machine","mountains","seasonal","transportation"]},{"title":"fas fa-transgender","searchTerms":["intersex"]},{"title":"fas fa-transgender-alt","searchTerms":["intersex"]},{"title":"fas fa-trash","searchTerms":["delete","garbage","hide","remove"]},{"title":"fas fa-trash-alt","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"far fa-trash-alt","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"fas fa-trash-restore","searchTerms":["back","control z","oops","undo"]},{"title":"fas fa-trash-restore-alt","searchTerms":["back","control z","oops","undo"]},{"title":"fas fa-tree","searchTerms":["bark","fall","flora","forest","nature","plant","seasonal"]},{"title":"fab fa-trello","searchTerms":["atlassian"]},{"title":"fas fa-trophy","searchTerms":["achievement","award","cup","game","winner"]},{"title":"fas fa-truck","searchTerms":["cargo","delivery","shipping","vehicle"]},{"title":"fas fa-truck-loading","searchTerms":["box","cargo","delivery","inventory","moving","rental","vehicle"]},{"title":"fas fa-truck-monster","searchTerms":["offroad","vehicle","wheel"]},{"title":"fas fa-truck-moving","searchTerms":["cargo","inventory","rental","vehicle"]},{"title":"fas fa-truck-pickup","searchTerms":["cargo","vehicle"]},{"title":"fas fa-tshirt","searchTerms":["clothing","fashion","garment","shirt"]},{"title":"fas fa-tty","searchTerms":["communication","deaf","telephone","teletypewriter","text"]},{"title":"fab fa-tumblr","searchTerms":[]},{"title":"fab fa-tumblr-square","searchTerms":[]},{"title":"fas fa-tv","searchTerms":["computer","display","monitor","television"]},{"title":"fab fa-twitch","searchTerms":[]},{"title":"fab fa-twitter","searchTerms":["social network","tweet"]},{"title":"fab fa-twitter-square","searchTerms":["social network","tweet"]},{"title":"fab fa-typo3","searchTerms":[]},{"title":"fab fa-uber","searchTerms":[]},{"title":"fab fa-ubuntu","searchTerms":["linux","operating system","os"]},{"title":"fab fa-uikit","searchTerms":[]},{"title":"fab fa-umbraco","searchTerms":[]},{"title":"fas fa-umbrella","searchTerms":["protection","rain","storm","wet"]},{"title":"fas fa-umbrella-beach","searchTerms":["protection","recreation","sand","shade","summer","sun"]},{"title":"fab fa-uncharted","searchTerms":[]},{"title":"fas fa-underline","searchTerms":["edit","emphasis","format","text","writing"]},{"title":"fas fa-undo","searchTerms":["back","control z","exchange","oops","return","rotate","swap"]},{"title":"fas fa-undo-alt","searchTerms":["back","control z","exchange","oops","return","swap"]},{"title":"fab fa-uniregistry","searchTerms":[]},{"title":"fab fa-unity","searchTerms":[]},{"title":"fas fa-universal-access","searchTerms":["accessibility","hearing","person","seeing","visual impairment"]},{"title":"fas fa-university","searchTerms":["bank","building","college","higher education - students","institution"]},{"title":"fas fa-unlink","searchTerms":["attachment","chain","chain-broken","remove"]},{"title":"fas fa-unlock","searchTerms":["admin","lock","password","private","protect"]},{"title":"fas fa-unlock-alt","searchTerms":["admin","lock","password","private","protect"]},{"title":"fab fa-unsplash","searchTerms":[]},{"title":"fab fa-untappd","searchTerms":[]},{"title":"fas fa-upload","searchTerms":["hard drive","import","publish"]},{"title":"fab fa-ups","searchTerms":["United Parcel Service","package","shipping"]},{"title":"fab fa-usb","searchTerms":[]},{"title":"fas fa-user","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"far fa-user","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-alt","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-alt-slash","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-astronaut","searchTerms":["avatar","clothing","cosmonaut","nasa","space","suit"]},{"title":"fas fa-user-check","searchTerms":["accept","check","person","verified"]},{"title":"fas fa-user-circle","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"far fa-user-circle","searchTerms":["account","avatar","head","human","man","person","profile"]},{"title":"fas fa-user-clock","searchTerms":["alert","person","remind","time"]},{"title":"fas fa-user-cog","searchTerms":["admin","cog","person","settings"]},{"title":"fas fa-user-edit","searchTerms":["edit","pen","pencil","person","update","write"]},{"title":"fas fa-user-friends","searchTerms":["group","people","person","team","users"]},{"title":"fas fa-user-graduate","searchTerms":["cap","clothing","commencement","gown","graduation","person","student"]},{"title":"fas fa-user-injured","searchTerms":["cast","injury","ouch","patient","person","sling"]},{"title":"fas fa-user-lock","searchTerms":["admin","lock","person","private","unlock"]},{"title":"fas fa-user-md","searchTerms":["covid-19","job","medical","nurse","occupation","physician","profile","surgeon"]},{"title":"fas fa-user-minus","searchTerms":["delete","negative","remove"]},{"title":"fas fa-user-ninja","searchTerms":["assassin","avatar","dangerous","deadly","sneaky"]},{"title":"fas fa-user-nurse","searchTerms":["covid-19","doctor","midwife","practitioner","surgeon"]},{"title":"fas fa-user-plus","searchTerms":["add","avatar","positive","sign up","signup","team"]},{"title":"fas fa-user-secret","searchTerms":["clothing","coat","hat","incognito","person","privacy","spy","whisper"]},{"title":"fas fa-user-shield","searchTerms":["admin","person","private","protect","safe"]},{"title":"fas fa-user-slash","searchTerms":["ban","delete","remove"]},{"title":"fas fa-user-tag","searchTerms":["avatar","discount","label","person","role","special"]},{"title":"fas fa-user-tie","searchTerms":["avatar","business","clothing","formal","professional","suit"]},{"title":"fas fa-user-times","searchTerms":["archive","delete","remove","x"]},{"title":"fas fa-users","searchTerms":["friends","group","people","persons","profiles","team"]},{"title":"fas fa-users-cog","searchTerms":["admin","cog","group","person","settings","team"]},{"title":"fas fa-users-slash","searchTerms":["disband","friends","group","people","persons","profiles","separate","team","ungroup"]},{"title":"fab fa-usps","searchTerms":["american","package","shipping","usa"]},{"title":"fab fa-ussunnah","searchTerms":[]},{"title":"fas fa-utensil-spoon","searchTerms":["cutlery","dining","scoop","silverware","spoon"]},{"title":"fas fa-utensils","searchTerms":["cutlery","dining","dinner","eat","food","fork","knife","restaurant"]},{"title":"fab fa-vaadin","searchTerms":[]},{"title":"fas fa-vector-square","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fas fa-venus","searchTerms":["female"]},{"title":"fas fa-venus-double","searchTerms":["female"]},{"title":"fas fa-venus-mars","searchTerms":["Gender"]},{"title":"fas fa-vest","searchTerms":["biker","fashion","style"]},{"title":"fas fa-vest-patches","searchTerms":["biker","fashion","style"]},{"title":"fab fa-viacoin","searchTerms":[]},{"title":"fab fa-viadeo","searchTerms":[]},{"title":"fab fa-viadeo-square","searchTerms":[]},{"title":"fas fa-vial","searchTerms":["experiment","lab","sample","science","test","test tube"]},{"title":"fas fa-vials","searchTerms":["experiment","lab","sample","science","test","test tube"]},{"title":"fab fa-viber","searchTerms":[]},{"title":"fas fa-video","searchTerms":["camera","film","movie","record","video-camera"]},{"title":"fas fa-video-slash","searchTerms":["add","create","film","new","positive","record","video"]},{"title":"fas fa-vihara","searchTerms":["buddhism","buddhist","building","monastery"]},{"title":"fab fa-vimeo","searchTerms":[]},{"title":"fab fa-vimeo-square","searchTerms":[]},{"title":"fab fa-vimeo-v","searchTerms":["vimeo"]},{"title":"fab fa-vine","searchTerms":[]},{"title":"fas fa-virus","searchTerms":["bug","covid-19","flu","health","sick","viral"]},{"title":"fas fa-virus-slash","searchTerms":["bug","covid-19","cure","eliminate","flu","health","sick","viral"]},{"title":"fas fa-viruses","searchTerms":["bugs","covid-19","flu","health","multiply","sick","spread","viral"]},{"title":"fab fa-vk","searchTerms":[]},{"title":"fab fa-vnv","searchTerms":[]},{"title":"fas fa-voicemail","searchTerms":["answer","inbox","message","phone"]},{"title":"fas fa-volleyball-ball","searchTerms":["beach","olympics","sport"]},{"title":"fas fa-volume-down","searchTerms":["audio","lower","music","quieter","sound","speaker"]},{"title":"fas fa-volume-mute","searchTerms":["audio","music","quiet","sound","speaker"]},{"title":"fas fa-volume-off","searchTerms":["audio","ban","music","mute","quiet","silent","sound"]},{"title":"fas fa-volume-up","searchTerms":["audio","higher","louder","music","sound","speaker"]},{"title":"fas fa-vote-yea","searchTerms":["accept","cast","election","politics","positive","yes"]},{"title":"fas fa-vr-cardboard","searchTerms":["3d","augment","google","reality","virtual"]},{"title":"fab fa-vuejs","searchTerms":[]},{"title":"fas fa-walking","searchTerms":["exercise","health","pedometer","person","steps"]},{"title":"fas fa-wallet","searchTerms":["billfold","cash","currency","money"]},{"title":"fas fa-warehouse","searchTerms":["building","capacity","garage","inventory","storage"]},{"title":"fab fa-watchman-monitoring","searchTerms":[]},{"title":"fas fa-water","searchTerms":["lake","liquid","ocean","sea","swim","wet"]},{"title":"fas fa-wave-square","searchTerms":["frequency","pulse","signal"]},{"title":"fab fa-waze","searchTerms":[]},{"title":"fab fa-weebly","searchTerms":[]},{"title":"fab fa-weibo","searchTerms":[]},{"title":"fas fa-weight","searchTerms":["health","measurement","scale","weight"]},{"title":"fas fa-weight-hanging","searchTerms":["anvil","heavy","measurement"]},{"title":"fab fa-weixin","searchTerms":[]},{"title":"fab fa-whatsapp","searchTerms":[]},{"title":"fab fa-whatsapp-square","searchTerms":[]},{"title":"fas fa-wheelchair","searchTerms":["accessible","handicap","person"]},{"title":"fab fa-whmcs","searchTerms":[]},{"title":"fas fa-wifi","searchTerms":["connection","hotspot","internet","network","wireless"]},{"title":"fab fa-wikipedia-w","searchTerms":[]},{"title":"fas fa-wind","searchTerms":["air","blow","breeze","fall","seasonal","weather"]},{"title":"fas fa-window-close","searchTerms":["browser","cancel","computer","development"]},{"title":"far fa-window-close","searchTerms":["browser","cancel","computer","development"]},{"title":"fas fa-window-maximize","searchTerms":["browser","computer","development","expand"]},{"title":"far fa-window-maximize","searchTerms":["browser","computer","development","expand"]},{"title":"fas fa-window-minimize","searchTerms":["browser","collapse","computer","development"]},{"title":"far fa-window-minimize","searchTerms":["browser","collapse","computer","development"]},{"title":"fas fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"far fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"fab fa-windows","searchTerms":["microsoft","operating system","os"]},{"title":"fas fa-wine-bottle","searchTerms":["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{"title":"fas fa-wine-glass","searchTerms":["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{"title":"fas fa-wine-glass-alt","searchTerms":["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{"title":"fab fa-wix","searchTerms":[]},{"title":"fab fa-wizards-of-the-coast","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fab fa-wodu","searchTerms":[]},{"title":"fab fa-wolf-pack-battalion","searchTerms":[]},{"title":"fas fa-won-sign","searchTerms":["currency","krw","money"]},{"title":"fab fa-wordpress","searchTerms":[]},{"title":"fab fa-wordpress-simple","searchTerms":[]},{"title":"fab fa-wpbeginner","searchTerms":[]},{"title":"fab fa-wpexplorer","searchTerms":[]},{"title":"fab fa-wpforms","searchTerms":[]},{"title":"fab fa-wpressr","searchTerms":["rendact"]},{"title":"fas fa-wrench","searchTerms":["construction","fix","mechanic","plumbing","settings","spanner","tool","update"]},{"title":"fas fa-x-ray","searchTerms":["health","medical","radiological images","radiology","skeleton"]},{"title":"fab fa-xbox","searchTerms":[]},{"title":"fab fa-xing","searchTerms":[]},{"title":"fab fa-xing-square","searchTerms":[]},{"title":"fab fa-y-combinator","searchTerms":[]},{"title":"fab fa-yahoo","searchTerms":[]},{"title":"fab fa-yammer","searchTerms":[]},{"title":"fab fa-yandex","searchTerms":[]},{"title":"fab fa-yandex-international","searchTerms":[]},{"title":"fab fa-yarn","searchTerms":[]},{"title":"fab fa-yelp","searchTerms":[]},{"title":"fas fa-yen-sign","searchTerms":["currency","jpy","money"]},{"title":"fas fa-yin-yang","searchTerms":["daoism","opposites","taoism"]},{"title":"fab fa-yoast","searchTerms":[]},{"title":"fab fa-youtube","searchTerms":["film","video","youtube-play","youtube-square"]},{"title":"fab fa-youtube-square","searchTerms":[]},{"title":"fab fa-zhihu","searchTerms":[]}] + }); +}); \ No newline at end of file diff --git a/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.min.js b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.min.js new file mode 100644 index 0000000..9faafdb --- /dev/null +++ b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v5.min.js @@ -0,0 +1 @@ +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{a(jQuery)}})(function(a){a.ui=a.ui||{};var b=a.ui.version="1.12.1";(function(){var b,c=Math.max,d=Math.abs,e=/left|center|right/,f=/top|center|bottom/,g=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,i=/%$/,j=a.fn.pos;function k(a,b,c){return[parseFloat(a[0])*(i.test(a[0])?b/100:1),parseFloat(a[1])*(i.test(a[1])?c/100:1)]}function l(b,c){return parseInt(a.css(b,c),10)||0}function m(b){var c=b[0];if(c.nodeType===9){return{width:b.width(),height:b.height(),offset:{top:0,left:0}}}if(a.isWindow(c)){return{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}}if(c.preventDefault){return{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}}return{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.pos={scrollbarWidth:function(){if(b!==undefined){return b}var c,d,e=a("
              "+"
              "),f=e.children()[0];a("body").append(e);c=f.offsetWidth;e.css("overflow","scroll");d=f.offsetWidth;if(c===d){d=e[0].clientWidth}e.remove();return b=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e=c==="scroll"||c==="auto"&&b.width0?"right":"center",vertical:k<0?"top":i>0?"bottom":"middle"};if(nc(d(i),d(k))){l.important="horizontal"}else{l.important="vertical"}b.using.call(this,a,l)}}g.offset(a.extend(z,{using:f}))})};a.ui.pos={_trigger:function(a,b,c,d){if(b.elem){b.elem.trigger({type:c,position:a,positionData:b,triggered:d})}},fit:{left:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitLeft");var e=d.within,f=e.isWindow?e.scrollLeft:e.offset.left,g=e.width,h=b.left-d.collisionPosition.marginLeft,i=f-h,j=h+d.collisionWidth-g-f,k;if(d.collisionWidth>g){if(i>0&&j<=0){k=b.left+i+d.collisionWidth-g-f;b.left+=i-k}else if(j>0&&i<=0){b.left=f}else{if(i>j){b.left=f+g-d.collisionWidth}else{b.left=f}}}else if(i>0){b.left+=i}else if(j>0){b.left-=j}else{b.left=c(b.left-h,b.left)}a.ui.pos._trigger(b,d,"posCollided","fitLeft")},top:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitTop");var e=d.within,f=e.isWindow?e.scrollTop:e.offset.top,g=d.within.height,h=b.top-d.collisionPosition.marginTop,i=f-h,j=h+d.collisionHeight-g-f,k;if(d.collisionHeight>g){if(i>0&&j<=0){k=b.top+i+d.collisionHeight-g-f;b.top+=i-k}else if(j>0&&i<=0){b.top=f}else{if(i>j){b.top=f+g-d.collisionHeight}else{b.top=f}}}else if(i>0){b.top+=i}else if(j>0){b.top-=j}else{b.top=c(b.top-h,b.top)}a.ui.pos._trigger(b,d,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var e=c.within,f=e.offset.left+e.scrollLeft,g=e.width,h=e.isWindow?e.scrollLeft:e.offset.left,i=b.left-c.collisionPosition.marginLeft,j=i-h,k=i+c.collisionWidth-g-h,l=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,m=c.at[0]==="left"?c.targetWidth:c.at[0]==="right"?-c.targetWidth:0,n=-2*c.offset[0],o,p;if(j<0){o=b.left+l+m+n+c.collisionWidth-g-f;if(o<0||o0){p=b.left-c.collisionPosition.marginLeft+l+m+n-h;if(p>0||d(p)0){p=b.top-c.collisionPosition.marginTop+m+n+o-h;if(p>0||d(p)10&&e<11;b.innerHTML="";c.removeChild(b)})()})();var c=a.ui.position});(function(a){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],a)}else if(window.jQuery&&!window.jQuery.fn.iconpicker){a(window.jQuery)}})(function(a){"use strict";var b={isEmpty:function(a){return a===false||a===""||a===null||a===undefined},isEmptyObject:function(a){return this.isEmpty(a)===true||a.length===0},isElement:function(b){return a(b).length>0},isString:function(a){return typeof a==="string"||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return a.inArray(b,c)!==-1},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}};var c=function(d,e){this._id=c._idCounter++;this.element=a(d).addClass("iconpicker-element");this._trigger("iconpickerCreate",{iconpickerValue:this.iconpickerValue});this.options=a.extend({},c.defaultOptions,this.element.data(),e);this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates);this.options.originalPlacement=this.options.placement;this.container=b.isElement(this.options.container)?a(this.options.container):false;if(this.container===false){if(this.element.is(".dropdown-toggle")){this.container=a("~ .dropdown-menu:first",this.element)}else{this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element}}this.container.addClass("iconpicker-container");if(this.isDropdownMenu()){this.options.placement="inline"}this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):false;if(this.input===false){this.input=this.container.find(this.options.input);if(!this.input.is("input,textarea")){this.input=false}}this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component);if(this.component.length===0){this.component=false}else{this.component.find("i").addClass("iconpicker-component")}this._createPopover();this._createIconpicker();if(this.getAcceptButton().length===0){this.options.mustAccept=false}if(this.isInputGroup()){this.container.parent().append(this.popover)}else{this.container.append(this.popover)}this._bindElementEvents();this._bindWindowEvents();this.update(this.options.selected);if(this.isInline()){this.show()}this._trigger("iconpickerCreated",{iconpickerValue:this.iconpickerValue})};c._idCounter=0;c.defaultOptions={title:false,selected:false,defaultValue:false,placement:"bottom",collision:"none",animation:true,hideOnSelect:true,showFooter:false,searchInFooter:false,mustAccept:false,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return a},input:"input,.iconpicker-input",inputSearch:false,container:false,component:".input-group-addon,.iconpicker-component",templates:{popover:'
              '+'
              ',footer:'',buttons:''+' ',search:'',iconpicker:'
              ',iconpickerItem:''}};c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");if(!!b){b[c].apply(b,d)}})};c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{};this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(!!this.options.title){c.append(a('
              '+this.options.title+"
              "))}if(this.hasSeparatedSearchInput()&&!this.options.searchInFooter){c.append(this.options.templates.search)}else if(!this.options.title){c.remove()}if(this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);if(this.hasSeparatedSearchInput()&&this.options.searchInFooter){d.append(a(this.options.templates.search))}if(!b.isEmpty(this.options.templates.buttons)){d.append(a(this.options.templates.buttons))}this.popover.append(d)}if(this.options.animation===true){this.popover.addClass("fade")}return this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);if(d.is("i")){d=d.parent()}b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue});if(b.options.mustAccept===false){b.update(d.data("iconpickerValue"));b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})}else{b.update(d.data("iconpickerValue"),true)}if(b.options.hideOnSelect&&b.options.mustAccept===false){b.hide()}};for(var d in this.options.icons){if(typeof this.options.icons[d].title==="string"){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title));e.data("iconpickerValue",this.options.icons[d].title).on("click.iconpicker",c);this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d].title));if(this.options.icons[d].searchTerms.length>0){var f="";for(var g=0;g0){a.attr("class",this.options.fullClassFormatter(this.iconpickerValue))}else{this.component.html(this.getHtml())}}},_updateFormGroupStatus:function(a){if(this.hasInput()){if(a!==false){this.input.parents(".form-group:first").removeClass("has-error")}else{this.input.parents(".form-group:first").addClass("has-error")}return true}return false},getValid:function(c){if(!b.isString(c)){c=""}var d=c==="";c=a.trim(c);var e=false;for(var f=0;f'},setSourceValue:function(a){a=this.setValue(a);if(a!==false&&a!==""){if(this.hasInput()){this.input.val(this.iconpickerValue)}else{this.element.data("iconpickerValue",this.iconpickerValue)}this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})}return a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;if(this.hasInput()){b=this.input.val()}else{b=this.element.data("iconpickerValue")}if(b===undefined||b===""||b===null||b===false){b=a}return b},hasInput:function(){return this.input!==false},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===true},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==false&&!this.isInputSearch()},hasComponent:function(){return this.component!==false},hasContainer:function(){return this.container!==false},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c)){this.iconpicker.find(".iconpicker-item").show();return a(false)}else{var d=[];this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this);var e=b.attr("title").toLowerCase();var f=b.attr("data-search-terms")?b.attr("data-search-terms").toLowerCase():"";e=e+" "+f;var g=false;try{g=new RegExp("(^|\\W)"+c,"g")}catch(a){g=false}if(g!==false&&e.match(g)){d.push(b);b.show()}else{b.hide()}});return d}},show:function(){if(this.popover.hasClass("show")){return false}a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide");this._trigger("iconpickerShow",{iconpickerValue:this.iconpickerValue});this.updatePlacement();this.popover.addClass("show");setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block");this._trigger("iconpickerShown",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},hide:function(){if(!this.popover.hasClass("show")){return false}this._trigger("iconpickerHide",{iconpickerValue:this.iconpickerValue});this.popover.removeClass("show");setTimeout(a.proxy(function(){this.popover.css("display","none");this.getSearchInput().val("");this.filter("");this._trigger("iconpickerHidden",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},toggle:function(){if(this.popover.is(":visible")){this.hide()}else{this.show(true)}},update:function(a,b){a=a?a:this.getSourceValue(this.iconpickerValue);this._trigger("iconpickerUpdate",{iconpickerValue:this.iconpickerValue});if(b===true){a=this.setValue(a)}else{a=this.setSourceValue(a);this._updateFormGroupStatus(a!==false)}this._updateComponents();this._trigger("iconpickerUpdated",{iconpickerValue:this.iconpickerValue});return a},destroy:function(){this._trigger("iconpickerDestroy",{iconpickerValue:this.iconpickerValue});this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");this._unbindElementEvents();this._unbindWindowEvents();a(this.popover).remove();this._trigger("iconpickerDestroyed",{iconpickerValue:this.iconpickerValue})},disable:function(){if(this.hasInput()){this.input.prop("disabled",true);return true}return false},enable:function(){if(this.hasInput()){this.input.prop("disabled",false);return true}return false},isDisabled:function(){if(this.hasInput()){return this.input.prop("disabled")===true}return false},isInline:function(){return this.options.placement==="inline"||this.popover.hasClass("inline")}};a.iconpicker=c;a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);if(!d.data("iconpicker")){d.data("iconpicker",new c(this,typeof b==="object"?b:{}))}})};c.defaultOptions=a.extend(c.defaultOptions,{icons:[{title:"fab fa-500px",searchTerms:[]},{title:"fab fa-accessible-icon",searchTerms:["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{title:"fab fa-accusoft",searchTerms:[]},{title:"fab fa-acquisitions-incorporated",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-ad",searchTerms:["advertisement","media","newspaper","promotion","publicity"]},{title:"fas fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"far fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"fas fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile"]},{title:"far fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile"]},{title:"fas fa-adjust",searchTerms:["contrast","dark","light","saturation"]},{title:"fab fa-adn",searchTerms:[]},{title:"fab fa-adversal",searchTerms:[]},{title:"fab fa-affiliatetheme",searchTerms:[]},{title:"fas fa-air-freshener",searchTerms:["car","deodorize","fresh","pine","scent"]},{title:"fab fa-airbnb",searchTerms:[]},{title:"fab fa-algolia",searchTerms:[]},{title:"fas fa-align-center",searchTerms:["format","middle","paragraph","text"]},{title:"fas fa-align-justify",searchTerms:["format","paragraph","text"]},{title:"fas fa-align-left",searchTerms:["format","paragraph","text"]},{title:"fas fa-align-right",searchTerms:["format","paragraph","text"]},{title:"fab fa-alipay",searchTerms:[]},{title:"fas fa-allergies",searchTerms:["allergy","freckles","hand","hives","pox","skin","spots"]},{title:"fab fa-amazon",searchTerms:[]},{title:"fab fa-amazon-pay",searchTerms:[]},{title:"fas fa-ambulance",searchTerms:["covid-19","emergency","emt","er","help","hospital","support","vehicle"]},{title:"fas fa-american-sign-language-interpreting",searchTerms:["asl","deaf","finger","hand","interpret","speak"]},{title:"fab fa-amilia",searchTerms:[]},{title:"fas fa-anchor",searchTerms:["berth","boat","dock","embed","link","maritime","moor","secure"]},{title:"fab fa-android",searchTerms:["robot"]},{title:"fab fa-angellist",searchTerms:[]},{title:"fas fa-angle-double-down",searchTerms:["arrows","caret","download","expand"]},{title:"fas fa-angle-double-left",searchTerms:["arrows","back","caret","laquo","previous","quote"]},{title:"fas fa-angle-double-right",searchTerms:["arrows","caret","forward","more","next","quote","raquo"]},{title:"fas fa-angle-double-up",searchTerms:["arrows","caret","collapse","upload"]},{title:"fas fa-angle-down",searchTerms:["arrow","caret","download","expand"]},{title:"fas fa-angle-left",searchTerms:["arrow","back","caret","less","previous"]},{title:"fas fa-angle-right",searchTerms:["arrow","care","forward","more","next"]},{title:"fas fa-angle-up",searchTerms:["arrow","caret","collapse","upload"]},{title:"fas fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"far fa-angry",searchTerms:["disapprove","emoticon","face","mad","upset"]},{title:"fab fa-angrycreative",searchTerms:[]},{title:"fab fa-angular",searchTerms:[]},{title:"fas fa-ankh",searchTerms:["amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{title:"fab fa-app-store",searchTerms:[]},{title:"fab fa-app-store-ios",searchTerms:[]},{title:"fab fa-apper",searchTerms:[]},{title:"fab fa-apple",searchTerms:["fruit","ios","mac","operating system","os","osx"]},{title:"fas fa-apple-alt",searchTerms:["fall","fruit","fuji","macintosh","orchard","seasonal","vegan"]},{title:"fab fa-apple-pay",searchTerms:[]},{title:"fas fa-archive",searchTerms:["box","package","save","storage"]},{title:"fas fa-archway",searchTerms:["arc","monument","road","street","tunnel"]},{title:"fas fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"far fa-arrow-alt-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"fas fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"far fa-arrow-alt-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"fas fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"far fa-arrow-alt-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"fas fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"far fa-arrow-alt-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fas fa-arrow-circle-down",searchTerms:["download"]},{title:"fas fa-arrow-circle-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-circle-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-circle-up",searchTerms:["upload"]},{title:"fas fa-arrow-down",searchTerms:["download"]},{title:"fas fa-arrow-left",searchTerms:["back","previous"]},{title:"fas fa-arrow-right",searchTerms:["forward","next"]},{title:"fas fa-arrow-up",searchTerms:["forward","upload"]},{title:"fas fa-arrows-alt",searchTerms:["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{title:"fas fa-arrows-alt-h",searchTerms:["arrows-h","expand","horizontal","landscape","resize","wide"]},{title:"fas fa-arrows-alt-v",searchTerms:["arrows-v","expand","portrait","resize","tall","vertical"]},{title:"fab fa-artstation",searchTerms:[]},{title:"fas fa-assistive-listening-systems",searchTerms:["amplify","audio","deaf","ear","headset","hearing","sound"]},{title:"fas fa-asterisk",searchTerms:["annotation","details","reference","star"]},{title:"fab fa-asymmetrik",searchTerms:[]},{title:"fas fa-at",searchTerms:["address","author","e-mail","email","handle"]},{title:"fas fa-atlas",searchTerms:["book","directions","geography","globe","map","travel","wayfinding"]},{title:"fab fa-atlassian",searchTerms:[]},{title:"fas fa-atom",searchTerms:["atheism","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{title:"fab fa-audible",searchTerms:[]},{title:"fas fa-audio-description",searchTerms:["blind","narration","video","visual"]},{title:"fab fa-autoprefixer",searchTerms:[]},{title:"fab fa-avianex",searchTerms:[]},{title:"fab fa-aviato",searchTerms:[]},{title:"fas fa-award",searchTerms:["honor","praise","prize","recognition","ribbon","trophy"]},{title:"fab fa-aws",searchTerms:[]},{title:"fas fa-baby",searchTerms:["child","diaper","doll","human","infant","kid","offspring","person","sprout"]},{title:"fas fa-baby-carriage",searchTerms:["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{title:"fas fa-backspace",searchTerms:["command","delete","erase","keyboard","undo"]},{title:"fas fa-backward",searchTerms:["previous","rewind"]},{title:"fas fa-bacon",searchTerms:["blt","breakfast","ham","lard","meat","pancetta","pork","rasher"]},{title:"fas fa-bacteria",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fas fa-bacterium",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fas fa-bahai",searchTerms:["bahai","bahá'í","star"]},{title:"fas fa-balance-scale",searchTerms:["balanced","justice","legal","measure","weight"]},{title:"fas fa-balance-scale-left",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fas fa-balance-scale-right",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fas fa-ban",searchTerms:["abort","ban","block","cancel","delete","hide","prohibit","remove","stop","trash"]},{title:"fas fa-band-aid",searchTerms:["bandage","boo boo","first aid","ouch"]},{title:"fab fa-bandcamp",searchTerms:[]},{title:"fas fa-barcode",searchTerms:["info","laser","price","scan","upc"]},{title:"fas fa-bars",searchTerms:["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{title:"fas fa-baseball-ball",searchTerms:["foul","hardball","league","leather","mlb","softball","sport"]},{title:"fas fa-basketball-ball",searchTerms:["dribble","dunk","hoop","nba"]},{title:"fas fa-bath",searchTerms:["clean","shower","tub","wash"]},{title:"fas fa-battery-empty",searchTerms:["charge","dead","power","status"]},{title:"fas fa-battery-full",searchTerms:["charge","power","status"]},{title:"fas fa-battery-half",searchTerms:["charge","power","status"]},{title:"fas fa-battery-quarter",searchTerms:["charge","low","power","status"]},{title:"fas fa-battery-three-quarters",searchTerms:["charge","power","status"]},{title:"fab fa-battle-net",searchTerms:[]},{title:"fas fa-bed",searchTerms:["lodging","mattress","rest","sleep","travel"]},{title:"fas fa-beer",searchTerms:["alcohol","ale","bar","beverage","brewery","drink","lager","liquor","mug","stein"]},{title:"fab fa-behance",searchTerms:[]},{title:"fab fa-behance-square",searchTerms:[]},{title:"fas fa-bell",searchTerms:["alarm","alert","chime","notification","reminder"]},{title:"far fa-bell",searchTerms:["alarm","alert","chime","notification","reminder"]},{title:"fas fa-bell-slash",searchTerms:["alert","cancel","disabled","notification","off","reminder"]},{title:"far fa-bell-slash",searchTerms:["alert","cancel","disabled","notification","off","reminder"]},{title:"fas fa-bezier-curve",searchTerms:["curves","illustrator","lines","path","vector"]},{title:"fas fa-bible",searchTerms:["book","catholicism","christianity","god","holy"]},{title:"fas fa-bicycle",searchTerms:["bike","gears","pedal","transportation","vehicle"]},{title:"fas fa-biking",searchTerms:["bicycle","bike","cycle","cycling","ride","wheel"]},{title:"fab fa-bimobject",searchTerms:[]},{title:"fas fa-binoculars",searchTerms:["glasses","magnify","scenic","spyglass","view"]},{title:"fas fa-biohazard",searchTerms:["covid-19","danger","dangerous","hazmat","medical","radioactive","toxic","waste","zombie"]},{title:"fas fa-birthday-cake",searchTerms:["anniversary","bakery","candles","celebration","dessert","frosting","holiday","party","pastry"]},{title:"fab fa-bitbucket",searchTerms:["atlassian","bitbucket-square","git"]},{title:"fab fa-bitcoin",searchTerms:[]},{title:"fab fa-bity",searchTerms:[]},{title:"fab fa-black-tie",searchTerms:[]},{title:"fab fa-blackberry",searchTerms:[]},{title:"fas fa-blender",searchTerms:["cocktail","milkshake","mixer","puree","smoothie"]},{title:"fas fa-blender-phone",searchTerms:["appliance","cocktail","communication","fantasy","milkshake","mixer","puree","silly","smoothie"]},{title:"fas fa-blind",searchTerms:["cane","disability","person","sight"]},{title:"fas fa-blog",searchTerms:["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{title:"fab fa-blogger",searchTerms:[]},{title:"fab fa-blogger-b",searchTerms:[]},{title:"fab fa-bluetooth",searchTerms:[]},{title:"fab fa-bluetooth-b",searchTerms:[]},{title:"fas fa-bold",searchTerms:["emphasis","format","text"]},{title:"fas fa-bolt",searchTerms:["electricity","lightning","weather","zap"]},{title:"fas fa-bomb",searchTerms:["error","explode","fuse","grenade","warning"]},{title:"fas fa-bone",searchTerms:["calcium","dog","skeletal","skeleton","tibia"]},{title:"fas fa-bong",searchTerms:["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{title:"fas fa-book",searchTerms:["diary","documentation","journal","library","read"]},{title:"fas fa-book-dead",searchTerms:["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","necronomicon","read","skull","spell"]},{title:"fas fa-book-medical",searchTerms:["diary","documentation","health","history","journal","library","read","record"]},{title:"fas fa-book-open",searchTerms:["flyer","library","notebook","open book","pamphlet","reading"]},{title:"fas fa-book-reader",searchTerms:["flyer","library","notebook","open book","pamphlet","reading"]},{title:"fas fa-bookmark",searchTerms:["favorite","marker","read","remember","save"]},{title:"far fa-bookmark",searchTerms:["favorite","marker","read","remember","save"]},{title:"fab fa-bootstrap",searchTerms:[]},{title:"fas fa-border-all",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fas fa-border-none",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fas fa-border-style",searchTerms:[]},{title:"fas fa-bowling-ball",searchTerms:["alley","candlepin","gutter","lane","strike","tenpin"]},{title:"fas fa-box",searchTerms:["archive","container","package","storage"]},{title:"fas fa-box-open",searchTerms:["archive","container","package","storage","unpack"]},{title:"fas fa-box-tissue",searchTerms:["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{title:"fas fa-boxes",searchTerms:["archives","inventory","storage","warehouse"]},{title:"fas fa-braille",searchTerms:["alphabet","blind","dots","raised","vision"]},{title:"fas fa-brain",searchTerms:["cerebellum","gray matter","intellect","medulla oblongata","mind","noodle","wit"]},{title:"fas fa-bread-slice",searchTerms:["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{title:"fas fa-briefcase",searchTerms:["bag","business","luggage","office","work"]},{title:"fas fa-briefcase-medical",searchTerms:["doctor","emt","first aid","health"]},{title:"fas fa-broadcast-tower",searchTerms:["airwaves","antenna","radio","reception","waves"]},{title:"fas fa-broom",searchTerms:["clean","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","witch"]},{title:"fas fa-brush",searchTerms:["art","bristles","color","handle","paint"]},{title:"fab fa-btc",searchTerms:[]},{title:"fab fa-buffer",searchTerms:[]},{title:"fas fa-bug",searchTerms:["beetle","error","insect","report"]},{title:"fas fa-building",searchTerms:["apartment","business","city","company","office","work"]},{title:"far fa-building",searchTerms:["apartment","business","city","company","office","work"]},{title:"fas fa-bullhorn",searchTerms:["announcement","broadcast","louder","megaphone","share"]},{title:"fas fa-bullseye",searchTerms:["archery","goal","objective","target"]},{title:"fas fa-burn",searchTerms:["caliente","energy","fire","flame","gas","heat","hot"]},{title:"fab fa-buromobelexperte",searchTerms:[]},{title:"fas fa-bus",searchTerms:["public transportation","transportation","travel","vehicle"]},{title:"fas fa-bus-alt",searchTerms:["mta","public transportation","transportation","travel","vehicle"]},{title:"fas fa-business-time",searchTerms:["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{title:"fab fa-buy-n-large",searchTerms:[]},{title:"fab fa-buysellads",searchTerms:[]},{title:"fas fa-calculator",searchTerms:["abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{title:"fas fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"far fa-calendar",searchTerms:["calendar-o","date","event","schedule","time","when"]},{title:"fas fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"far fa-calendar-alt",searchTerms:["calendar","date","event","schedule","time","when"]},{title:"fas fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{title:"far fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","done","event","ok","schedule","select","success","tick","time","todo","when"]},{title:"fas fa-calendar-day",searchTerms:["date","detail","event","focus","schedule","single day","time","today","when"]},{title:"fas fa-calendar-minus",searchTerms:["calendar","date","delete","event","negative","remove","schedule","time","when"]},{title:"far fa-calendar-minus",searchTerms:["calendar","date","delete","event","negative","remove","schedule","time","when"]},{title:"fas fa-calendar-plus",searchTerms:["add","calendar","create","date","event","new","positive","schedule","time","when"]},{title:"far fa-calendar-plus",searchTerms:["add","calendar","create","date","event","new","positive","schedule","time","when"]},{title:"fas fa-calendar-times",searchTerms:["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{title:"far fa-calendar-times",searchTerms:["archive","calendar","date","delete","event","remove","schedule","time","when","x"]},{title:"fas fa-calendar-week",searchTerms:["date","detail","event","focus","schedule","single week","time","today","when"]},{title:"fas fa-camera",searchTerms:["image","lens","photo","picture","record","shutter","video"]},{title:"fas fa-camera-retro",searchTerms:["image","lens","photo","picture","record","shutter","video"]},{title:"fas fa-campground",searchTerms:["camping","fall","outdoors","teepee","tent","tipi"]},{title:"fab fa-canadian-maple-leaf",searchTerms:["canada","flag","flora","nature","plant"]},{title:"fas fa-candy-cane",searchTerms:["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{title:"fas fa-cannabis",searchTerms:["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{title:"fas fa-capsules",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fas fa-car",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-car-alt",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-car-battery",searchTerms:["auto","electric","mechanic","power"]},{title:"fas fa-car-crash",searchTerms:["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{title:"fas fa-car-side",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fas fa-caravan",searchTerms:["camper","motor home","rv","trailer","travel"]},{title:"fas fa-caret-down",searchTerms:["arrow","dropdown","expand","menu","more","triangle"]},{title:"fas fa-caret-left",searchTerms:["arrow","back","previous","triangle"]},{title:"fas fa-caret-right",searchTerms:["arrow","forward","next","triangle"]},{title:"fas fa-caret-square-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"far fa-caret-square-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"fas fa-caret-square-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"far fa-caret-square-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"fas fa-caret-square-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"far fa-caret-square-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"fas fa-caret-square-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"far fa-caret-square-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"fas fa-caret-up",searchTerms:["arrow","collapse","triangle"]},{title:"fas fa-carrot",searchTerms:["bugs bunny","orange","vegan","vegetable"]},{title:"fas fa-cart-arrow-down",searchTerms:["download","save","shopping"]},{title:"fas fa-cart-plus",searchTerms:["add","create","new","positive","shopping"]},{title:"fas fa-cash-register",searchTerms:["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{title:"fas fa-cat",searchTerms:["feline","halloween","holiday","kitten","kitty","meow","pet"]},{title:"fab fa-cc-amazon-pay",searchTerms:[]},{title:"fab fa-cc-amex",searchTerms:["amex"]},{title:"fab fa-cc-apple-pay",searchTerms:[]},{title:"fab fa-cc-diners-club",searchTerms:[]},{title:"fab fa-cc-discover",searchTerms:[]},{title:"fab fa-cc-jcb",searchTerms:[]},{title:"fab fa-cc-mastercard",searchTerms:[]},{title:"fab fa-cc-paypal",searchTerms:[]},{title:"fab fa-cc-stripe",searchTerms:[]},{title:"fab fa-cc-visa",searchTerms:[]},{title:"fab fa-centercode",searchTerms:[]},{title:"fab fa-centos",searchTerms:["linux","operating system","os"]},{title:"fas fa-certificate",searchTerms:["badge","star","verified"]},{title:"fas fa-chair",searchTerms:["furniture","seat","sit"]},{title:"fas fa-chalkboard",searchTerms:["blackboard","learning","school","teaching","whiteboard","writing"]},{title:"fas fa-chalkboard-teacher",searchTerms:["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{title:"fas fa-charging-station",searchTerms:["electric","ev","tesla","vehicle"]},{title:"fas fa-chart-area",searchTerms:["analytics","area","chart","graph"]},{title:"fas fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"far fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"fas fa-chart-line",searchTerms:["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{title:"fas fa-chart-pie",searchTerms:["analytics","chart","diagram","graph","pie"]},{title:"fas fa-check",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo","yes"]},{title:"fas fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"far fa-check-circle",searchTerms:["accept","agree","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-check-double",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{title:"fas fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"far fa-check-square",searchTerms:["accept","agree","checkmark","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-cheese",searchTerms:["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{title:"fas fa-chess",searchTerms:["board","castle","checkmate","game","king","rook","strategy","tournament"]},{title:"fas fa-chess-bishop",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-board",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-king",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-knight",searchTerms:["board","checkmate","game","horse","strategy"]},{title:"fas fa-chess-pawn",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-queen",searchTerms:["board","checkmate","game","strategy"]},{title:"fas fa-chess-rook",searchTerms:["board","castle","checkmate","game","strategy"]},{title:"fas fa-chevron-circle-down",searchTerms:["arrow","download","dropdown","menu","more"]},{title:"fas fa-chevron-circle-left",searchTerms:["arrow","back","previous"]},{title:"fas fa-chevron-circle-right",searchTerms:["arrow","forward","next"]},{title:"fas fa-chevron-circle-up",searchTerms:["arrow","collapse","upload"]},{title:"fas fa-chevron-down",searchTerms:["arrow","download","expand"]},{title:"fas fa-chevron-left",searchTerms:["arrow","back","bracket","previous"]},{title:"fas fa-chevron-right",searchTerms:["arrow","bracket","forward","next"]},{title:"fas fa-chevron-up",searchTerms:["arrow","collapse","upload"]},{title:"fas fa-child",searchTerms:["boy","girl","kid","toddler","young"]},{title:"fab fa-chrome",searchTerms:["browser"]},{title:"fab fa-chromecast",searchTerms:[]},{title:"fas fa-church",searchTerms:["building","cathedral","chapel","community","religion"]},{title:"fas fa-circle",searchTerms:["circle-thin","diameter","dot","ellipse","notification","round"]},{title:"far fa-circle",searchTerms:["circle-thin","diameter","dot","ellipse","notification","round"]},{title:"fas fa-circle-notch",searchTerms:["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{title:"fas fa-city",searchTerms:["buildings","busy","skyscrapers","urban","windows"]},{title:"fas fa-clinic-medical",searchTerms:["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{title:"fas fa-clipboard",searchTerms:["copy","notes","paste","record"]},{title:"far fa-clipboard",searchTerms:["copy","notes","paste","record"]},{title:"fas fa-clipboard-check",searchTerms:["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{title:"fas fa-clipboard-list",searchTerms:["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{title:"fas fa-clock",searchTerms:["date","late","schedule","time","timer","timestamp","watch"]},{title:"far fa-clock",searchTerms:["date","late","schedule","time","timer","timestamp","watch"]},{title:"fas fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"far fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"fas fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"far fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"fas fa-cloud",searchTerms:["atmosphere","fog","overcast","save","upload","weather"]},{title:"fas fa-cloud-download-alt",searchTerms:["download","export","save"]},{title:"fas fa-cloud-meatball",searchTerms:["FLDSMDFR","food","spaghetti","storm"]},{title:"fas fa-cloud-moon",searchTerms:["crescent","evening","lunar","night","partly cloudy","sky"]},{title:"fas fa-cloud-moon-rain",searchTerms:["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{title:"fas fa-cloud-rain",searchTerms:["precipitation","rain","sky","storm"]},{title:"fas fa-cloud-showers-heavy",searchTerms:["precipitation","rain","sky","storm"]},{title:"fas fa-cloud-sun",searchTerms:["clear","day","daytime","fall","outdoors","overcast","partly cloudy"]},{title:"fas fa-cloud-sun-rain",searchTerms:["day","overcast","precipitation","storm","summer","sunshower"]},{title:"fas fa-cloud-upload-alt",searchTerms:["cloud-upload","import","save","upload"]},{title:"fab fa-cloudflare",searchTerms:[]},{title:"fab fa-cloudscale",searchTerms:[]},{title:"fab fa-cloudsmith",searchTerms:[]},{title:"fab fa-cloudversify",searchTerms:[]},{title:"fas fa-cocktail",searchTerms:["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{title:"fas fa-code",searchTerms:["brackets","code","development","html"]},{title:"fas fa-code-branch",searchTerms:["branch","code-fork","fork","git","github","rebase","svn","vcs","version"]},{title:"fab fa-codepen",searchTerms:[]},{title:"fab fa-codiepie",searchTerms:[]},{title:"fas fa-coffee",searchTerms:["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{title:"fas fa-cog",searchTerms:["gear","mechanical","settings","sprocket","wheel"]},{title:"fas fa-cogs",searchTerms:["gears","mechanical","settings","sprocket","wheel"]},{title:"fas fa-coins",searchTerms:["currency","dime","financial","gold","money","penny"]},{title:"fas fa-columns",searchTerms:["browser","dashboard","organize","panes","split"]},{title:"fas fa-comment",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comment-alt",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comment-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fas fa-comment-dots",searchTerms:["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{title:"far fa-comment-dots",searchTerms:["bubble","chat","commenting","conversation","feedback","message","more","note","notification","reply","sms","speech","texting"]},{title:"fas fa-comment-medical",searchTerms:["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{title:"fas fa-comment-slash",searchTerms:["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{title:"fas fa-comments",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"far fa-comments",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fas fa-comments-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fas fa-compact-disc",searchTerms:["album","bluray","cd","disc","dvd","media","movie","music","record","video","vinyl"]},{title:"fas fa-compass",searchTerms:["directions","directory","location","menu","navigation","safari","travel"]},{title:"far fa-compass",searchTerms:["directions","directory","location","menu","navigation","safari","travel"]},{title:"fas fa-compress",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-compress-alt",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-compress-arrows-alt",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fas fa-concierge-bell",searchTerms:["attention","hotel","receptionist","service","support"]},{title:"fab fa-confluence",searchTerms:["atlassian"]},{title:"fab fa-connectdevelop",searchTerms:[]},{title:"fab fa-contao",searchTerms:[]},{title:"fas fa-cookie",searchTerms:["baked good","chips","chocolate","eat","snack","sweet","treat"]},{title:"fas fa-cookie-bite",searchTerms:["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{title:"fas fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"far fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"fas fa-copyright",searchTerms:["brand","mark","register","trademark"]},{title:"far fa-copyright",searchTerms:["brand","mark","register","trademark"]},{title:"fab fa-cotton-bureau",searchTerms:["clothing","t-shirts","tshirts"]},{title:"fas fa-couch",searchTerms:["chair","cushion","furniture","relax","sofa"]},{title:"fab fa-cpanel",searchTerms:[]},{title:"fab fa-creative-commons",searchTerms:[]},{title:"fab fa-creative-commons-by",searchTerms:[]},{title:"fab fa-creative-commons-nc",searchTerms:[]},{title:"fab fa-creative-commons-nc-eu",searchTerms:[]},{title:"fab fa-creative-commons-nc-jp",searchTerms:[]},{title:"fab fa-creative-commons-nd",searchTerms:[]},{title:"fab fa-creative-commons-pd",searchTerms:[]},{title:"fab fa-creative-commons-pd-alt",searchTerms:[]},{title:"fab fa-creative-commons-remix",searchTerms:[]},{title:"fab fa-creative-commons-sa",searchTerms:[]},{title:"fab fa-creative-commons-sampling",searchTerms:[]},{title:"fab fa-creative-commons-sampling-plus",searchTerms:[]},{title:"fab fa-creative-commons-share",searchTerms:[]},{title:"fab fa-creative-commons-zero",searchTerms:[]},{title:"fas fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"far fa-credit-card",searchTerms:["buy","checkout","credit-card-alt","debit","money","payment","purchase"]},{title:"fab fa-critical-role",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-crop",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fas fa-crop-alt",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fas fa-cross",searchTerms:["catholicism","christianity","church","jesus"]},{title:"fas fa-crosshairs",searchTerms:["aim","bullseye","gpd","picker","position"]},{title:"fas fa-crow",searchTerms:["bird","bullfrog","fauna","halloween","holiday","toad"]},{title:"fas fa-crown",searchTerms:["award","favorite","king","queen","royal","tiara"]},{title:"fas fa-crutch",searchTerms:["cane","injury","mobility","wheelchair"]},{title:"fab fa-css3",searchTerms:["code"]},{title:"fab fa-css3-alt",searchTerms:[]},{title:"fas fa-cube",searchTerms:["3d","block","dice","package","square","tesseract"]},{title:"fas fa-cubes",searchTerms:["3d","block","dice","package","pyramid","square","stack","tesseract"]},{title:"fas fa-cut",searchTerms:["clip","scissors","snip"]},{title:"fab fa-cuttlefish",searchTerms:[]},{title:"fab fa-d-and-d",searchTerms:[]},{title:"fab fa-d-and-d-beyond",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{title:"fab fa-dailymotion",searchTerms:[]},{title:"fab fa-dashcube",searchTerms:[]},{title:"fas fa-database",searchTerms:["computer","development","directory","memory","storage"]},{title:"fas fa-deaf",searchTerms:["ear","hearing","sign language"]},{title:"fab fa-deezer",searchTerms:[]},{title:"fab fa-delicious",searchTerms:[]},{title:"fas fa-democrat",searchTerms:["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{title:"fab fa-deploydog",searchTerms:[]},{title:"fab fa-deskpro",searchTerms:[]},{title:"fas fa-desktop",searchTerms:["computer","cpu","demo","desktop","device","imac","machine","monitor","pc","screen"]},{title:"fab fa-dev",searchTerms:[]},{title:"fab fa-deviantart",searchTerms:[]},{title:"fas fa-dharmachakra",searchTerms:["buddhism","buddhist","wheel of dharma"]},{title:"fab fa-dhl",searchTerms:["Dalsey","Hillblom and Lynn","german","package","shipping"]},{title:"fas fa-diagnoses",searchTerms:["analyze","detect","diagnosis","examine","medicine"]},{title:"fab fa-diaspora",searchTerms:[]},{title:"fas fa-dice",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-d20",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-d6",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fas fa-dice-five",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-four",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-one",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-six",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-three",searchTerms:["chance","gambling","game","roll"]},{title:"fas fa-dice-two",searchTerms:["chance","gambling","game","roll"]},{title:"fab fa-digg",searchTerms:[]},{title:"fab fa-digital-ocean",searchTerms:[]},{title:"fas fa-digital-tachograph",searchTerms:["data","distance","speed","tachometer"]},{title:"fas fa-directions",searchTerms:["map","navigation","sign","turn"]},{title:"fab fa-discord",searchTerms:[]},{title:"fab fa-discourse",searchTerms:[]},{title:"fas fa-disease",searchTerms:["bacteria","cancer","covid-19","illness","infection","sickness","virus"]},{title:"fas fa-divide",searchTerms:["arithmetic","calculus","division","math"]},{title:"fas fa-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"far fa-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"fas fa-dna",searchTerms:["double helix","genetic","helix","molecule","protein"]},{title:"fab fa-dochub",searchTerms:[]},{title:"fab fa-docker",searchTerms:[]},{title:"fas fa-dog",searchTerms:["animal","canine","fauna","mammal","pet","pooch","puppy","woof"]},{title:"fas fa-dollar-sign",searchTerms:["$","cost","dollar-sign","money","price","usd"]},{title:"fas fa-dolly",searchTerms:["carry","shipping","transport"]},{title:"fas fa-dolly-flatbed",searchTerms:["carry","inventory","shipping","transport"]},{title:"fas fa-donate",searchTerms:["contribute","generosity","gift","give"]},{title:"fas fa-door-closed",searchTerms:["enter","exit","locked"]},{title:"fas fa-door-open",searchTerms:["enter","exit","welcome"]},{title:"fas fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"far fa-dot-circle",searchTerms:["bullseye","notification","target"]},{title:"fas fa-dove",searchTerms:["bird","fauna","flying","peace","war"]},{title:"fas fa-download",searchTerms:["export","hard drive","save","transfer"]},{title:"fab fa-draft2digital",searchTerms:[]},{title:"fas fa-drafting-compass",searchTerms:["design","map","mechanical drawing","plot","plotting"]},{title:"fas fa-dragon",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","fire","lizard","serpent"]},{title:"fas fa-draw-polygon",searchTerms:["anchors","lines","object","render","shape"]},{title:"fab fa-dribbble",searchTerms:[]},{title:"fab fa-dribbble-square",searchTerms:[]},{title:"fab fa-dropbox",searchTerms:[]},{title:"fas fa-drum",searchTerms:["instrument","music","percussion","snare","sound"]},{title:"fas fa-drum-steelpan",searchTerms:["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{title:"fas fa-drumstick-bite",searchTerms:["bone","chicken","leg","meat","poultry","turkey"]},{title:"fab fa-drupal",searchTerms:[]},{title:"fas fa-dumbbell",searchTerms:["exercise","gym","strength","weight","weight-lifting"]},{title:"fas fa-dumpster",searchTerms:["alley","bin","commercial","trash","waste"]},{title:"fas fa-dumpster-fire",searchTerms:["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{title:"fas fa-dungeon",searchTerms:["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{title:"fab fa-dyalog",searchTerms:[]},{title:"fab fa-earlybirds",searchTerms:[]},{title:"fab fa-ebay",searchTerms:[]},{title:"fab fa-edge",searchTerms:["browser","ie"]},{title:"fab fa-edge-legacy",searchTerms:[]},{title:"fas fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"far fa-edit",searchTerms:["edit","pen","pencil","update","write"]},{title:"fas fa-egg",searchTerms:["breakfast","chicken","easter","shell","yolk"]},{title:"fas fa-eject",searchTerms:["abort","cancel","cd","discharge"]},{title:"fab fa-elementor",searchTerms:[]},{title:"fas fa-ellipsis-h",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fas fa-ellipsis-v",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fab fa-ello",searchTerms:[]},{title:"fab fa-ember",searchTerms:[]},{title:"fab fa-empire",searchTerms:[]},{title:"fas fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"far fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-open-text",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fas fa-envelope-square",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fab fa-envira",searchTerms:["leaf"]},{title:"fas fa-equals",searchTerms:["arithmetic","even","match","math"]},{title:"fas fa-eraser",searchTerms:["art","delete","remove","rubber"]},{title:"fab fa-erlang",searchTerms:[]},{title:"fab fa-ethereum",searchTerms:[]},{title:"fas fa-ethernet",searchTerms:["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{title:"fab fa-etsy",searchTerms:[]},{title:"fas fa-euro-sign",searchTerms:["currency","dollar","exchange","money"]},{title:"fab fa-evernote",searchTerms:[]},{title:"fas fa-exchange-alt",searchTerms:["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{title:"fas fa-exclamation",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-circle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-exclamation-triangle",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fas fa-expand",searchTerms:["bigger","enlarge","fullscreen","resize"]},{title:"fas fa-expand-alt",searchTerms:["arrows","bigger","enlarge","fullscreen","resize"]},{title:"fas fa-expand-arrows-alt",searchTerms:["bigger","enlarge","fullscreen","move","resize"]},{title:"fab fa-expeditedssl",searchTerms:[]},{title:"fas fa-external-link-alt",searchTerms:["external-link","new","open","share"]},{title:"fas fa-external-link-square-alt",searchTerms:["external-link-square","new","open","share"]},{title:"fas fa-eye",searchTerms:["look","optic","see","seen","show","sight","views","visible"]},{title:"far fa-eye",searchTerms:["look","optic","see","seen","show","sight","views","visible"]},{title:"fas fa-eye-dropper",searchTerms:["beaker","clone","color","copy","eyedropper","pipette"]},{title:"fas fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"far fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"fab fa-facebook",searchTerms:["facebook-official","social network"]},{title:"fab fa-facebook-f",searchTerms:["facebook"]},{title:"fab fa-facebook-messenger",searchTerms:[]},{title:"fab fa-facebook-square",searchTerms:["social network"]},{title:"fas fa-fan",searchTerms:["ac","air conditioning","blade","blower","cool","hot"]},{title:"fab fa-fantasy-flight-games",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fas fa-fast-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-fast-forward",searchTerms:["end","last","next"]},{title:"fas fa-faucet",searchTerms:["covid-19","drip","house","hygiene","kitchen","sink","water"]},{title:"fas fa-fax",searchTerms:["business","communicate","copy","facsimile","send"]},{title:"fas fa-feather",searchTerms:["bird","light","plucked","quill","write"]},{title:"fas fa-feather-alt",searchTerms:["bird","light","plucked","quill","write"]},{title:"fab fa-fedex",searchTerms:["Federal Express","package","shipping"]},{title:"fab fa-fedora",searchTerms:["linux","operating system","os"]},{title:"fas fa-female",searchTerms:["human","person","profile","user","woman"]},{title:"fas fa-fighter-jet",searchTerms:["airplane","fast","fly","goose","maverick","plane","quick","top gun","transportation","travel"]},{title:"fab fa-figma",searchTerms:["app","design","interface"]},{title:"fas fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"far fa-file",searchTerms:["document","new","page","pdf","resume"]},{title:"fas fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"far fa-file-alt",searchTerms:["document","file-text","invoice","new","page","pdf"]},{title:"fas fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"far fa-file-archive",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"fas fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"far fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"fas fa-file-code",searchTerms:["css","development","document","html"]},{title:"far fa-file-code",searchTerms:["css","development","document","html"]},{title:"fas fa-file-contract",searchTerms:["agreement","binding","document","legal","signature"]},{title:"fas fa-file-csv",searchTerms:["document","excel","numbers","spreadsheets","table"]},{title:"fas fa-file-download",searchTerms:["document","export","save"]},{title:"fas fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"far fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"fas fa-file-export",searchTerms:["download","save"]},{title:"fas fa-file-image",searchTerms:["document","image","jpg","photo","png"]},{title:"far fa-file-image",searchTerms:["document","image","jpg","photo","png"]},{title:"fas fa-file-import",searchTerms:["copy","document","send","upload"]},{title:"fas fa-file-invoice",searchTerms:["account","bill","charge","document","payment","receipt"]},{title:"fas fa-file-invoice-dollar",searchTerms:["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{title:"fas fa-file-medical",searchTerms:["document","health","history","prescription","record"]},{title:"fas fa-file-medical-alt",searchTerms:["document","health","history","prescription","record"]},{title:"fas fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"far fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"fas fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"far fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"fas fa-file-prescription",searchTerms:["document","drugs","medical","medicine","rx"]},{title:"fas fa-file-signature",searchTerms:["John Hancock","contract","document","name"]},{title:"fas fa-file-upload",searchTerms:["document","import","page","save"]},{title:"fas fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"far fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"fas fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"far fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"fas fa-fill",searchTerms:["bucket","color","paint","paint bucket"]},{title:"fas fa-fill-drip",searchTerms:["bucket","color","drop","paint","paint bucket","spill"]},{title:"fas fa-film",searchTerms:["cinema","movie","strip","video"]},{title:"fas fa-filter",searchTerms:["funnel","options","separate","sort"]},{title:"fas fa-fingerprint",searchTerms:["human","id","identification","lock","smudge","touch","unique","unlock"]},{title:"fas fa-fire",searchTerms:["burn","caliente","flame","heat","hot","popular"]},{title:"fas fa-fire-alt",searchTerms:["burn","caliente","flame","heat","hot","popular"]},{title:"fas fa-fire-extinguisher",searchTerms:["burn","caliente","fire fighter","flame","heat","hot","rescue"]},{title:"fab fa-firefox",searchTerms:["browser"]},{title:"fab fa-firefox-browser",searchTerms:["browser"]},{title:"fas fa-first-aid",searchTerms:["emergency","emt","health","medical","rescue"]},{title:"fab fa-first-order",searchTerms:[]},{title:"fab fa-first-order-alt",searchTerms:[]},{title:"fab fa-firstdraft",searchTerms:[]},{title:"fas fa-fish",searchTerms:["fauna","gold","seafood","swimming"]},{title:"fas fa-fist-raised",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","hand","ki","monk","resist","strength","unarmed combat"]},{title:"fas fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"far fa-flag",searchTerms:["country","notice","notification","notify","pole","report","symbol"]},{title:"fas fa-flag-checkered",searchTerms:["notice","notification","notify","pole","racing","report","symbol"]},{title:"fas fa-flag-usa",searchTerms:["betsy ross","country","old glory","stars","stripes","symbol"]},{title:"fas fa-flask",searchTerms:["beaker","experimental","labs","science"]},{title:"fab fa-flickr",searchTerms:[]},{title:"fab fa-flipboard",searchTerms:[]},{title:"fas fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"far fa-flushed",searchTerms:["embarrassed","emoticon","face"]},{title:"fab fa-fly",searchTerms:[]},{title:"fas fa-folder",searchTerms:["archive","directory","document","file"]},{title:"far fa-folder",searchTerms:["archive","directory","document","file"]},{title:"fas fa-folder-minus",searchTerms:["archive","delete","directory","document","file","negative","remove"]},{title:"fas fa-folder-open",searchTerms:["archive","directory","document","empty","file","new"]},{title:"far fa-folder-open",searchTerms:["archive","directory","document","empty","file","new"]},{title:"fas fa-folder-plus",searchTerms:["add","archive","create","directory","document","file","new","positive"]},{title:"fas fa-font",searchTerms:["alphabet","glyph","text","type","typeface"]},{title:"fab fa-font-awesome",searchTerms:["meanpath"]},{title:"fab fa-font-awesome-alt",searchTerms:[]},{title:"fab fa-font-awesome-flag",searchTerms:[]},{title:"far fa-font-awesome-logo-full",searchTerms:[]},{title:"fas fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-font-awesome-logo-full",searchTerms:[]},{title:"fab fa-fonticons",searchTerms:[]},{title:"fab fa-fonticons-fi",searchTerms:[]},{title:"fas fa-football-ball",searchTerms:["ball","fall","nfl","pigskin","seasonal"]},{title:"fab fa-fort-awesome",searchTerms:["castle"]},{title:"fab fa-fort-awesome-alt",searchTerms:["castle"]},{title:"fab fa-forumbee",searchTerms:[]},{title:"fas fa-forward",searchTerms:["forward","next","skip"]},{title:"fab fa-foursquare",searchTerms:[]},{title:"fab fa-free-code-camp",searchTerms:[]},{title:"fab fa-freebsd",searchTerms:[]},{title:"fas fa-frog",searchTerms:["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{title:"fas fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fas fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"far fa-frown-open",searchTerms:["disapprove","emoticon","face","rating","sad"]},{title:"fab fa-fulcrum",searchTerms:[]},{title:"fas fa-funnel-dollar",searchTerms:["filter","money","options","separate","sort"]},{title:"fas fa-futbol",searchTerms:["ball","football","mls","soccer"]},{title:"far fa-futbol",searchTerms:["ball","football","mls","soccer"]},{title:"fab fa-galactic-republic",searchTerms:["politics","star wars"]},{title:"fab fa-galactic-senate",searchTerms:["star wars"]},{title:"fas fa-gamepad",searchTerms:["arcade","controller","d-pad","joystick","video","video game"]},{title:"fas fa-gas-pump",searchTerms:["car","fuel","gasoline","petrol"]},{title:"fas fa-gavel",searchTerms:["hammer","judge","law","lawyer","opinion"]},{title:"fas fa-gem",searchTerms:["diamond","jewelry","sapphire","stone","treasure"]},{title:"far fa-gem",searchTerms:["diamond","jewelry","sapphire","stone","treasure"]},{title:"fas fa-genderless",searchTerms:["androgynous","asexual","sexless"]},{title:"fab fa-get-pocket",searchTerms:[]},{title:"fab fa-gg",searchTerms:[]},{title:"fab fa-gg-circle",searchTerms:[]},{title:"fas fa-ghost",searchTerms:["apparition","blinky","clyde","floating","halloween","holiday","inky","pinky","spirit"]},{title:"fas fa-gift",searchTerms:["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{title:"fas fa-gifts",searchTerms:["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{title:"fab fa-git",searchTerms:[]},{title:"fab fa-git-alt",searchTerms:[]},{title:"fab fa-git-square",searchTerms:[]},{title:"fab fa-github",searchTerms:["octocat"]},{title:"fab fa-github-alt",searchTerms:["octocat"]},{title:"fab fa-github-square",searchTerms:["octocat"]},{title:"fab fa-gitkraken",searchTerms:[]},{title:"fab fa-gitlab",searchTerms:["Axosoft"]},{title:"fab fa-gitter",searchTerms:[]},{title:"fas fa-glass-cheers",searchTerms:["alcohol","bar","beverage","celebration","champagne","clink","drink","holiday","new year's eve","party","toast"]},{title:"fas fa-glass-martini",searchTerms:["alcohol","bar","beverage","drink","liquor"]},{title:"fas fa-glass-martini-alt",searchTerms:["alcohol","bar","beverage","drink","liquor"]},{title:"fas fa-glass-whiskey",searchTerms:["alcohol","bar","beverage","bourbon","drink","liquor","neat","rye","scotch","whisky"]},{title:"fas fa-glasses",searchTerms:["hipster","nerd","reading","sight","spectacles","vision"]},{title:"fab fa-glide",searchTerms:[]},{title:"fab fa-glide-g",searchTerms:[]},{title:"fas fa-globe",searchTerms:["all","coordinates","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-africa",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-americas",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-asia",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fas fa-globe-europe",searchTerms:["all","country","earth","global","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fab fa-gofore",searchTerms:[]},{title:"fas fa-golf-ball",searchTerms:["caddy","eagle","putt","tee"]},{title:"fab fa-goodreads",searchTerms:[]},{title:"fab fa-goodreads-g",searchTerms:[]},{title:"fab fa-google",searchTerms:[]},{title:"fab fa-google-drive",searchTerms:[]},{title:"fab fa-google-pay",searchTerms:[]},{title:"fab fa-google-play",searchTerms:[]},{title:"fab fa-google-plus",searchTerms:["google-plus-circle","google-plus-official"]},{title:"fab fa-google-plus-g",searchTerms:["google-plus","social network"]},{title:"fab fa-google-plus-square",searchTerms:["social network"]},{title:"fab fa-google-wallet",searchTerms:[]},{title:"fas fa-gopuram",searchTerms:["building","entrance","hinduism","temple","tower"]},{title:"fas fa-graduation-cap",searchTerms:["ceremony","college","graduate","learning","school","student"]},{title:"fab fa-gratipay",searchTerms:["favorite","heart","like","love"]},{title:"fab fa-grav",searchTerms:[]},{title:"fas fa-greater-than",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-greater-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-grimace",searchTerms:["cringe","emoticon","face","teeth"]},{title:"far fa-grimace",searchTerms:["cringe","emoticon","face","teeth"]},{title:"fas fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-alt",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-beam",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-beam-sweat",searchTerms:["embarass","emoticon","face","smile"]},{title:"far fa-grin-beam-sweat",searchTerms:["embarass","emoticon","face","smile"]},{title:"fas fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"far fa-grin-hearts",searchTerms:["emoticon","face","love","smile"]},{title:"fas fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"far fa-grin-squint",searchTerms:["emoticon","face","laugh","smile"]},{title:"fas fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"far fa-grin-squint-tears",searchTerms:["emoticon","face","happy","smile"]},{title:"fas fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"far fa-grin-stars",searchTerms:["emoticon","face","star-struck"]},{title:"fas fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tears",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-squint",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"far fa-grin-tongue-wink",searchTerms:["LOL","emoticon","face"]},{title:"fas fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"far fa-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"fas fa-grip-horizontal",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-lines",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-lines-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fas fa-grip-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fab fa-gripfire",searchTerms:[]},{title:"fab fa-grunt",searchTerms:[]},{title:"fab fa-guilded",searchTerms:[]},{title:"fas fa-guitar",searchTerms:["acoustic","instrument","music","rock","rock and roll","song","strings"]},{title:"fab fa-gulp",searchTerms:[]},{title:"fas fa-h-square",searchTerms:["directions","emergency","hospital","hotel","map"]},{title:"fab fa-hacker-news",searchTerms:[]},{title:"fab fa-hacker-news-square",searchTerms:[]},{title:"fab fa-hackerrank",searchTerms:[]},{title:"fas fa-hamburger",searchTerms:["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{title:"fas fa-hammer",searchTerms:["admin","fix","repair","settings","tool"]},{title:"fas fa-hamsa",searchTerms:["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{title:"fas fa-hand-holding",searchTerms:["carry","lift"]},{title:"fas fa-hand-holding-heart",searchTerms:["carry","charity","gift","lift","package"]},{title:"fas fa-hand-holding-medical",searchTerms:["care","covid-19","donate","help"]},{title:"fas fa-hand-holding-usd",searchTerms:["$","carry","dollar sign","donation","giving","lift","money","price"]},{title:"fas fa-hand-holding-water",searchTerms:["carry","covid-19","drought","grow","lift"]},{title:"fas fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"far fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"fas fa-hand-middle-finger",searchTerms:["flip the bird","gesture","hate","rude"]},{title:"fas fa-hand-paper",searchTerms:["game","halt","roshambo","stop"]},{title:"far fa-hand-paper",searchTerms:["game","halt","roshambo","stop"]},{title:"fas fa-hand-peace",searchTerms:["rest","truce"]},{title:"far fa-hand-peace",searchTerms:["rest","truce"]},{title:"fas fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"far fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"fas fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"far fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"fas fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"far fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"fas fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"far fa-hand-point-up",searchTerms:["finger","hand-o-up","point"]},{title:"fas fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"far fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"fas fa-hand-rock",searchTerms:["fist","game","roshambo"]},{title:"far fa-hand-rock",searchTerms:["fist","game","roshambo"]},{title:"fas fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"far fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"fas fa-hand-sparkles",searchTerms:["clean","covid-19","hygiene","magic","soap","wash"]},{title:"fas fa-hand-spock",searchTerms:["live long","prosper","salute","star trek","vulcan"]},{title:"far fa-hand-spock",searchTerms:["live long","prosper","salute","star trek","vulcan"]},{title:"fas fa-hands",searchTerms:["carry","hold","lift"]},{title:"fas fa-hands-helping",searchTerms:["aid","assistance","handshake","partnership","volunteering"]},{title:"fas fa-hands-wash",searchTerms:["covid-19","hygiene","soap","wash"]},{title:"fas fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"far fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"fas fa-handshake-alt-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fas fa-handshake-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fas fa-hanukiah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-hard-hat",searchTerms:["construction","hardhat","helmet","safety"]},{title:"fas fa-hashtag",searchTerms:["Twitter","instagram","pound","social media","tag"]},{title:"fas fa-hat-cowboy",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fas fa-hat-cowboy-side",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fas fa-hat-wizard",searchTerms:["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{title:"fas fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"far fa-hdd",searchTerms:["cpu","hard drive","harddrive","machine","save","storage"]},{title:"fas fa-head-side-cough",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fas fa-head-side-cough-slash",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fas fa-head-side-mask",searchTerms:["breath","covid-19","filter","respirator","virus"]},{title:"fas fa-head-side-virus",searchTerms:["cold","covid-19","flu","sick"]},{title:"fas fa-heading",searchTerms:["format","header","text","title"]},{title:"fas fa-headphones",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headphones-alt",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fas fa-headset",searchTerms:["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{title:"fas fa-heart",searchTerms:["favorite","like","love","relationship","valentine"]},{title:"far fa-heart",searchTerms:["favorite","like","love","relationship","valentine"]},{title:"fas fa-heart-broken",searchTerms:["breakup","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{title:"fas fa-heartbeat",searchTerms:["ekg","electrocardiogram","health","lifeline","vital signs"]},{title:"fas fa-helicopter",searchTerms:["airwolf","apache","chopper","flight","fly","travel"]},{title:"fas fa-highlighter",searchTerms:["edit","marker","sharpie","update","write"]},{title:"fas fa-hiking",searchTerms:["activity","backpack","fall","fitness","outdoors","person","seasonal","walking"]},{title:"fas fa-hippo",searchTerms:["animal","fauna","hippopotamus","hungry","mammal"]},{title:"fab fa-hips",searchTerms:[]},{title:"fab fa-hire-a-helper",searchTerms:[]},{title:"fas fa-history",searchTerms:["Rewind","clock","reverse","time","time machine"]},{title:"fab fa-hive",searchTerms:[]},{title:"fas fa-hockey-puck",searchTerms:["ice","nhl","sport"]},{title:"fas fa-holly-berry",searchTerms:["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{title:"fas fa-home",searchTerms:["abode","building","house","main"]},{title:"fab fa-hooli",searchTerms:[]},{title:"fab fa-hornbill",searchTerms:[]},{title:"fas fa-horse",searchTerms:["equus","fauna","mammmal","mare","neigh","pony"]},{title:"fas fa-horse-head",searchTerms:["equus","fauna","mammmal","mare","neigh","pony"]},{title:"fas fa-hospital",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"far fa-hospital",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"fas fa-hospital-alt",searchTerms:["building","covid-19","emergency room","medical center"]},{title:"fas fa-hospital-symbol",searchTerms:["clinic","covid-19","emergency","map"]},{title:"fas fa-hospital-user",searchTerms:["covid-19","doctor","network","patient","primary care"]},{title:"fas fa-hot-tub",searchTerms:["bath","jacuzzi","massage","sauna","spa"]},{title:"fas fa-hotdog",searchTerms:["bun","chili","frankfurt","frankfurter","kosher","polish","sandwich","sausage","vienna","weiner"]},{title:"fas fa-hotel",searchTerms:["building","inn","lodging","motel","resort","travel"]},{title:"fab fa-hotjar",searchTerms:[]},{title:"fas fa-hourglass",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"far fa-hourglass",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-end",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-half",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-hourglass-start",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fas fa-house-damage",searchTerms:["building","devastation","disaster","home","insurance"]},{title:"fas fa-house-user",searchTerms:["covid-19","home","isolation","quarantine"]},{title:"fab fa-houzz",searchTerms:[]},{title:"fas fa-hryvnia",searchTerms:["currency","money","ukraine","ukrainian"]},{title:"fab fa-html5",searchTerms:[]},{title:"fab fa-hubspot",searchTerms:[]},{title:"fas fa-i-cursor",searchTerms:["editing","i-beam","type","writing"]},{title:"fas fa-ice-cream",searchTerms:["chocolate","cone","dessert","frozen","scoop","sorbet","vanilla","yogurt"]},{title:"fas fa-icicles",searchTerms:["cold","frozen","hanging","ice","seasonal","sharp"]},{title:"fas fa-icons",searchTerms:["bolt","emoji","heart","image","music","photo","symbols"]},{title:"fas fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"far fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"fas fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"far fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"fas fa-id-card-alt",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"fab fa-ideal",searchTerms:[]},{title:"fas fa-igloo",searchTerms:["dome","dwelling","eskimo","home","house","ice","snow"]},{title:"fas fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"far fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"fas fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"far fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"fab fa-imdb",searchTerms:[]},{title:"fas fa-inbox",searchTerms:["archive","desk","email","mail","message"]},{title:"fas fa-indent",searchTerms:["align","justify","paragraph","tab"]},{title:"fas fa-industry",searchTerms:["building","factory","industrial","manufacturing","mill","warehouse"]},{title:"fas fa-infinity",searchTerms:["eternity","forever","math"]},{title:"fas fa-info",searchTerms:["details","help","information","more","support"]},{title:"fas fa-info-circle",searchTerms:["details","help","information","more","support"]},{title:"fab fa-innosoft",searchTerms:[]},{title:"fab fa-instagram",searchTerms:[]},{title:"fab fa-instagram-square",searchTerms:[]},{title:"fab fa-instalod",searchTerms:[]},{title:"fab fa-intercom",searchTerms:["app","customer","messenger"]},{title:"fab fa-internet-explorer",searchTerms:["browser","ie"]},{title:"fab fa-invision",searchTerms:["app","design","interface"]},{title:"fab fa-ioxhost",searchTerms:[]},{title:"fas fa-italic",searchTerms:["edit","emphasis","font","format","text","type"]},{title:"fab fa-itch-io",searchTerms:[]},{title:"fab fa-itunes",searchTerms:[]},{title:"fab fa-itunes-note",searchTerms:[]},{title:"fab fa-java",searchTerms:[]},{title:"fas fa-jedi",searchTerms:["crest","force","sith","skywalker","star wars","yoda"]},{title:"fab fa-jedi-order",searchTerms:["star wars"]},{title:"fab fa-jenkins",searchTerms:[]},{title:"fab fa-jira",searchTerms:["atlassian"]},{title:"fab fa-joget",searchTerms:[]},{title:"fas fa-joint",searchTerms:["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{title:"fab fa-joomla",searchTerms:[]},{title:"fas fa-journal-whills",searchTerms:["book","force","jedi","sith","star wars","yoda"]},{title:"fab fa-js",searchTerms:[]},{title:"fab fa-js-square",searchTerms:[]},{title:"fab fa-jsfiddle",searchTerms:[]},{title:"fas fa-kaaba",searchTerms:["building","cube","islam","muslim"]},{title:"fab fa-kaggle",searchTerms:[]},{title:"fas fa-key",searchTerms:["lock","password","private","secret","unlock"]},{title:"fab fa-keybase",searchTerms:[]},{title:"fas fa-keyboard",searchTerms:["accessory","edit","input","text","type","write"]},{title:"far fa-keyboard",searchTerms:["accessory","edit","input","text","type","write"]},{title:"fab fa-keycdn",searchTerms:[]},{title:"fas fa-khanda",searchTerms:["chakkar","sikh","sikhism","sword"]},{title:"fab fa-kickstarter",searchTerms:[]},{title:"fab fa-kickstarter-k",searchTerms:[]},{title:"fas fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-beam",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"far fa-kiss-wink-heart",searchTerms:["beso","emoticon","face","love","smooch"]},{title:"fas fa-kiwi-bird",searchTerms:["bird","fauna","new zealand"]},{title:"fab fa-korvue",searchTerms:[]},{title:"fas fa-landmark",searchTerms:["building","historic","memorable","monument","politics"]},{title:"fas fa-language",searchTerms:["dialect","idiom","localize","speech","translate","vernacular"]},{title:"fas fa-laptop",searchTerms:["computer","cpu","dell","demo","device","mac","macbook","machine","pc"]},{title:"fas fa-laptop-code",searchTerms:["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{title:"fas fa-laptop-house",searchTerms:["computer","covid-19","device","office","remote","work from home"]},{title:"fas fa-laptop-medical",searchTerms:["computer","device","ehr","electronic health records","history"]},{title:"fab fa-laravel",searchTerms:[]},{title:"fab fa-lastfm",searchTerms:[]},{title:"fab fa-lastfm-square",searchTerms:[]},{title:"fas fa-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"far fa-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"fas fa-laugh-beam",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-beam",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"far fa-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fas fa-layer-group",searchTerms:["arrange","develop","layers","map","stack"]},{title:"fas fa-leaf",searchTerms:["eco","flora","nature","plant","vegan"]},{title:"fab fa-leanpub",searchTerms:[]},{title:"fas fa-lemon",searchTerms:["citrus","lemonade","lime","tart"]},{title:"far fa-lemon",searchTerms:["citrus","lemonade","lime","tart"]},{title:"fab fa-less",searchTerms:[]},{title:"fas fa-less-than",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-less-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-level-down-alt",searchTerms:["arrow","level-down"]},{title:"fas fa-level-up-alt",searchTerms:["arrow","level-up"]},{title:"fas fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"far fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"fas fa-lightbulb",searchTerms:["energy","idea","inspiration","light"]},{title:"far fa-lightbulb",searchTerms:["energy","idea","inspiration","light"]},{title:"fab fa-line",searchTerms:[]},{title:"fas fa-link",searchTerms:["attach","attachment","chain","connect"]},{title:"fab fa-linkedin",searchTerms:["linkedin-square"]},{title:"fab fa-linkedin-in",searchTerms:["linkedin"]},{title:"fab fa-linode",searchTerms:[]},{title:"fab fa-linux",searchTerms:["tux"]},{title:"fas fa-lira-sign",searchTerms:["currency","money","try","turkish"]},{title:"fas fa-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"far fa-list-alt",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-list-ol",searchTerms:["checklist","completed","done","finished","numbers","ol","todo","ul"]},{title:"fas fa-list-ul",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fas fa-location-arrow",searchTerms:["address","compass","coordinate","direction","gps","map","navigation","place"]},{title:"fas fa-lock",searchTerms:["admin","lock","open","password","private","protect","security"]},{title:"fas fa-lock-open",searchTerms:["admin","lock","open","password","private","protect","security"]},{title:"fas fa-long-arrow-alt-down",searchTerms:["download","long-arrow-down"]},{title:"fas fa-long-arrow-alt-left",searchTerms:["back","long-arrow-left","previous"]},{title:"fas fa-long-arrow-alt-right",searchTerms:["forward","long-arrow-right","next"]},{title:"fas fa-long-arrow-alt-up",searchTerms:["long-arrow-up","upload"]},{title:"fas fa-low-vision",searchTerms:["blind","eye","sight"]},{title:"fas fa-luggage-cart",searchTerms:["bag","baggage","suitcase","travel"]},{title:"fas fa-lungs",searchTerms:["air","breath","covid-19","organ","respiratory"]},{title:"fas fa-lungs-virus",searchTerms:["breath","covid-19","respiratory","sick"]},{title:"fab fa-lyft",searchTerms:[]},{title:"fab fa-magento",searchTerms:[]},{title:"fas fa-magic",searchTerms:["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{title:"fas fa-magnet",searchTerms:["Attract","lodestone","tool"]},{title:"fas fa-mail-bulk",searchTerms:["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{title:"fab fa-mailchimp",searchTerms:[]},{title:"fas fa-male",searchTerms:["human","man","person","profile","user"]},{title:"fab fa-mandalorian",searchTerms:[]},{title:"fas fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"far fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marked",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marked-alt",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marker",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-marker-alt",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fas fa-map-pin",searchTerms:["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","travel"]},{title:"fas fa-map-signs",searchTerms:["directions","directory","map","signage","wayfinding"]},{title:"fab fa-markdown",searchTerms:[]},{title:"fas fa-marker",searchTerms:["design","edit","sharpie","update","write"]},{title:"fas fa-mars",searchTerms:["male"]},{title:"fas fa-mars-double",searchTerms:[]},{title:"fas fa-mars-stroke",searchTerms:[]},{title:"fas fa-mars-stroke-h",searchTerms:[]},{title:"fas fa-mars-stroke-v",searchTerms:[]},{title:"fas fa-mask",searchTerms:["carnivale","costume","disguise","halloween","secret","super hero"]},{title:"fab fa-mastodon",searchTerms:[]},{title:"fab fa-maxcdn",searchTerms:[]},{title:"fab fa-mdb",searchTerms:[]},{title:"fas fa-medal",searchTerms:["award","ribbon","star","trophy"]},{title:"fab fa-medapps",searchTerms:[]},{title:"fab fa-medium",searchTerms:[]},{title:"fab fa-medium-m",searchTerms:[]},{title:"fas fa-medkit",searchTerms:["first aid","firstaid","health","help","support"]},{title:"fab fa-medrt",searchTerms:[]},{title:"fab fa-meetup",searchTerms:[]},{title:"fab fa-megaport",searchTerms:[]},{title:"fas fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-blank",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"far fa-meh-rolling-eyes",searchTerms:["emoticon","face","neutral","rating"]},{title:"fas fa-memory",searchTerms:["DIMM","RAM","hardware","storage","technology"]},{title:"fab fa-mendeley",searchTerms:[]},{title:"fas fa-menorah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fas fa-mercury",searchTerms:["transgender"]},{title:"fas fa-meteor",searchTerms:["armageddon","asteroid","comet","shooting star","space"]},{title:"fab fa-microblog",searchTerms:[]},{title:"fas fa-microchip",searchTerms:["cpu","hardware","processor","technology"]},{title:"fas fa-microphone",searchTerms:["audio","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-alt",searchTerms:["audio","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-alt-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fas fa-microphone-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fas fa-microscope",searchTerms:["covid-19","electron","lens","optics","science","shrink"]},{title:"fab fa-microsoft",searchTerms:[]},{title:"fas fa-minus",searchTerms:["collapse","delete","hide","minify","negative","remove","trash"]},{title:"fas fa-minus-circle",searchTerms:["delete","hide","negative","remove","shape","trash"]},{title:"fas fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"far fa-minus-square",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"fas fa-mitten",searchTerms:["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{title:"fab fa-mix",searchTerms:[]},{title:"fab fa-mixcloud",searchTerms:[]},{title:"fab fa-mixer",searchTerms:[]},{title:"fab fa-mizuni",searchTerms:[]},{title:"fas fa-mobile",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{title:"fas fa-mobile-alt",searchTerms:["apple","call","cell phone","cellphone","device","iphone","number","screen","telephone"]},{title:"fab fa-modx",searchTerms:[]},{title:"fab fa-monero",searchTerms:[]},{title:"fas fa-money-bill",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"far fa-money-bill-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-wave",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-bill-wave-alt",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fas fa-money-check",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fas fa-money-check-alt",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fas fa-monument",searchTerms:["building","historic","landmark","memorable"]},{title:"fas fa-moon",searchTerms:["contrast","crescent","dark","lunar","night"]},{title:"far fa-moon",searchTerms:["contrast","crescent","dark","lunar","night"]},{title:"fas fa-mortar-pestle",searchTerms:["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{title:"fas fa-mosque",searchTerms:["building","islam","landmark","muslim"]},{title:"fas fa-motorcycle",searchTerms:["bike","machine","transportation","vehicle"]},{title:"fas fa-mountain",searchTerms:["glacier","hiking","hill","landscape","travel","view"]},{title:"fas fa-mouse",searchTerms:["click","computer","cursor","input","peripheral"]},{title:"fas fa-mouse-pointer",searchTerms:["arrow","cursor","select"]},{title:"fas fa-mug-hot",searchTerms:["caliente","cocoa","coffee","cup","drink","holiday","hot chocolate","steam","tea","warmth"]},{title:"fas fa-music",searchTerms:["lyrics","melody","note","sing","sound"]},{title:"fab fa-napster",searchTerms:[]},{title:"fab fa-neos",searchTerms:[]},{title:"fas fa-network-wired",searchTerms:["computer","connect","ethernet","internet","intranet"]},{title:"fas fa-neuter",searchTerms:[]},{title:"fas fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","press"]},{title:"far fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","press"]},{title:"fab fa-nimblr",searchTerms:[]},{title:"fab fa-node",searchTerms:[]},{title:"fab fa-node-js",searchTerms:[]},{title:"fas fa-not-equal",searchTerms:["arithmetic","compare","math"]},{title:"fas fa-notes-medical",searchTerms:["clipboard","doctor","ehr","health","history","records"]},{title:"fab fa-npm",searchTerms:[]},{title:"fab fa-ns8",searchTerms:[]},{title:"fab fa-nutritionix",searchTerms:[]},{title:"fas fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"far fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"fas fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"far fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"fab fa-octopus-deploy",searchTerms:[]},{title:"fab fa-odnoklassniki",searchTerms:[]},{title:"fab fa-odnoklassniki-square",searchTerms:[]},{title:"fas fa-oil-can",searchTerms:["auto","crude","gasoline","grease","lubricate","petroleum"]},{title:"fab fa-old-republic",searchTerms:["politics","star wars"]},{title:"fas fa-om",searchTerms:["buddhism","hinduism","jainism","mantra"]},{title:"fab fa-opencart",searchTerms:[]},{title:"fab fa-openid",searchTerms:[]},{title:"fab fa-opera",searchTerms:[]},{title:"fab fa-optin-monster",searchTerms:[]},{title:"fab fa-orcid",searchTerms:[]},{title:"fab fa-osi",searchTerms:[]},{title:"fas fa-otter",searchTerms:["animal","badger","fauna","fur","mammal","marten"]},{title:"fas fa-outdent",searchTerms:["align","justify","paragraph","tab"]},{title:"fab fa-page4",searchTerms:[]},{title:"fab fa-pagelines",searchTerms:["eco","flora","leaf","leaves","nature","plant","tree"]},{title:"fas fa-pager",searchTerms:["beeper","cellphone","communication"]},{title:"fas fa-paint-brush",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fas fa-paint-roller",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fas fa-palette",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fab fa-palfed",searchTerms:[]},{title:"fas fa-pallet",searchTerms:["archive","box","inventory","shipping","warehouse"]},{title:"fas fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"far fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"fas fa-paperclip",searchTerms:["attach","attachment","connect","link"]},{title:"fas fa-parachute-box",searchTerms:["aid","assistance","rescue","supplies"]},{title:"fas fa-paragraph",searchTerms:["edit","format","text","writing"]},{title:"fas fa-parking",searchTerms:["auto","car","garage","meter"]},{title:"fas fa-passport",searchTerms:["document","id","identification","issued","travel"]},{title:"fas fa-pastafarianism",searchTerms:["agnosticism","atheism","flying spaghetti monster","fsm"]},{title:"fas fa-paste",searchTerms:["clipboard","copy","document","paper"]},{title:"fab fa-patreon",searchTerms:[]},{title:"fas fa-pause",searchTerms:["hold","wait"]},{title:"fas fa-pause-circle",searchTerms:["hold","wait"]},{title:"far fa-pause-circle",searchTerms:["hold","wait"]},{title:"fas fa-paw",searchTerms:["animal","cat","dog","pet","print"]},{title:"fab fa-paypal",searchTerms:[]},{title:"fas fa-peace",searchTerms:["serenity","tranquility","truce","war"]},{title:"fas fa-pen",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-alt",searchTerms:["design","edit","update","write"]},{title:"fas fa-pen-fancy",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-nib",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fas fa-pen-square",searchTerms:["edit","pencil-square","update","write"]},{title:"fas fa-pencil-alt",searchTerms:["design","edit","pencil","update","write"]},{title:"fas fa-pencil-ruler",searchTerms:["design","draft","draw","pencil"]},{title:"fab fa-penny-arcade",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","pax","tabletop"]},{title:"fas fa-people-arrows",searchTerms:["covid-19","personal space","social distance","space","spread","users"]},{title:"fas fa-people-carry",searchTerms:["box","carry","fragile","help","movers","package"]},{title:"fas fa-pepper-hot",searchTerms:["buffalo wings","capsicum","chili","chilli","habanero","jalapeno","mexican","spicy","tabasco","vegetable"]},{title:"fab fa-perbyte",searchTerms:[]},{title:"fas fa-percent",searchTerms:["discount","fraction","proportion","rate","ratio"]},{title:"fas fa-percentage",searchTerms:["discount","fraction","proportion","rate","ratio"]},{title:"fab fa-periscope",searchTerms:[]},{title:"fas fa-person-booth",searchTerms:["changing","changing room","election","human","person","vote","voting"]},{title:"fab fa-phabricator",searchTerms:[]},{title:"fab fa-phoenix-framework",searchTerms:[]},{title:"fab fa-phoenix-squadron",searchTerms:[]},{title:"fas fa-phone",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-alt",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-slash",searchTerms:["call","cancel","earphone","mute","number","support","telephone","voice"]},{title:"fas fa-phone-square",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-square-alt",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fas fa-phone-volume",searchTerms:["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{title:"fas fa-photo-video",searchTerms:["av","film","image","library","media"]},{title:"fab fa-php",searchTerms:[]},{title:"fab fa-pied-piper",searchTerms:[]},{title:"fab fa-pied-piper-alt",searchTerms:[]},{title:"fab fa-pied-piper-hat",searchTerms:["clothing"]},{title:"fab fa-pied-piper-pp",searchTerms:[]},{title:"fab fa-pied-piper-square",searchTerms:[]},{title:"fas fa-piggy-bank",searchTerms:["bank","save","savings"]},{title:"fas fa-pills",searchTerms:["drugs","medicine","prescription","tablets"]},{title:"fab fa-pinterest",searchTerms:[]},{title:"fab fa-pinterest-p",searchTerms:[]},{title:"fab fa-pinterest-square",searchTerms:[]},{title:"fas fa-pizza-slice",searchTerms:["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{title:"fas fa-place-of-worship",searchTerms:["building","church","holy","mosque","synagogue"]},{title:"fas fa-plane",searchTerms:["airplane","destination","fly","location","mode","travel","trip"]},{title:"fas fa-plane-arrival",searchTerms:["airplane","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{title:"fas fa-plane-departure",searchTerms:["airplane","departing","destination","fly","location","mode","take off","taking off","travel","trip"]},{title:"fas fa-plane-slash",searchTerms:["airplane mode","canceled","covid-19","delayed","grounded","travel"]},{title:"fas fa-play",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fas fa-play-circle",searchTerms:["audio","music","playing","sound","start","video"]},{title:"far fa-play-circle",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fab fa-playstation",searchTerms:[]},{title:"fas fa-plug",searchTerms:["connect","electric","online","power"]},{title:"fas fa-plus",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-plus-circle",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-plus-square",searchTerms:["add","create","expand","new","positive","shape"]},{title:"far fa-plus-square",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fas fa-podcast",searchTerms:["audio","broadcast","music","sound"]},{title:"fas fa-poll",searchTerms:["results","survey","trend","vote","voting"]},{title:"fas fa-poll-h",searchTerms:["results","survey","trend","vote","voting"]},{title:"fas fa-poo",searchTerms:["crap","poop","shit","smile","turd"]},{title:"fas fa-poo-storm",searchTerms:["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{title:"fas fa-poop",searchTerms:["crap","poop","shit","smile","turd"]},{title:"fas fa-portrait",searchTerms:["id","image","photo","picture","selfie"]},{title:"fas fa-pound-sign",searchTerms:["currency","gbp","money"]},{title:"fas fa-power-off",searchTerms:["cancel","computer","on","reboot","restart"]},{title:"fas fa-pray",searchTerms:["kneel","preach","religion","worship"]},{title:"fas fa-praying-hands",searchTerms:["kneel","preach","religion","worship"]},{title:"fas fa-prescription",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-prescription-bottle",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-prescription-bottle-alt",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fas fa-print",searchTerms:["business","copy","document","office","paper"]},{title:"fas fa-procedures",searchTerms:["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{title:"fab fa-product-hunt",searchTerms:[]},{title:"fas fa-project-diagram",searchTerms:["chart","graph","network","pert"]},{title:"fas fa-pump-medical",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{title:"fas fa-pump-soap",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{title:"fab fa-pushed",searchTerms:[]},{title:"fas fa-puzzle-piece",searchTerms:["add-on","addon","game","section"]},{title:"fab fa-python",searchTerms:[]},{title:"fab fa-qq",searchTerms:[]},{title:"fas fa-qrcode",searchTerms:["barcode","info","information","scan"]},{title:"fas fa-question",searchTerms:["help","information","support","unknown"]},{title:"fas fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"far fa-question-circle",searchTerms:["help","information","support","unknown"]},{title:"fas fa-quidditch",searchTerms:["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{title:"fab fa-quinscape",searchTerms:[]},{title:"fab fa-quora",searchTerms:[]},{title:"fas fa-quote-left",searchTerms:["mention","note","phrase","text","type"]},{title:"fas fa-quote-right",searchTerms:["mention","note","phrase","text","type"]},{title:"fas fa-quran",searchTerms:["book","islam","muslim","religion"]},{title:"fab fa-r-project",searchTerms:[]},{title:"fas fa-radiation",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{title:"fas fa-radiation-alt",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{title:"fas fa-rainbow",searchTerms:["gold","leprechaun","prism","rain","sky"]},{title:"fas fa-random",searchTerms:["arrows","shuffle","sort","swap","switch","transfer"]},{title:"fab fa-raspberry-pi",searchTerms:[]},{title:"fab fa-ravelry",searchTerms:[]},{title:"fab fa-react",searchTerms:[]},{title:"fab fa-reacteurope",searchTerms:[]},{title:"fab fa-readme",searchTerms:[]},{title:"fab fa-rebel",searchTerms:[]},{title:"fas fa-receipt",searchTerms:["check","invoice","money","pay","table"]},{title:"fas fa-record-vinyl",searchTerms:["LP","album","analog","music","phonograph","sound"]},{title:"fas fa-recycle",searchTerms:["Waste","compost","garbage","reuse","trash"]},{title:"fab fa-red-river",searchTerms:[]},{title:"fab fa-reddit",searchTerms:[]},{title:"fab fa-reddit-alien",searchTerms:[]},{title:"fab fa-reddit-square",searchTerms:[]},{title:"fab fa-redhat",searchTerms:["linux","operating system","os"]},{title:"fas fa-redo",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-redo-alt",searchTerms:["forward","refresh","reload","repeat"]},{title:"fas fa-registered",searchTerms:["copyright","mark","trademark"]},{title:"far fa-registered",searchTerms:["copyright","mark","trademark"]},{title:"fas fa-remove-format",searchTerms:["cancel","font","format","remove","style","text"]},{title:"fab fa-renren",searchTerms:[]},{title:"fas fa-reply",searchTerms:["mail","message","respond"]},{title:"fas fa-reply-all",searchTerms:["mail","message","respond"]},{title:"fab fa-replyd",searchTerms:[]},{title:"fas fa-republican",searchTerms:["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{title:"fab fa-researchgate",searchTerms:[]},{title:"fab fa-resolving",searchTerms:[]},{title:"fas fa-restroom",searchTerms:["bathroom","john","loo","potty","washroom","waste","wc"]},{title:"fas fa-retweet",searchTerms:["refresh","reload","share","swap"]},{title:"fab fa-rev",searchTerms:[]},{title:"fas fa-ribbon",searchTerms:["badge","cause","lapel","pin"]},{title:"fas fa-ring",searchTerms:["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{title:"fas fa-road",searchTerms:["highway","map","pavement","route","street","travel"]},{title:"fas fa-robot",searchTerms:["android","automate","computer","cyborg"]},{title:"fas fa-rocket",searchTerms:["aircraft","app","jet","launch","nasa","space"]},{title:"fab fa-rocketchat",searchTerms:[]},{title:"fab fa-rockrms",searchTerms:[]},{title:"fas fa-route",searchTerms:["directions","navigation","travel"]},{title:"fas fa-rss",searchTerms:["blog","feed","journal","news","writing"]},{title:"fas fa-rss-square",searchTerms:["blog","feed","journal","news","writing"]},{title:"fas fa-ruble-sign",searchTerms:["currency","money","rub"]},{title:"fas fa-ruler",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-combined",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-horizontal",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-ruler-vertical",searchTerms:["design","draft","length","measure","planning"]},{title:"fas fa-running",searchTerms:["exercise","health","jog","person","run","sport","sprint"]},{title:"fas fa-rupee-sign",searchTerms:["currency","indian","inr","money"]},{title:"fab fa-rust",searchTerms:[]},{title:"fas fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-cry",searchTerms:["emoticon","face","tear","tears"]},{title:"fas fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"far fa-sad-tear",searchTerms:["emoticon","face","tear","tears"]},{title:"fab fa-safari",searchTerms:["browser"]},{title:"fab fa-salesforce",searchTerms:[]},{title:"fab fa-sass",searchTerms:[]},{title:"fas fa-satellite",searchTerms:["communications","hardware","orbit","space"]},{title:"fas fa-satellite-dish",searchTerms:["SETI","communications","hardware","receiver","saucer","signal","space"]},{title:"fas fa-save",searchTerms:["disk","download","floppy","floppy-o"]},{title:"far fa-save",searchTerms:["disk","download","floppy","floppy-o"]},{title:"fab fa-schlix",searchTerms:[]},{title:"fas fa-school",searchTerms:["building","education","learn","student","teacher"]},{title:"fas fa-screwdriver",searchTerms:["admin","fix","mechanic","repair","settings","tool"]},{title:"fab fa-scribd",searchTerms:[]},{title:"fas fa-scroll",searchTerms:["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script"]},{title:"fas fa-sd-card",searchTerms:["image","memory","photo","save"]},{title:"fas fa-search",searchTerms:["bigger","enlarge","find","magnify","preview","zoom"]},{title:"fas fa-search-dollar",searchTerms:["bigger","enlarge","find","magnify","money","preview","zoom"]},{title:"fas fa-search-location",searchTerms:["bigger","enlarge","find","magnify","preview","zoom"]},{title:"fas fa-search-minus",searchTerms:["minify","negative","smaller","zoom","zoom out"]},{title:"fas fa-search-plus",searchTerms:["bigger","enlarge","magnify","positive","zoom","zoom in"]},{title:"fab fa-searchengin",searchTerms:[]},{title:"fas fa-seedling",searchTerms:["flora","grow","plant","vegan"]},{title:"fab fa-sellcast",searchTerms:["eercast"]},{title:"fab fa-sellsy",searchTerms:[]},{title:"fas fa-server",searchTerms:["computer","cpu","database","hardware","network"]},{title:"fab fa-servicestack",searchTerms:[]},{title:"fas fa-shapes",searchTerms:["blocks","build","circle","square","triangle"]},{title:"fas fa-share",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-alt",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-alt-square",searchTerms:["forward","save","send","social"]},{title:"fas fa-share-square",searchTerms:["forward","save","send","social"]},{title:"far fa-share-square",searchTerms:["forward","save","send","social"]},{title:"fas fa-shekel-sign",searchTerms:["currency","ils","money"]},{title:"fas fa-shield-alt",searchTerms:["achievement","award","block","defend","security","winner"]},{title:"fas fa-shield-virus",searchTerms:["antibodies","barrier","covid-19","health","protect"]},{title:"fas fa-ship",searchTerms:["boat","sea","water"]},{title:"fas fa-shipping-fast",searchTerms:["express","fedex","mail","overnight","package","ups"]},{title:"fab fa-shirtsinbulk",searchTerms:[]},{title:"fas fa-shoe-prints",searchTerms:["feet","footprints","steps","walk"]},{title:"fab fa-shopify",searchTerms:[]},{title:"fas fa-shopping-bag",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fas fa-shopping-basket",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fas fa-shopping-cart",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fab fa-shopware",searchTerms:[]},{title:"fas fa-shower",searchTerms:["bath","clean","faucet","water"]},{title:"fas fa-shuttle-van",searchTerms:["airport","machine","public-transportation","transportation","travel","vehicle"]},{title:"fas fa-sign",searchTerms:["directions","real estate","signage","wayfinding"]},{title:"fas fa-sign-in-alt",searchTerms:["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{title:"fas fa-sign-language",searchTerms:["Translate","asl","deaf","hands"]},{title:"fas fa-sign-out-alt",searchTerms:["arrow","exit","leave","log out","logout","sign-out"]},{title:"fas fa-signal",searchTerms:["bars","graph","online","reception","status"]},{title:"fas fa-signature",searchTerms:["John Hancock","cursive","name","writing"]},{title:"fas fa-sim-card",searchTerms:["hard drive","hardware","portable","storage","technology","tiny"]},{title:"fab fa-simplybuilt",searchTerms:[]},{title:"fas fa-sink",searchTerms:["bathroom","covid-19","faucet","kitchen","wash"]},{title:"fab fa-sistrix",searchTerms:[]},{title:"fas fa-sitemap",searchTerms:["directory","hierarchy","ia","information architecture","organization"]},{title:"fab fa-sith",searchTerms:[]},{title:"fas fa-skating",searchTerms:["activity","figure skating","fitness","ice","person","winter"]},{title:"fab fa-sketch",searchTerms:["app","design","interface"]},{title:"fas fa-skiing",searchTerms:["activity","downhill","fast","fitness","olympics","outdoors","person","seasonal","slalom"]},{title:"fas fa-skiing-nordic",searchTerms:["activity","cross country","fitness","outdoors","person","seasonal"]},{title:"fas fa-skull",searchTerms:["bones","skeleton","x-ray","yorick"]},{title:"fas fa-skull-crossbones",searchTerms:["Dungeons & Dragons","alert","bones","d","danger","dead","deadly","death","dnd","fantasy","halloween","holiday","jolly-roger","pirate","poison","skeleton","warning"]},{title:"fab fa-skyatlas",searchTerms:[]},{title:"fab fa-skype",searchTerms:[]},{title:"fab fa-slack",searchTerms:["anchor","hash","hashtag"]},{title:"fab fa-slack-hash",searchTerms:["anchor","hash","hashtag"]},{title:"fas fa-slash",searchTerms:["cancel","close","mute","off","stop","x"]},{title:"fas fa-sleigh",searchTerms:["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{title:"fas fa-sliders-h",searchTerms:["adjust","settings","sliders","toggle"]},{title:"fab fa-slideshare",searchTerms:[]},{title:"fas fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"far fa-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied"]},{title:"fas fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"far fa-smile-beam",searchTerms:["emoticon","face","happy","positive"]},{title:"fas fa-smile-wink",searchTerms:["emoticon","face","happy","hint","joke"]},{title:"far fa-smile-wink",searchTerms:["emoticon","face","happy","hint","joke"]},{title:"fas fa-smog",searchTerms:["dragon","fog","haze","pollution","smoke","weather"]},{title:"fas fa-smoking",searchTerms:["cancer","cigarette","nicotine","smoking status","tobacco"]},{title:"fas fa-smoking-ban",searchTerms:["ban","cancel","no smoking","non-smoking"]},{title:"fas fa-sms",searchTerms:["chat","conversation","message","mobile","notification","phone","sms","texting"]},{title:"fab fa-snapchat",searchTerms:[]},{title:"fab fa-snapchat-ghost",searchTerms:[]},{title:"fab fa-snapchat-square",searchTerms:[]},{title:"fas fa-snowboarding",searchTerms:["activity","fitness","olympics","outdoors","person"]},{title:"fas fa-snowflake",searchTerms:["precipitation","rain","winter"]},{title:"far fa-snowflake",searchTerms:["precipitation","rain","winter"]},{title:"fas fa-snowman",searchTerms:["decoration","frost","frosty","holiday"]},{title:"fas fa-snowplow",searchTerms:["clean up","cold","road","storm","winter"]},{title:"fas fa-soap",searchTerms:["bubbles","clean","covid-19","hygiene","wash"]},{title:"fas fa-socks",searchTerms:["business socks","business time","clothing","feet","flight of the conchords","wednesday"]},{title:"fas fa-solar-panel",searchTerms:["clean","eco-friendly","energy","green","sun"]},{title:"fas fa-sort",searchTerms:["filter","order"]},{title:"fas fa-sort-alpha-down",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fas fa-sort-alpha-down-alt",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fas fa-sort-alpha-up",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fas fa-sort-alpha-up-alt",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fas fa-sort-amount-down",searchTerms:["arrange","filter","number","order","sort-amount-asc"]},{title:"fas fa-sort-amount-down-alt",searchTerms:["arrange","filter","order","sort-amount-asc"]},{title:"fas fa-sort-amount-up",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fas fa-sort-amount-up-alt",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fas fa-sort-down",searchTerms:["arrow","descending","filter","order","sort-desc"]},{title:"fas fa-sort-numeric-down",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fas fa-sort-numeric-down-alt",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fas fa-sort-numeric-up",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fas fa-sort-numeric-up-alt",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fas fa-sort-up",searchTerms:["arrow","ascending","filter","order","sort-asc"]},{title:"fab fa-soundcloud",searchTerms:[]},{title:"fab fa-sourcetree",searchTerms:[]},{title:"fas fa-spa",searchTerms:["flora","massage","mindfulness","plant","wellness"]},{title:"fas fa-space-shuttle",searchTerms:["astronaut","machine","nasa","rocket","space","transportation"]},{title:"fab fa-speakap",searchTerms:[]},{title:"fab fa-speaker-deck",searchTerms:[]},{title:"fas fa-spell-check",searchTerms:["dictionary","edit","editor","grammar","text"]},{title:"fas fa-spider",searchTerms:["arachnid","bug","charlotte","crawl","eight","halloween"]},{title:"fas fa-spinner",searchTerms:["circle","loading","progress"]},{title:"fas fa-splotch",searchTerms:["Ink","blob","blotch","glob","stain"]},{title:"fab fa-spotify",searchTerms:[]},{title:"fas fa-spray-can",searchTerms:["Paint","aerosol","design","graffiti","tag"]},{title:"fas fa-square",searchTerms:["block","box","shape"]},{title:"far fa-square",searchTerms:["block","box","shape"]},{title:"fas fa-square-full",searchTerms:["block","box","shape"]},{title:"fas fa-square-root-alt",searchTerms:["arithmetic","calculus","division","math"]},{title:"fab fa-squarespace",searchTerms:[]},{title:"fab fa-stack-exchange",searchTerms:[]},{title:"fab fa-stack-overflow",searchTerms:[]},{title:"fab fa-stackpath",searchTerms:[]},{title:"fas fa-stamp",searchTerms:["art","certificate","imprint","rubber","seal"]},{title:"fas fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"far fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score"]},{title:"fas fa-star-and-crescent",searchTerms:["islam","muslim","religion"]},{title:"fas fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"far fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-half-alt",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fas fa-star-of-david",searchTerms:["jewish","judaism","religion"]},{title:"fas fa-star-of-life",searchTerms:["doctor","emt","first aid","health","medical"]},{title:"fab fa-staylinked",searchTerms:[]},{title:"fab fa-steam",searchTerms:[]},{title:"fab fa-steam-square",searchTerms:[]},{title:"fab fa-steam-symbol",searchTerms:[]},{title:"fas fa-step-backward",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fas fa-step-forward",searchTerms:["end","last","next"]},{title:"fas fa-stethoscope",searchTerms:["covid-19","diagnosis","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{title:"fab fa-sticker-mule",searchTerms:[]},{title:"fas fa-sticky-note",searchTerms:["message","note","paper","reminder","sticker"]},{title:"far fa-sticky-note",searchTerms:["message","note","paper","reminder","sticker"]},{title:"fas fa-stop",searchTerms:["block","box","square"]},{title:"fas fa-stop-circle",searchTerms:["block","box","circle","square"]},{title:"far fa-stop-circle",searchTerms:["block","box","circle","square"]},{title:"fas fa-stopwatch",searchTerms:["clock","reminder","time"]},{title:"fas fa-stopwatch-20",searchTerms:["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{title:"fas fa-store",searchTerms:["building","buy","purchase","shopping"]},{title:"fas fa-store-alt",searchTerms:["building","buy","purchase","shopping"]},{title:"fas fa-store-alt-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fas fa-store-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fab fa-strava",searchTerms:[]},{title:"fas fa-stream",searchTerms:["flow","list","timeline"]},{title:"fas fa-street-view",searchTerms:["directions","location","map","navigation"]},{title:"fas fa-strikethrough",searchTerms:["cancel","edit","font","format","text","type"]},{title:"fab fa-stripe",searchTerms:[]},{title:"fab fa-stripe-s",searchTerms:[]},{title:"fas fa-stroopwafel",searchTerms:["caramel","cookie","dessert","sweets","waffle"]},{title:"fab fa-studiovinari",searchTerms:[]},{title:"fab fa-stumbleupon",searchTerms:[]},{title:"fab fa-stumbleupon-circle",searchTerms:[]},{title:"fas fa-subscript",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-subway",searchTerms:["machine","railway","train","transportation","vehicle"]},{title:"fas fa-suitcase",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fas fa-suitcase-rolling",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fas fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"far fa-sun",searchTerms:["brighten","contrast","day","lighter","sol","solar","star","weather"]},{title:"fab fa-superpowers",searchTerms:[]},{title:"fas fa-superscript",searchTerms:["edit","exponential","font","format","text","type"]},{title:"fab fa-supple",searchTerms:[]},{title:"fas fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"far fa-surprise",searchTerms:["emoticon","face","shocked"]},{title:"fab fa-suse",searchTerms:["linux","operating system","os"]},{title:"fas fa-swatchbook",searchTerms:["Pantone","color","design","hue","palette"]},{title:"fab fa-swift",searchTerms:[]},{title:"fas fa-swimmer",searchTerms:["athlete","head","man","olympics","person","pool","water"]},{title:"fas fa-swimming-pool",searchTerms:["ladder","recreation","swim","water"]},{title:"fab fa-symfony",searchTerms:[]},{title:"fas fa-synagogue",searchTerms:["building","jewish","judaism","religion","star of david","temple"]},{title:"fas fa-sync",searchTerms:["exchange","refresh","reload","rotate","swap"]},{title:"fas fa-sync-alt",searchTerms:["exchange","refresh","reload","rotate","swap"]},{title:"fas fa-syringe",searchTerms:["covid-19","doctor","immunizations","medical","needle"]},{title:"fas fa-table",searchTerms:["data","excel","spreadsheet"]},{title:"fas fa-table-tennis",searchTerms:["ball","paddle","ping pong"]},{title:"fas fa-tablet",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablet-alt",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fas fa-tablets",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fas fa-tachometer-alt",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fas fa-tag",searchTerms:["discount","label","price","shopping"]},{title:"fas fa-tags",searchTerms:["discount","label","price","shopping"]},{title:"fas fa-tape",searchTerms:["design","package","sticky"]},{title:"fas fa-tasks",searchTerms:["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{title:"fas fa-taxi",searchTerms:["cab","cabbie","car","car service","lyft","machine","transportation","travel","uber","vehicle"]},{title:"fab fa-teamspeak",searchTerms:[]},{title:"fas fa-teeth",searchTerms:["bite","dental","dentist","gums","mouth","smile","tooth"]},{title:"fas fa-teeth-open",searchTerms:["dental","dentist","gums bite","mouth","smile","tooth"]},{title:"fab fa-telegram",searchTerms:[]},{title:"fab fa-telegram-plane",searchTerms:[]},{title:"fas fa-temperature-high",searchTerms:["cook","covid-19","mercury","summer","thermometer","warm"]},{title:"fas fa-temperature-low",searchTerms:["cold","cool","covid-19","mercury","thermometer","winter"]},{title:"fab fa-tencent-weibo",searchTerms:[]},{title:"fas fa-tenge",searchTerms:["currency","kazakhstan","money","price"]},{title:"fas fa-terminal",searchTerms:["code","command","console","development","prompt"]},{title:"fas fa-text-height",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-text-width",searchTerms:["edit","font","format","text","type"]},{title:"fas fa-th",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-large",searchTerms:["blocks","boxes","grid","squares"]},{title:"fas fa-th-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fab fa-the-red-yeti",searchTerms:[]},{title:"fas fa-theater-masks",searchTerms:["comedy","perform","theatre","tragedy"]},{title:"fab fa-themeco",searchTerms:[]},{title:"fab fa-themeisle",searchTerms:[]},{title:"fas fa-thermometer",searchTerms:["covid-19","mercury","status","temperature"]},{title:"fas fa-thermometer-empty",searchTerms:["cold","mercury","status","temperature"]},{title:"fas fa-thermometer-full",searchTerms:["fever","hot","mercury","status","temperature"]},{title:"fas fa-thermometer-half",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-quarter",searchTerms:["mercury","status","temperature"]},{title:"fas fa-thermometer-three-quarters",searchTerms:["mercury","status","temperature"]},{title:"fab fa-think-peaks",searchTerms:[]},{title:"fas fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{title:"far fa-thumbs-down",searchTerms:["disagree","disapprove","dislike","hand","social","thumbs-o-down"]},{title:"fas fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{title:"far fa-thumbs-up",searchTerms:["agree","approve","favorite","hand","like","ok","okay","social","success","thumbs-o-up","yes","you got it dude"]},{title:"fas fa-thumbtack",searchTerms:["coordinates","location","marker","pin","thumb-tack"]},{title:"fas fa-ticket-alt",searchTerms:["movie","pass","support","ticket"]},{title:"fab fa-tiktok",searchTerms:[]},{title:"fas fa-times",searchTerms:["close","cross","error","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"far fa-times-circle",searchTerms:["close","cross","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fas fa-tint",searchTerms:["color","drop","droplet","raindrop","waterdrop"]},{title:"fas fa-tint-slash",searchTerms:["color","drop","droplet","raindrop","waterdrop"]},{title:"fas fa-tired",searchTerms:["angry","emoticon","face","grumpy","upset"]},{title:"far fa-tired",searchTerms:["angry","emoticon","face","grumpy","upset"]},{title:"fas fa-toggle-off",searchTerms:["switch"]},{title:"fas fa-toggle-on",searchTerms:["switch"]},{title:"fas fa-toilet",searchTerms:["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","washroom","waste","wc"]},{title:"fas fa-toilet-paper",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","prank","restroom","roll"]},{title:"fas fa-toilet-paper-slash",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","restroom","roll","trouble","ut oh"]},{title:"fas fa-toolbox",searchTerms:["admin","container","fix","repair","settings","tools"]},{title:"fas fa-tools",searchTerms:["admin","fix","repair","screwdriver","settings","tools","wrench"]},{title:"fas fa-tooth",searchTerms:["bicuspid","dental","dentist","molar","mouth","teeth"]},{title:"fas fa-torah",searchTerms:["book","jewish","judaism","religion","scroll"]},{title:"fas fa-torii-gate",searchTerms:["building","shintoism"]},{title:"fas fa-tractor",searchTerms:["agriculture","farm","vehicle"]},{title:"fab fa-trade-federation",searchTerms:[]},{title:"fas fa-trademark",searchTerms:["copyright","register","symbol"]},{title:"fas fa-traffic-light",searchTerms:["direction","road","signal","travel"]},{title:"fas fa-trailer",searchTerms:["carry","haul","moving","travel"]},{title:"fas fa-train",searchTerms:["bullet","commute","locomotive","railway","subway"]},{title:"fas fa-tram",searchTerms:["crossing","machine","mountains","seasonal","transportation"]},{title:"fas fa-transgender",searchTerms:["intersex"]},{title:"fas fa-transgender-alt",searchTerms:["intersex"]},{title:"fas fa-trash",searchTerms:["delete","garbage","hide","remove"]},{title:"fas fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"far fa-trash-alt",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"fas fa-trash-restore",searchTerms:["back","control z","oops","undo"]},{title:"fas fa-trash-restore-alt",searchTerms:["back","control z","oops","undo"]},{title:"fas fa-tree",searchTerms:["bark","fall","flora","forest","nature","plant","seasonal"]},{title:"fab fa-trello",searchTerms:["atlassian"]},{title:"fas fa-trophy",searchTerms:["achievement","award","cup","game","winner"]},{title:"fas fa-truck",searchTerms:["cargo","delivery","shipping","vehicle"]},{title:"fas fa-truck-loading",searchTerms:["box","cargo","delivery","inventory","moving","rental","vehicle"]},{title:"fas fa-truck-monster",searchTerms:["offroad","vehicle","wheel"]},{title:"fas fa-truck-moving",searchTerms:["cargo","inventory","rental","vehicle"]},{title:"fas fa-truck-pickup",searchTerms:["cargo","vehicle"]},{title:"fas fa-tshirt",searchTerms:["clothing","fashion","garment","shirt"]},{title:"fas fa-tty",searchTerms:["communication","deaf","telephone","teletypewriter","text"]},{title:"fab fa-tumblr",searchTerms:[]},{title:"fab fa-tumblr-square",searchTerms:[]},{title:"fas fa-tv",searchTerms:["computer","display","monitor","television"]},{title:"fab fa-twitch",searchTerms:[]},{title:"fab fa-twitter",searchTerms:["social network","tweet"]},{title:"fab fa-twitter-square",searchTerms:["social network","tweet"]},{title:"fab fa-typo3",searchTerms:[]},{title:"fab fa-uber",searchTerms:[]},{title:"fab fa-ubuntu",searchTerms:["linux","operating system","os"]},{title:"fab fa-uikit",searchTerms:[]},{title:"fab fa-umbraco",searchTerms:[]},{title:"fas fa-umbrella",searchTerms:["protection","rain","storm","wet"]},{title:"fas fa-umbrella-beach",searchTerms:["protection","recreation","sand","shade","summer","sun"]},{title:"fab fa-uncharted",searchTerms:[]},{title:"fas fa-underline",searchTerms:["edit","emphasis","format","text","writing"]},{title:"fas fa-undo",searchTerms:["back","control z","exchange","oops","return","rotate","swap"]},{title:"fas fa-undo-alt",searchTerms:["back","control z","exchange","oops","return","swap"]},{title:"fab fa-uniregistry",searchTerms:[]},{title:"fab fa-unity",searchTerms:[]},{title:"fas fa-universal-access",searchTerms:["accessibility","hearing","person","seeing","visual impairment"]},{title:"fas fa-university",searchTerms:["bank","building","college","higher education - students","institution"]},{title:"fas fa-unlink",searchTerms:["attachment","chain","chain-broken","remove"]},{title:"fas fa-unlock",searchTerms:["admin","lock","password","private","protect"]},{title:"fas fa-unlock-alt",searchTerms:["admin","lock","password","private","protect"]},{title:"fab fa-unsplash",searchTerms:[]},{title:"fab fa-untappd",searchTerms:[]},{title:"fas fa-upload",searchTerms:["hard drive","import","publish"]},{title:"fab fa-ups",searchTerms:["United Parcel Service","package","shipping"]},{title:"fab fa-usb",searchTerms:[]},{title:"fas fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-alt-slash",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-astronaut",searchTerms:["avatar","clothing","cosmonaut","nasa","space","suit"]},{title:"fas fa-user-check",searchTerms:["accept","check","person","verified"]},{title:"fas fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"far fa-user-circle",searchTerms:["account","avatar","head","human","man","person","profile"]},{title:"fas fa-user-clock",searchTerms:["alert","person","remind","time"]},{title:"fas fa-user-cog",searchTerms:["admin","cog","person","settings"]},{title:"fas fa-user-edit",searchTerms:["edit","pen","pencil","person","update","write"]},{title:"fas fa-user-friends",searchTerms:["group","people","person","team","users"]},{title:"fas fa-user-graduate",searchTerms:["cap","clothing","commencement","gown","graduation","person","student"]},{title:"fas fa-user-injured",searchTerms:["cast","injury","ouch","patient","person","sling"]},{title:"fas fa-user-lock",searchTerms:["admin","lock","person","private","unlock"]},{title:"fas fa-user-md",searchTerms:["covid-19","job","medical","nurse","occupation","physician","profile","surgeon"]},{title:"fas fa-user-minus",searchTerms:["delete","negative","remove"]},{title:"fas fa-user-ninja",searchTerms:["assassin","avatar","dangerous","deadly","sneaky"]},{title:"fas fa-user-nurse",searchTerms:["covid-19","doctor","midwife","practitioner","surgeon"]},{title:"fas fa-user-plus",searchTerms:["add","avatar","positive","sign up","signup","team"]},{title:"fas fa-user-secret",searchTerms:["clothing","coat","hat","incognito","person","privacy","spy","whisper"]},{title:"fas fa-user-shield",searchTerms:["admin","person","private","protect","safe"]},{title:"fas fa-user-slash",searchTerms:["ban","delete","remove"]},{title:"fas fa-user-tag",searchTerms:["avatar","discount","label","person","role","special"]},{title:"fas fa-user-tie",searchTerms:["avatar","business","clothing","formal","professional","suit"]},{title:"fas fa-user-times",searchTerms:["archive","delete","remove","x"]},{title:"fas fa-users",searchTerms:["friends","group","people","persons","profiles","team"]},{title:"fas fa-users-cog",searchTerms:["admin","cog","group","person","settings","team"]},{title:"fas fa-users-slash",searchTerms:["disband","friends","group","people","persons","profiles","separate","team","ungroup"]},{title:"fab fa-usps",searchTerms:["american","package","shipping","usa"]},{title:"fab fa-ussunnah",searchTerms:[]},{title:"fas fa-utensil-spoon",searchTerms:["cutlery","dining","scoop","silverware","spoon"]},{title:"fas fa-utensils",searchTerms:["cutlery","dining","dinner","eat","food","fork","knife","restaurant"]},{title:"fab fa-vaadin",searchTerms:[]},{title:"fas fa-vector-square",searchTerms:["anchors","lines","object","render","shape"]},{title:"fas fa-venus",searchTerms:["female"]},{title:"fas fa-venus-double",searchTerms:["female"]},{title:"fas fa-venus-mars",searchTerms:["Gender"]},{title:"fas fa-vest",searchTerms:["biker","fashion","style"]},{title:"fas fa-vest-patches",searchTerms:["biker","fashion","style"]},{title:"fab fa-viacoin",searchTerms:[]},{title:"fab fa-viadeo",searchTerms:[]},{title:"fab fa-viadeo-square",searchTerms:[]},{title:"fas fa-vial",searchTerms:["experiment","lab","sample","science","test","test tube"]},{title:"fas fa-vials",searchTerms:["experiment","lab","sample","science","test","test tube"]},{title:"fab fa-viber",searchTerms:[]},{title:"fas fa-video",searchTerms:["camera","film","movie","record","video-camera"]},{title:"fas fa-video-slash",searchTerms:["add","create","film","new","positive","record","video"]},{title:"fas fa-vihara",searchTerms:["buddhism","buddhist","building","monastery"]},{title:"fab fa-vimeo",searchTerms:[]},{title:"fab fa-vimeo-square",searchTerms:[]},{title:"fab fa-vimeo-v",searchTerms:["vimeo"]},{title:"fab fa-vine",searchTerms:[]},{title:"fas fa-virus",searchTerms:["bug","covid-19","flu","health","sick","viral"]},{title:"fas fa-virus-slash",searchTerms:["bug","covid-19","cure","eliminate","flu","health","sick","viral"]},{title:"fas fa-viruses",searchTerms:["bugs","covid-19","flu","health","multiply","sick","spread","viral"]},{title:"fab fa-vk",searchTerms:[]},{title:"fab fa-vnv",searchTerms:[]},{title:"fas fa-voicemail",searchTerms:["answer","inbox","message","phone"]},{title:"fas fa-volleyball-ball",searchTerms:["beach","olympics","sport"]},{title:"fas fa-volume-down",searchTerms:["audio","lower","music","quieter","sound","speaker"]},{title:"fas fa-volume-mute",searchTerms:["audio","music","quiet","sound","speaker"]},{title:"fas fa-volume-off",searchTerms:["audio","ban","music","mute","quiet","silent","sound"]},{title:"fas fa-volume-up",searchTerms:["audio","higher","louder","music","sound","speaker"]},{title:"fas fa-vote-yea",searchTerms:["accept","cast","election","politics","positive","yes"]},{title:"fas fa-vr-cardboard",searchTerms:["3d","augment","google","reality","virtual"]},{title:"fab fa-vuejs",searchTerms:[]},{title:"fas fa-walking",searchTerms:["exercise","health","pedometer","person","steps"]},{title:"fas fa-wallet",searchTerms:["billfold","cash","currency","money"]},{title:"fas fa-warehouse",searchTerms:["building","capacity","garage","inventory","storage"]},{title:"fab fa-watchman-monitoring",searchTerms:[]},{title:"fas fa-water",searchTerms:["lake","liquid","ocean","sea","swim","wet"]},{title:"fas fa-wave-square",searchTerms:["frequency","pulse","signal"]},{title:"fab fa-waze",searchTerms:[]},{title:"fab fa-weebly",searchTerms:[]},{title:"fab fa-weibo",searchTerms:[]},{title:"fas fa-weight",searchTerms:["health","measurement","scale","weight"]},{title:"fas fa-weight-hanging",searchTerms:["anvil","heavy","measurement"]},{title:"fab fa-weixin",searchTerms:[]},{title:"fab fa-whatsapp",searchTerms:[]},{title:"fab fa-whatsapp-square",searchTerms:[]},{title:"fas fa-wheelchair",searchTerms:["accessible","handicap","person"]},{title:"fab fa-whmcs",searchTerms:[]},{title:"fas fa-wifi",searchTerms:["connection","hotspot","internet","network","wireless"]},{title:"fab fa-wikipedia-w",searchTerms:[]},{title:"fas fa-wind",searchTerms:["air","blow","breeze","fall","seasonal","weather"]},{title:"fas fa-window-close",searchTerms:["browser","cancel","computer","development"]},{title:"far fa-window-close",searchTerms:["browser","cancel","computer","development"]},{title:"fas fa-window-maximize",searchTerms:["browser","computer","development","expand"]},{title:"far fa-window-maximize",searchTerms:["browser","computer","development","expand"]},{title:"fas fa-window-minimize",searchTerms:["browser","collapse","computer","development"]},{title:"far fa-window-minimize",searchTerms:["browser","collapse","computer","development"]},{title:"fas fa-window-restore",searchTerms:["browser","computer","development"]},{title:"far fa-window-restore",searchTerms:["browser","computer","development"]},{title:"fab fa-windows",searchTerms:["microsoft","operating system","os"]},{title:"fas fa-wine-bottle",searchTerms:["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{title:"fas fa-wine-glass",searchTerms:["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{title:"fas fa-wine-glass-alt",searchTerms:["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{title:"fab fa-wix",searchTerms:[]},{title:"fab fa-wizards-of-the-coast",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fab fa-wodu",searchTerms:[]},{title:"fab fa-wolf-pack-battalion",searchTerms:[]},{title:"fas fa-won-sign",searchTerms:["currency","krw","money"]},{title:"fab fa-wordpress",searchTerms:[]},{title:"fab fa-wordpress-simple",searchTerms:[]},{title:"fab fa-wpbeginner",searchTerms:[]},{title:"fab fa-wpexplorer",searchTerms:[]},{title:"fab fa-wpforms",searchTerms:[]},{title:"fab fa-wpressr",searchTerms:["rendact"]},{title:"fas fa-wrench",searchTerms:["construction","fix","mechanic","plumbing","settings","spanner","tool","update"]},{title:"fas fa-x-ray",searchTerms:["health","medical","radiological images","radiology","skeleton"]},{title:"fab fa-xbox",searchTerms:[]},{title:"fab fa-xing",searchTerms:[]},{title:"fab fa-xing-square",searchTerms:[]},{title:"fab fa-y-combinator",searchTerms:[]},{title:"fab fa-yahoo",searchTerms:[]},{title:"fab fa-yammer",searchTerms:[]},{title:"fab fa-yandex",searchTerms:[]},{title:"fab fa-yandex-international",searchTerms:[]},{title:"fab fa-yarn",searchTerms:[]},{title:"fab fa-yelp",searchTerms:[]},{title:"fas fa-yen-sign",searchTerms:["currency","jpy","money"]},{title:"fas fa-yin-yang",searchTerms:["daoism","opposites","taoism"]},{title:"fab fa-yoast",searchTerms:[]},{title:"fab fa-youtube",searchTerms:["film","video","youtube-play","youtube-square"]},{title:"fab fa-youtube-square",searchTerms:[]},{title:"fab fa-zhihu",searchTerms:[]}]})}); \ No newline at end of file diff --git a/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.js b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.js new file mode 100644 index 0000000..8b434d3 --- /dev/null +++ b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.js @@ -0,0 +1,1094 @@ +/*! + * Font Awesome Icon Picker + * https://farbelous.github.io/fontawesome-iconpicker/ + * + * Originally written by (c) 2016 Javi Aguilar + * Licensed under the MIT License + * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE + * + */ +(function(a) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], a); + } else { + a(jQuery); + } +})(function(a) { + a.ui = a.ui || {}; + var b = a.ui.version = "1.12.1"; + /*! + * jQuery UI Position 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * http://api.jqueryui.com/position/ + */ + (function() { + var b, c = Math.max, d = Math.abs, e = /left|center|right/, f = /top|center|bottom/, g = /[\+\-]\d+(\.[\d]+)?%?/, h = /^\w+/, i = /%$/, j = a.fn.pos; + function k(a, b, c) { + return [ parseFloat(a[0]) * (i.test(a[0]) ? b / 100 : 1), parseFloat(a[1]) * (i.test(a[1]) ? c / 100 : 1) ]; + } + function l(b, c) { + return parseInt(a.css(b, c), 10) || 0; + } + function m(b) { + var c = b[0]; + if (c.nodeType === 9) { + return { + width: b.width(), + height: b.height(), + offset: { + top: 0, + left: 0 + } + }; + } + if (a.isWindow(c)) { + return { + width: b.width(), + height: b.height(), + offset: { + top: b.scrollTop(), + left: b.scrollLeft() + } + }; + } + if (c.preventDefault) { + return { + width: 0, + height: 0, + offset: { + top: c.pageY, + left: c.pageX + } + }; + } + return { + width: b.outerWidth(), + height: b.outerHeight(), + offset: b.offset() + }; + } + a.pos = { + scrollbarWidth: function() { + if (b !== undefined) { + return b; + } + var c, d, e = a("
              " + "
              "), f = e.children()[0]; + a("body").append(e); + c = f.offsetWidth; + e.css("overflow", "scroll"); + d = f.offsetWidth; + if (c === d) { + d = e[0].clientWidth; + } + e.remove(); + return b = c - d; + }, + getScrollInfo: function(b) { + var c = b.isWindow || b.isDocument ? "" : b.element.css("overflow-x"), d = b.isWindow || b.isDocument ? "" : b.element.css("overflow-y"), e = c === "scroll" || c === "auto" && b.width < b.element[0].scrollWidth, f = d === "scroll" || d === "auto" && b.height < b.element[0].scrollHeight; + return { + width: f ? a.pos.scrollbarWidth() : 0, + height: e ? a.pos.scrollbarWidth() : 0 + }; + }, + getWithinInfo: function(b) { + var c = a(b || window), d = a.isWindow(c[0]), e = !!c[0] && c[0].nodeType === 9, f = !d && !e; + return { + element: c, + isWindow: d, + isDocument: e, + offset: f ? a(b).offset() : { + left: 0, + top: 0 + }, + scrollLeft: c.scrollLeft(), + scrollTop: c.scrollTop(), + width: c.outerWidth(), + height: c.outerHeight() + }; + } + }; + a.fn.pos = function(b) { + if (!b || !b.of) { + return j.apply(this, arguments); + } + b = a.extend({}, b); + var i, n, o, p, q, r, s = a(b.of), t = a.pos.getWithinInfo(b.within), u = a.pos.getScrollInfo(t), v = (b.collision || "flip").split(" "), w = {}; + r = m(s); + if (s[0].preventDefault) { + b.at = "left top"; + } + n = r.width; + o = r.height; + p = r.offset; + q = a.extend({}, p); + a.each([ "my", "at" ], function() { + var a = (b[this] || "").split(" "), c, d; + if (a.length === 1) { + a = e.test(a[0]) ? a.concat([ "center" ]) : f.test(a[0]) ? [ "center" ].concat(a) : [ "center", "center" ]; + } + a[0] = e.test(a[0]) ? a[0] : "center"; + a[1] = f.test(a[1]) ? a[1] : "center"; + c = g.exec(a[0]); + d = g.exec(a[1]); + w[this] = [ c ? c[0] : 0, d ? d[0] : 0 ]; + b[this] = [ h.exec(a[0])[0], h.exec(a[1])[0] ]; + }); + if (v.length === 1) { + v[1] = v[0]; + } + if (b.at[0] === "right") { + q.left += n; + } else if (b.at[0] === "center") { + q.left += n / 2; + } + if (b.at[1] === "bottom") { + q.top += o; + } else if (b.at[1] === "center") { + q.top += o / 2; + } + i = k(w.at, n, o); + q.left += i[0]; + q.top += i[1]; + return this.each(function() { + var e, f, g = a(this), h = g.outerWidth(), j = g.outerHeight(), m = l(this, "marginLeft"), r = l(this, "marginTop"), x = h + m + l(this, "marginRight") + u.width, y = j + r + l(this, "marginBottom") + u.height, z = a.extend({}, q), A = k(w.my, g.outerWidth(), g.outerHeight()); + if (b.my[0] === "right") { + z.left -= h; + } else if (b.my[0] === "center") { + z.left -= h / 2; + } + if (b.my[1] === "bottom") { + z.top -= j; + } else if (b.my[1] === "center") { + z.top -= j / 2; + } + z.left += A[0]; + z.top += A[1]; + e = { + marginLeft: m, + marginTop: r + }; + a.each([ "left", "top" ], function(c, d) { + if (a.ui.pos[v[c]]) { + a.ui.pos[v[c]][d](z, { + targetWidth: n, + targetHeight: o, + elemWidth: h, + elemHeight: j, + collisionPosition: e, + collisionWidth: x, + collisionHeight: y, + offset: [ i[0] + A[0], i[1] + A[1] ], + my: b.my, + at: b.at, + within: t, + elem: g + }); + } + }); + if (b.using) { + f = function(a) { + var e = p.left - z.left, f = e + n - h, i = p.top - z.top, k = i + o - j, l = { + target: { + element: s, + left: p.left, + top: p.top, + width: n, + height: o + }, + element: { + element: g, + left: z.left, + top: z.top, + width: h, + height: j + }, + horizontal: f < 0 ? "left" : e > 0 ? "right" : "center", + vertical: k < 0 ? "top" : i > 0 ? "bottom" : "middle" + }; + if (n < h && d(e + f) < n) { + l.horizontal = "center"; + } + if (o < j && d(i + k) < o) { + l.vertical = "middle"; + } + if (c(d(e), d(f)) > c(d(i), d(k))) { + l.important = "horizontal"; + } else { + l.important = "vertical"; + } + b.using.call(this, a, l); + }; + } + g.offset(a.extend(z, { + using: f + })); + }); + }; + a.ui.pos = { + _trigger: function(a, b, c, d) { + if (b.elem) { + b.elem.trigger({ + type: c, + position: a, + positionData: b, + triggered: d + }); + } + }, + fit: { + left: function(b, d) { + a.ui.pos._trigger(b, d, "posCollide", "fitLeft"); + var e = d.within, f = e.isWindow ? e.scrollLeft : e.offset.left, g = e.width, h = b.left - d.collisionPosition.marginLeft, i = f - h, j = h + d.collisionWidth - g - f, k; + if (d.collisionWidth > g) { + if (i > 0 && j <= 0) { + k = b.left + i + d.collisionWidth - g - f; + b.left += i - k; + } else if (j > 0 && i <= 0) { + b.left = f; + } else { + if (i > j) { + b.left = f + g - d.collisionWidth; + } else { + b.left = f; + } + } + } else if (i > 0) { + b.left += i; + } else if (j > 0) { + b.left -= j; + } else { + b.left = c(b.left - h, b.left); + } + a.ui.pos._trigger(b, d, "posCollided", "fitLeft"); + }, + top: function(b, d) { + a.ui.pos._trigger(b, d, "posCollide", "fitTop"); + var e = d.within, f = e.isWindow ? e.scrollTop : e.offset.top, g = d.within.height, h = b.top - d.collisionPosition.marginTop, i = f - h, j = h + d.collisionHeight - g - f, k; + if (d.collisionHeight > g) { + if (i > 0 && j <= 0) { + k = b.top + i + d.collisionHeight - g - f; + b.top += i - k; + } else if (j > 0 && i <= 0) { + b.top = f; + } else { + if (i > j) { + b.top = f + g - d.collisionHeight; + } else { + b.top = f; + } + } + } else if (i > 0) { + b.top += i; + } else if (j > 0) { + b.top -= j; + } else { + b.top = c(b.top - h, b.top); + } + a.ui.pos._trigger(b, d, "posCollided", "fitTop"); + } + }, + flip: { + left: function(b, c) { + a.ui.pos._trigger(b, c, "posCollide", "flipLeft"); + var e = c.within, f = e.offset.left + e.scrollLeft, g = e.width, h = e.isWindow ? e.scrollLeft : e.offset.left, i = b.left - c.collisionPosition.marginLeft, j = i - h, k = i + c.collisionWidth - g - h, l = c.my[0] === "left" ? -c.elemWidth : c.my[0] === "right" ? c.elemWidth : 0, m = c.at[0] === "left" ? c.targetWidth : c.at[0] === "right" ? -c.targetWidth : 0, n = -2 * c.offset[0], o, p; + if (j < 0) { + o = b.left + l + m + n + c.collisionWidth - g - f; + if (o < 0 || o < d(j)) { + b.left += l + m + n; + } + } else if (k > 0) { + p = b.left - c.collisionPosition.marginLeft + l + m + n - h; + if (p > 0 || d(p) < k) { + b.left += l + m + n; + } + } + a.ui.pos._trigger(b, c, "posCollided", "flipLeft"); + }, + top: function(b, c) { + a.ui.pos._trigger(b, c, "posCollide", "flipTop"); + var e = c.within, f = e.offset.top + e.scrollTop, g = e.height, h = e.isWindow ? e.scrollTop : e.offset.top, i = b.top - c.collisionPosition.marginTop, j = i - h, k = i + c.collisionHeight - g - h, l = c.my[1] === "top", m = l ? -c.elemHeight : c.my[1] === "bottom" ? c.elemHeight : 0, n = c.at[1] === "top" ? c.targetHeight : c.at[1] === "bottom" ? -c.targetHeight : 0, o = -2 * c.offset[1], p, q; + if (j < 0) { + q = b.top + m + n + o + c.collisionHeight - g - f; + if (q < 0 || q < d(j)) { + b.top += m + n + o; + } + } else if (k > 0) { + p = b.top - c.collisionPosition.marginTop + m + n + o - h; + if (p > 0 || d(p) < k) { + b.top += m + n + o; + } + } + a.ui.pos._trigger(b, c, "posCollided", "flipTop"); + } + }, + flipfit: { + left: function() { + a.ui.pos.flip.left.apply(this, arguments); + a.ui.pos.fit.left.apply(this, arguments); + }, + top: function() { + a.ui.pos.flip.top.apply(this, arguments); + a.ui.pos.fit.top.apply(this, arguments); + } + } + }; + (function() { + var b, c, d, e, f, g = document.getElementsByTagName("body")[0], h = document.createElement("div"); + b = document.createElement(g ? "div" : "body"); + d = { + visibility: "hidden", + width: 0, + height: 0, + border: 0, + margin: 0, + background: "none" + }; + if (g) { + a.extend(d, { + position: "absolute", + left: "-1000px", + top: "-1000px" + }); + } + for (f in d) { + b.style[f] = d[f]; + } + b.appendChild(h); + c = g || document.documentElement; + c.insertBefore(b, c.firstChild); + h.style.cssText = "position: absolute; left: 10.7432222px;"; + e = a(h).offset().left; + a.support.offsetFractions = e > 10 && e < 11; + b.innerHTML = ""; + c.removeChild(b); + })(); + })(); + var c = a.ui.position; +}); + +(function(a) { + "use strict"; + if (typeof define === "function" && define.amd) { + define([ "jquery" ], a); + } else if (window.jQuery && !window.jQuery.fn.iconpicker) { + a(window.jQuery); + } +})(function(a) { + "use strict"; + var b = { + isEmpty: function(a) { + return a === false || a === "" || a === null || a === undefined; + }, + isEmptyObject: function(a) { + return this.isEmpty(a) === true || a.length === 0; + }, + isElement: function(b) { + return a(b).length > 0; + }, + isString: function(a) { + return typeof a === "string" || a instanceof String; + }, + isArray: function(b) { + return a.isArray(b); + }, + inArray: function(b, c) { + return a.inArray(b, c) !== -1; + }, + throwError: function(a) { + throw "Font Awesome Icon Picker Exception: " + a; + } + }; + var c = function(d, e) { + this._id = c._idCounter++; + this.element = a(d).addClass("iconpicker-element"); + this._trigger("iconpickerCreate", { + iconpickerValue: this.iconpickerValue + }); + this.options = a.extend({}, c.defaultOptions, this.element.data(), e); + this.options.templates = a.extend({}, c.defaultOptions.templates, this.options.templates); + this.options.originalPlacement = this.options.placement; + this.container = b.isElement(this.options.container) ? a(this.options.container) : false; + if (this.container === false) { + if (this.element.is(".dropdown-toggle")) { + this.container = a("~ .dropdown-menu:first", this.element); + } else { + this.container = this.element.is("input,textarea,button,.btn") ? this.element.parent() : this.element; + } + } + this.container.addClass("iconpicker-container"); + if (this.isDropdownMenu()) { + this.options.placement = "inline"; + } + this.input = this.element.is("input,textarea") ? this.element.addClass("iconpicker-input") : false; + if (this.input === false) { + this.input = this.container.find(this.options.input); + if (!this.input.is("input,textarea")) { + this.input = false; + } + } + this.component = this.isDropdownMenu() ? this.container.parent().find(this.options.component) : this.container.find(this.options.component); + if (this.component.length === 0) { + this.component = false; + } else { + this.component.find("i").addClass("iconpicker-component"); + } + this._createPopover(); + this._createIconpicker(); + if (this.getAcceptButton().length === 0) { + this.options.mustAccept = false; + } + if (this.isInputGroup()) { + this.container.parent().append(this.popover); + } else { + this.container.append(this.popover); + } + this._bindElementEvents(); + this._bindWindowEvents(); + this.update(this.options.selected); + if (this.isInline()) { + this.show(); + } + this._trigger("iconpickerCreated", { + iconpickerValue: this.iconpickerValue + }); + }; + c._idCounter = 0; + c.defaultOptions = { + title: false, + selected: false, + defaultValue: false, + placement: "bottom", + collision: "none", + animation: true, + hideOnSelect: true, + showFooter: false, + searchInFooter: false, + mustAccept: false, + selectedCustomClass: "bg-primary", + icons: [], + fullClassFormatter: function(a) { + return a; + }, + input: "input,.iconpicker-input", + inputSearch: false, + container: false, + component: ".input-group-addon,.iconpicker-component", + templates: { + popover: '
              ' + '
              ', + footer: '', + buttons: '' + ' ', + search: '', + iconpicker: '
              ', + iconpickerItem: '' + } + }; + c.batch = function(b, c) { + var d = Array.prototype.slice.call(arguments, 2); + return a(b).each(function() { + var b = a(this).data("iconpicker"); + if (!!b) { + b[c].apply(b, d); + } + }); + }; + c.prototype = { + constructor: c, + options: {}, + _id: 0, + _trigger: function(b, c) { + c = c || {}; + this.element.trigger(a.extend({ + type: b, + iconpickerInstance: this + }, c)); + }, + _createPopover: function() { + this.popover = a(this.options.templates.popover); + var c = this.popover.find(".popover-title"); + if (!!this.options.title) { + c.append(a('
              ' + this.options.title + "
              ")); + } + if (this.hasSeparatedSearchInput() && !this.options.searchInFooter) { + c.append(this.options.templates.search); + } else if (!this.options.title) { + c.remove(); + } + if (this.options.showFooter && !b.isEmpty(this.options.templates.footer)) { + var d = a(this.options.templates.footer); + if (this.hasSeparatedSearchInput() && this.options.searchInFooter) { + d.append(a(this.options.templates.search)); + } + if (!b.isEmpty(this.options.templates.buttons)) { + d.append(a(this.options.templates.buttons)); + } + this.popover.append(d); + } + if (this.options.animation === true) { + this.popover.addClass("fade"); + } + return this.popover; + }, + _createIconpicker: function() { + var b = this; + this.iconpicker = a(this.options.templates.iconpicker); + var c = function(c) { + var d = a(this); + if (d.is("i")) { + d = d.parent(); + } + b._trigger("iconpickerSelect", { + iconpickerItem: d, + iconpickerValue: b.iconpickerValue + }); + if (b.options.mustAccept === false) { + b.update(d.data("iconpickerValue")); + b._trigger("iconpickerSelected", { + iconpickerItem: this, + iconpickerValue: b.iconpickerValue + }); + } else { + b.update(d.data("iconpickerValue"), true); + } + if (b.options.hideOnSelect && b.options.mustAccept === false) { + b.hide(); + } + }; + for (var d in this.options.icons) { + if (typeof this.options.icons[d].title === "string") { + var e = a(this.options.templates.iconpickerItem); + e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title)); + e.data("iconpickerValue", this.options.icons[d].title).on("click.iconpicker", c); + this.iconpicker.find(".iconpicker-items").append(e.attr("title", "." + this.options.icons[d].title)); + if (this.options.icons[d].searchTerms.length > 0) { + var f = ""; + for (var g = 0; g < this.options.icons[d].searchTerms.length; g++) { + f = f + this.options.icons[d].searchTerms[g] + " "; + } + this.iconpicker.find(".iconpicker-items").append(e.attr("data-search-terms", f)); + } + } + } + this.popover.find(".popover-content").append(this.iconpicker); + return this.iconpicker; + }, + _isEventInsideIconpicker: function(b) { + var c = a(b.target); + if ((!c.hasClass("iconpicker-element") || c.hasClass("iconpicker-element") && !c.is(this.element)) && c.parents(".iconpicker-popover").length === 0) { + return false; + } + return true; + }, + _bindElementEvents: function() { + var c = this; + this.getSearchInput().on("keyup.iconpicker", function() { + c.filter(a(this).val().toLowerCase()); + }); + this.getAcceptButton().on("click.iconpicker", function() { + var a = c.iconpicker.find(".iconpicker-selected").get(0); + c.update(c.iconpickerValue); + c._trigger("iconpickerSelected", { + iconpickerItem: a, + iconpickerValue: c.iconpickerValue + }); + if (!c.isInline()) { + c.hide(); + } + }); + this.getCancelButton().on("click.iconpicker", function() { + if (!c.isInline()) { + c.hide(); + } + }); + this.element.on("focus.iconpicker", function(a) { + c.show(); + a.stopPropagation(); + }); + if (this.hasComponent()) { + this.component.on("click.iconpicker", function() { + c.toggle(); + }); + } + if (this.hasInput()) { + this.input.on("keyup.iconpicker paste", function(d) { // Notice the added "paste" + if (d.type === 'paste') { + // Handle the paste event + setTimeout(function() { // Use a timeout to ensure the pasted content is actually in the input + c.update(); + if (c.options.inputSearch === true) { + c.filter(a(this).val().toLowerCase()); + } + }.bind(this), 0); // bind(this) to ensure 'this' inside the setTimeout is the input element + } else { + // Existing keyup event logic + if (!b.inArray(d.keyCode, [ 38, 40, 37, 39, 16, 17, 18, 9, 8, 91, 93, 20, 46, 186, 190, 46, 78, 188, 44, 86 ])) { + c.update(); + } else { + c._updateFormGroupStatus(c.getValid(this.value) !== false); + } + if (c.options.inputSearch === true) { + c.filter(a(this).val().toLowerCase()); + } + } + }); + } + }, + _bindWindowEvents: function() { + var b = a(window.document); + var c = this; + var d = ".iconpicker.inst" + this._id; + a(window).on("resize.iconpicker" + d + " orientationchange.iconpicker" + d, function(a) { + if (c.popover.hasClass("show")) { + c.updatePlacement(); + } + }); + if (!c.isInline()) { + b.on("mouseup" + d, function(a) { + if (!c._isEventInsideIconpicker(a) && !c.isInline()) { + c.hide(); + } + }); + } + }, + _unbindElementEvents: function() { + this.popover.off(".iconpicker"); + this.element.off(".iconpicker"); + if (this.hasInput()) { + this.input.off(".iconpicker"); + } + if (this.hasComponent()) { + this.component.off(".iconpicker"); + } + if (this.hasContainer()) { + this.container.off(".iconpicker"); + } + }, + _unbindWindowEvents: function() { + a(window).off(".iconpicker.inst" + this._id); + a(window.document).off(".iconpicker.inst" + this._id); + }, + updatePlacement: function(b, c) { + b = b || this.options.placement; + this.options.placement = b; + c = c || this.options.collision; + c = c === true ? "flip" : c; + var d = { + at: "right bottom", + my: "right top", + of: this.hasInput() && !this.isInputGroup() ? this.input : this.container, + collision: c === true ? "flip" : c, + within: window + }; + this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner " + "rightTop right rightBottom bottomRight bottomRightCorner " + "bottom bottomLeft bottomLeftCorner leftBottom left leftTop"); + if (typeof b === "object") { + return this.popover.pos(a.extend({}, d, b)); + } + switch (b) { + case "inline": + { + d = false; + } + break; + + case "topLeftCorner": + { + d.my = "right bottom"; + d.at = "left top"; + } + break; + + case "topLeft": + { + d.my = "left bottom"; + d.at = "left top"; + } + break; + + case "top": + { + d.my = "center bottom"; + d.at = "center top"; + } + break; + + case "topRight": + { + d.my = "right bottom"; + d.at = "right top"; + } + break; + + case "topRightCorner": + { + d.my = "left bottom"; + d.at = "right top"; + } + break; + + case "rightTop": + { + d.my = "left bottom"; + d.at = "right center"; + } + break; + + case "right": + { + d.my = "left center"; + d.at = "right center"; + } + break; + + case "rightBottom": + { + d.my = "left top"; + d.at = "right center"; + } + break; + + case "bottomRightCorner": + { + d.my = "left top"; + d.at = "right bottom"; + } + break; + + case "bottomRight": + { + d.my = "right top"; + d.at = "right bottom"; + } + break; + + case "bottom": + { + d.my = "center top"; + d.at = "center bottom"; + } + break; + + case "bottomLeft": + { + d.my = "left top"; + d.at = "left bottom"; + } + break; + + case "bottomLeftCorner": + { + d.my = "right top"; + d.at = "left bottom"; + } + break; + + case "leftBottom": + { + d.my = "right top"; + d.at = "left center"; + } + break; + + case "left": + { + d.my = "right center"; + d.at = "left center"; + } + break; + + case "leftTop": + { + d.my = "right bottom"; + d.at = "left center"; + } + break; + + default: + { + return false; + } + break; + } + this.popover.css({ + display: this.options.placement === "inline" ? "" : "block" + }); + if (d !== false) { + this.popover.pos(d).css("maxWidth", a(window).width() - this.container.offset().left - 5); + } else { + this.popover.css({ + top: "auto", + right: "auto", + bottom: "auto", + left: "auto", + maxWidth: "none" + }); + } + this.popover.addClass(this.options.placement); + return true; + }, + _updateComponents: function() { + this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected " + this.options.selectedCustomClass); + if (this.iconpickerValue) { + console.log(this.iconpickerValue); + this.iconpicker.find("." + this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g, ".")).parent().addClass("iconpicker-selected " + this.options.selectedCustomClass); + } + if (this.hasComponent()) { + var a = this.component.find("i"); + + // check if we have a unknowen class value + if(a.className === undefined && this.input[0].value){ + this.iconpickerValue = this.input[0].value; + } + + if (a.length > 0) { + a.attr("class", this.options.fullClassFormatter(this.iconpickerValue)); + } else { + this.component.html(this.getHtml()); + } + } + }, + _updateFormGroupStatus: function(a) { + if (this.hasInput()) { + if (a !== false) { + this.input.parents(".form-group:first").removeClass("has-error"); + } else { + this.input.parents(".form-group:first").addClass("has-error"); + } + return true; + } + return false; + }, + getValid: function(c) { + if (!b.isString(c)) { + c = ""; + } + var d = c === ""; + c = a.trim(c); + var e = false; + for (var f = 0; f < this.options.icons.length; f++) { + if (this.options.icons[f].title === c) { + e = true; + break; + } + } + if (e || d) { + return c; + } + return false; + }, + setValue: function(a) { + var b = this.getValid(a); + if (b !== false) { + this.iconpickerValue = b; + this._trigger("iconpickerSetValue", { + iconpickerValue: b + }); + return this.iconpickerValue; + } else { + this._trigger("iconpickerInvalid", { + iconpickerValue: a + }); + return false; + } + }, + getHtml: function() { + return ''; + }, + setSourceValue: function(a) { + a = this.setValue(a); + if (a !== false && a !== "") { + if (this.hasInput()) { + this.input.val(this.iconpickerValue); + } else { + this.element.data("iconpickerValue", this.iconpickerValue); + } + this._trigger("iconpickerSetSourceValue", { + iconpickerValue: a + }); + } + return a; + }, + getSourceValue: function(a) { + a = a || this.options.defaultValue; + var b = a; + if (this.hasInput()) { + b = this.input.val(); + } else { + b = this.element.data("iconpickerValue"); + } + if (b === undefined || b === "" || b === null || b === false) { + b = a; + } + return b; + }, + hasInput: function() { + return this.input !== false; + }, + isInputSearch: function() { + return this.hasInput() && this.options.inputSearch === true; + }, + isInputGroup: function() { + return this.container.is(".input-group"); + }, + isDropdownMenu: function() { + return this.container.is(".dropdown-menu"); + }, + hasSeparatedSearchInput: function() { + return this.options.templates.search !== false && !this.isInputSearch(); + }, + hasComponent: function() { + return this.component !== false; + }, + hasContainer: function() { + return this.container !== false; + }, + getAcceptButton: function() { + return this.popover.find(".iconpicker-btn-accept"); + }, + getCancelButton: function() { + return this.popover.find(".iconpicker-btn-cancel"); + }, + getSearchInput: function() { + return this.popover.find(".iconpicker-search"); + }, + filter: function(c) { + if (b.isEmpty(c)) { + this.iconpicker.find(".iconpicker-item").show(); + return a(false); + } else { + var d = []; + this.iconpicker.find(".iconpicker-item").each(function() { + var b = a(this); + var e = b.attr("title").toLowerCase(); + var f = b.attr("data-search-terms") ? b.attr("data-search-terms").toLowerCase() : ""; + e = e + " " + f; + var g = false; + try { + g = new RegExp("(^|\\W)" + c, "g"); + } catch (a) { + g = false; + } + if (g !== false && e.match(g)) { + d.push(b); + b.show(); + } else { + b.hide(); + } + }); + return d; + } + }, + show: function() { + if (this.popover.hasClass("show")) { + return false; + } + a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover), "hide"); + this._trigger("iconpickerShow", { + iconpickerValue: this.iconpickerValue + }); + this.updatePlacement(); + this.popover.addClass("show"); + setTimeout(a.proxy(function() { + this.popover.css("display", this.isInline() ? "" : "block"); + this._trigger("iconpickerShown", { + iconpickerValue: this.iconpickerValue + }); + }, this), this.options.animation ? 300 : 1); + }, + hide: function() { + if (!this.popover.hasClass("show")) { + return false; + } + this._trigger("iconpickerHide", { + iconpickerValue: this.iconpickerValue + }); + this.popover.removeClass("show"); + setTimeout(a.proxy(function() { + this.popover.css("display", "none"); + this.getSearchInput().val(""); + this.filter(""); + this._trigger("iconpickerHidden", { + iconpickerValue: this.iconpickerValue + }); + }, this), this.options.animation ? 300 : 1); + }, + toggle: function() { + if (this.popover.is(":visible")) { + this.hide(); + } else { + this.show(true); + } + }, + update: function(a, b) { + a = a ? a : this.getSourceValue(this.iconpickerValue); + this._trigger("iconpickerUpdate", { + iconpickerValue: this.iconpickerValue + }); + if (b === true) { + a = this.setValue(a); + } else { + a = this.setSourceValue(a); + this._updateFormGroupStatus(a !== false); + } + //if (a !== false) { + this._updateComponents(); + // } + this._trigger("iconpickerUpdated", { + iconpickerValue: this.iconpickerValue + }); + return a; + }, + destroy: function() { + this._trigger("iconpickerDestroy", { + iconpickerValue: this.iconpickerValue + }); + this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element"); + this._unbindElementEvents(); + this._unbindWindowEvents(); + a(this.popover).remove(); + this._trigger("iconpickerDestroyed", { + iconpickerValue: this.iconpickerValue + }); + }, + disable: function() { + if (this.hasInput()) { + this.input.prop("disabled", true); + return true; + } + return false; + }, + enable: function() { + if (this.hasInput()) { + this.input.prop("disabled", false); + return true; + } + return false; + }, + isDisabled: function() { + if (this.hasInput()) { + return this.input.prop("disabled") === true; + } + return false; + }, + isInline: function() { + return this.options.placement === "inline" || this.popover.hasClass("inline"); + } + }; + a.iconpicker = c; + a.fn.iconpicker = function(b) { + return this.each(function() { + var d = a(this); + if (!d.data("iconpicker")) { + d.data("iconpicker", new c(this, typeof b === "object" ? b : {})); + } + }); + }; + c.defaultOptions = a.extend(c.defaultOptions, { + icons: + + [{"title":"fa-solid fa-0","searchTerms":["Digit Zero","nada","none","zero","zilch"]},{"title":"fa-solid fa-1","searchTerms":["Digit One","one"]},{"title":"fa-solid fa-2","searchTerms":["Digit Two","two"]},{"title":"fa-solid fa-3","searchTerms":["Digit Three","three"]},{"title":"fa-solid fa-4","searchTerms":["Digit Four","four"]},{"title":"fa-solid fa-5","searchTerms":["Digit Five","five"]},{"title":"fa-solid fa-6","searchTerms":["Digit Six","six"]},{"title":"fa-solid fa-7","searchTerms":["Digit Seven","seven"]},{"title":"fa-solid fa-8","searchTerms":["Digit Eight","eight"]},{"title":"fa-solid fa-9","searchTerms":["Digit Nine","nine"]},{"title":"fa-brands fa-42-group","searchTerms":[]},{"title":"fa-brands fa-500px","searchTerms":[]},{"title":"fa-solid fa-a","searchTerms":["Latin Capital Letter A","Latin Small Letter A","letter"]},{"title":"fa-brands fa-accessible-icon","searchTerms":["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{"title":"fa-brands fa-accusoft","searchTerms":[]},{"title":"fa-solid fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"fa-regular fa-address-book","searchTerms":["contact","directory","index","little black book","rolodex"]},{"title":"fa-solid fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile","registration"]},{"title":"fa-regular fa-address-card","searchTerms":["about","contact","id","identification","postcard","profile","registration"]},{"title":"fa-brands fa-adn","searchTerms":[]},{"title":"fa-brands fa-adversal","searchTerms":[]},{"title":"fa-brands fa-affiliatetheme","searchTerms":[]},{"title":"fa-brands fa-airbnb","searchTerms":[]},{"title":"fa-brands fa-algolia","searchTerms":[]},{"title":"fa-solid fa-align-center","searchTerms":["format","middle","paragraph","text"]},{"title":"fa-solid fa-align-justify","searchTerms":["format","paragraph","text"]},{"title":"fa-solid fa-align-left","searchTerms":["format","paragraph","text"]},{"title":"fa-solid fa-align-right","searchTerms":["format","paragraph","text"]},{"title":"fa-brands fa-alipay","searchTerms":[]},{"title":"fa-brands fa-amazon","searchTerms":[]},{"title":"fa-brands fa-amazon-pay","searchTerms":[]},{"title":"fa-brands fa-amilia","searchTerms":[]},{"title":"fa-solid fa-anchor","searchTerms":["anchor","berth","boat","dock","embed","link","maritime","moor","port","secure","ship","tool"]},{"title":"fa-solid fa-anchor-circle-check","searchTerms":["marina","not affected","ok","okay","port"]},{"title":"fa-solid fa-anchor-circle-exclamation","searchTerms":["affected","marina","port"]},{"title":"fa-solid fa-anchor-circle-xmark","searchTerms":["destroy","marina","port"]},{"title":"fa-solid fa-anchor-lock","searchTerms":["closed","lockdown","marina","port","quarantine"]},{"title":"fa-brands fa-android","searchTerms":["robot"]},{"title":"fa-brands fa-angellist","searchTerms":[]},{"title":"fa-solid fa-angle-down","searchTerms":["Down Arrowhead","arrow","caret","download","expand"]},{"title":"fa-solid fa-angle-left","searchTerms":["Single Left-Pointing Angle Quotation Mark","arrow","back","caret","less","previous"]},{"title":"fa-solid fa-angle-right","searchTerms":["Single Right-Pointing Angle Quotation Mark","arrow","care","forward","more","next"]},{"title":"fa-solid fa-angle-up","searchTerms":["Up Arrowhead","arrow","caret","collapse","upload"]},{"title":"fa-solid fa-angles-down","searchTerms":["arrows","caret","download","expand"]},{"title":"fa-solid fa-angles-left","searchTerms":["Left-Pointing Double Angle Quotation Mark","arrows","back","caret","laquo","previous","quote"]},{"title":"fa-solid fa-angles-right","searchTerms":["Right-Pointing Double Angle Quotation Mark","arrows","caret","forward","more","next","quote","raquo"]},{"title":"fa-solid fa-angles-up","searchTerms":["arrows","caret","collapse","upload"]},{"title":"fa-brands fa-angrycreative","searchTerms":[]},{"title":"fa-brands fa-angular","searchTerms":[]},{"title":"fa-solid fa-ankh","searchTerms":["Ankh","amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{"title":"fa-brands fa-app-store","searchTerms":[]},{"title":"fa-brands fa-app-store-ios","searchTerms":[]},{"title":"fa-brands fa-apper","searchTerms":[]},{"title":"fa-brands fa-apple","searchTerms":["fruit","ios","mac","operating system","os","osx"]},{"title":"fa-brands fa-apple-pay","searchTerms":[]},{"title":"fa-solid fa-apple-whole","searchTerms":["apple","fall","fruit","fuji","green","green apple","macintosh","orchard","red","red apple","seasonal","vegan"]},{"title":"fa-solid fa-archway","searchTerms":["arc","monument","road","street","tunnel"]},{"title":"fa-solid fa-arrow-down","searchTerms":["Downwards Arrow","download"]},{"title":"fa-solid fa-arrow-down-1-9","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fa-solid fa-arrow-down-9-1","searchTerms":["arrange","filter","numbers","order","sort-numeric-asc"]},{"title":"fa-solid fa-arrow-down-a-z","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fa-solid fa-arrow-down-long","searchTerms":["download","long-arrow-down"]},{"title":"fa-solid fa-arrow-down-short-wide","searchTerms":["arrange","filter","order","sort-amount-asc"]},{"title":"fa-solid fa-arrow-down-up-across-line","searchTerms":["border","crossing","transfer"]},{"title":"fa-solid fa-arrow-down-up-lock","searchTerms":["border","closed","crossing","lockdown","quarantine","transfer"]},{"title":"fa-solid fa-arrow-down-wide-short","searchTerms":["arrange","filter","number","order","sort-amount-asc"]},{"title":"fa-solid fa-arrow-down-z-a","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-asc"]},{"title":"fa-solid fa-arrow-left","searchTerms":["Leftwards Arrow","back","previous"]},{"title":"fa-solid fa-arrow-left-long","searchTerms":["back","long-arrow-left","previous"]},{"title":"fa-solid fa-arrow-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fa-solid fa-arrow-right","searchTerms":["Rightwards Arrow","forward","next"]},{"title":"fa-solid fa-arrow-right-arrow-left","searchTerms":["Rightwards Arrow Over Leftwards Arrow","arrow","arrows","reciprocate","return","swap","transfer"]},{"title":"fa-solid fa-arrow-right-from-bracket","searchTerms":["arrow","exit","leave","log out","logout"]},{"title":"fa-solid fa-arrow-right-long","searchTerms":["forward","long-arrow-right","next"]},{"title":"fa-solid fa-arrow-right-to-bracket","searchTerms":["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{"title":"fa-solid fa-arrow-right-to-city","searchTerms":["building","city","exodus","rural","urban"]},{"title":"fa-solid fa-arrow-rotate-left","searchTerms":["Anticlockwise Open Circle Arrow","back","control z","exchange","oops","return","rotate","swap"]},{"title":"fa-solid fa-arrow-rotate-right","searchTerms":["Clockwise Open Circle Arrow","forward","refresh","reload","repeat"]},{"title":"fa-solid fa-arrow-trend-down","searchTerms":["line","stocks","trend"]},{"title":"fa-solid fa-arrow-trend-up","searchTerms":["line","stocks","trend"]},{"title":"fa-solid fa-arrow-turn-down","searchTerms":["arrow"]},{"title":"fa-solid fa-arrow-turn-up","searchTerms":["arrow"]},{"title":"fa-solid fa-arrow-up","searchTerms":["Upwards Arrow","forward","upload"]},{"title":"fa-solid fa-arrow-up-1-9","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fa-solid fa-arrow-up-9-1","searchTerms":["arrange","filter","numbers","order","sort-numeric-desc"]},{"title":"fa-solid fa-arrow-up-a-z","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fa-solid fa-arrow-up-from-bracket","searchTerms":["share","transfer","upload"]},{"title":"fa-solid fa-arrow-up-from-ground-water","searchTerms":["groundwater","spring","water supply","water table"]},{"title":"fa-solid fa-arrow-up-from-water-pump","searchTerms":["flood","groundwater","pump","submersible","sump pump"]},{"title":"fa-solid fa-arrow-up-long","searchTerms":["long-arrow-up","upload"]},{"title":"fa-solid fa-arrow-up-right-dots","searchTerms":["growth","increase","population"]},{"title":"fa-solid fa-arrow-up-right-from-square","searchTerms":["new","open","send","share"]},{"title":"fa-solid fa-arrow-up-short-wide","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fa-solid fa-arrow-up-wide-short","searchTerms":["arrange","filter","order","sort-amount-desc"]},{"title":"fa-solid fa-arrow-up-z-a","searchTerms":["alphabetical","arrange","filter","order","sort-alpha-desc"]},{"title":"fa-solid fa-arrows-down-to-line","searchTerms":["scale down","sink"]},{"title":"fa-solid fa-arrows-down-to-people","searchTerms":["affected","focus","targeted"]},{"title":"fa-solid fa-arrows-left-right","searchTerms":["expand","horizontal","landscape","resize","wide"]},{"title":"fa-solid fa-arrows-left-right-to-line","searchTerms":["analysis","expand","gap"]},{"title":"fa-solid fa-arrows-rotate","searchTerms":["Clockwise Right and Left Semicircle Arrows","exchange","refresh","reload","rotate","swap"]},{"title":"fa-solid fa-arrows-spin","searchTerms":["cycle","rotate","spin","whirl"]},{"title":"fa-solid fa-arrows-split-up-and-left","searchTerms":["agile","split"]},{"title":"fa-solid fa-arrows-to-circle","searchTerms":["center","concentrate","coordinate","coordination","focal point","focus"]},{"title":"fa-solid fa-arrows-to-dot","searchTerms":["assembly point","center","condense","focus","minimize"]},{"title":"fa-solid fa-arrows-to-eye","searchTerms":["center","coordinated assessment","focus"]},{"title":"fa-solid fa-arrows-turn-right","searchTerms":["arrows"]},{"title":"fa-solid fa-arrows-turn-to-dots","searchTerms":["destination","nexus"]},{"title":"fa-solid fa-arrows-up-down","searchTerms":["expand","portrait","resize","tall","vertical"]},{"title":"fa-solid fa-arrows-up-down-left-right","searchTerms":["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{"title":"fa-solid fa-arrows-up-to-line","searchTerms":["rise","scale up"]},{"title":"fa-brands fa-artstation","searchTerms":[]},{"title":"fa-solid fa-asterisk","searchTerms":["Asterisk","Heavy Asterisk","annotation","details","reference","star"]},{"title":"fa-brands fa-asymmetrik","searchTerms":[]},{"title":"fa-solid fa-at","searchTerms":["Commercial At","address","author","e-mail","email","fluctuate","handle"]},{"title":"fa-brands fa-atlassian","searchTerms":[]},{"title":"fa-solid fa-atom","searchTerms":["atheism","atheist","atom","atom symbol","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{"title":"fa-brands fa-audible","searchTerms":[]},{"title":"fa-solid fa-audio-description","searchTerms":["blind","narration","video","visual"]},{"title":"fa-solid fa-austral-sign","searchTerms":["Austral Sign","currency"]},{"title":"fa-brands fa-autoprefixer","searchTerms":[]},{"title":"fa-brands fa-avianex","searchTerms":[]},{"title":"fa-brands fa-aviato","searchTerms":[]},{"title":"fa-solid fa-award","searchTerms":["honor","praise","prize","recognition","ribbon","trophy"]},{"title":"fa-brands fa-aws","searchTerms":[]},{"title":"fa-solid fa-b","searchTerms":["Latin Capital Letter B","Latin Small Letter B","letter"]},{"title":"fa-solid fa-baby","searchTerms":["users-people"]},{"title":"fa-solid fa-baby-carriage","searchTerms":["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{"title":"fa-solid fa-backward","searchTerms":["arrow","double","fast reverse button","previous","rewind"]},{"title":"fa-solid fa-backward-fast","searchTerms":["arrow","beginning","first","last track button","previous","previous scene","previous track","rewind","start","triangle"]},{"title":"fa-solid fa-backward-step","searchTerms":["beginning","first","previous","rewind","start"]},{"title":"fa-solid fa-bacon","searchTerms":["bacon","blt","breakfast","food","ham","lard","meat","pancetta","pork","rasher"]},{"title":"fa-solid fa-bacteria","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fa-solid fa-bacterium","searchTerms":["antibiotic","antibody","covid-19","health","organism","sick"]},{"title":"fa-solid fa-bag-shopping","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fa-solid fa-bahai","searchTerms":["bahai","bah\u00e1'\u00ed","star"]},{"title":"fa-solid fa-baht-sign","searchTerms":["currency"]},{"title":"fa-solid fa-ban","searchTerms":["abort","ban","block","cancel","delete","entry","forbidden","hide","no","not","prohibit","prohibited","remove","stop","trash"]},{"title":"fa-solid fa-ban-smoking","searchTerms":["ban","cancel","forbidden","no","no smoking","non-smoking","not","prohibited","smoking"]},{"title":"fa-solid fa-bandage","searchTerms":["adhesive bandage","bandage","boo boo","first aid","ouch"]},{"title":"fa-brands fa-bandcamp","searchTerms":[]},{"title":"fa-solid fa-bangladeshi-taka-sign","searchTerms":["bdt","currency","tk"]},{"title":"fa-solid fa-barcode","searchTerms":["info","laser","price","scan","upc"]},{"title":"fa-solid fa-bars","searchTerms":["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{"title":"fa-solid fa-bars-progress","searchTerms":["checklist","downloading","downloads","loading","poll","progress","project management","settings","to do"]},{"title":"fa-solid fa-bars-staggered","searchTerms":["flow","list","timeline"]},{"title":"fa-solid fa-baseball","searchTerms":["ball","baseball","foul","glove","hardball","league","leather","mlb","softball","sport","underarm"]},{"title":"fa-solid fa-baseball-bat-ball","searchTerms":["bat","league","mlb","slugger","softball","sport"]},{"title":"fa-solid fa-basket-shopping","searchTerms":["buy","checkout","grocery","payment","purchase"]},{"title":"fa-solid fa-basketball","searchTerms":["ball","basketball","dribble","dunk","hoop","nba"]},{"title":"fa-solid fa-bath","searchTerms":["bath","bathtub","clean","shower","tub","wash"]},{"title":"fa-solid fa-battery-empty","searchTerms":["charge","dead","power","status"]},{"title":"fa-solid fa-battery-full","searchTerms":["batter","battery","charge","power","status"]},{"title":"fa-solid fa-battery-half","searchTerms":["charge","power","status"]},{"title":"fa-solid fa-battery-quarter","searchTerms":["charge","low","power","status"]},{"title":"fa-solid fa-battery-three-quarters","searchTerms":["charge","power","status"]},{"title":"fa-brands fa-battle-net","searchTerms":[]},{"title":"fa-solid fa-bed","searchTerms":["hospital","hotel","lodging","mattress","patient","person in bed","rest","sleep","travel"]},{"title":"fa-solid fa-bed-pulse","searchTerms":["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{"title":"fa-solid fa-beer-mug-empty","searchTerms":["alcohol","ale","bar","beverage","brew","brewery","drink","foam","lager","liquor","mug","stein"]},{"title":"fa-brands fa-behance","searchTerms":[]},{"title":"fa-solid fa-bell","searchTerms":["alarm","alert","bel","bell","chime","notification","reminder"]},{"title":"fa-regular fa-bell","searchTerms":["alarm","alert","bel","bell","chime","notification","reminder"]},{"title":"fa-solid fa-bell-concierge","searchTerms":["attention","bell","bellhop","bellhop bell","hotel","receptionist","service","support"]},{"title":"fa-solid fa-bell-slash","searchTerms":["alert","bell","bell with slash","cancel","disabled","forbidden","mute","notification","off","quiet","reminder","silent"]},{"title":"fa-regular fa-bell-slash","searchTerms":["alert","bell","bell with slash","cancel","disabled","forbidden","mute","notification","off","quiet","reminder","silent"]},{"title":"fa-solid fa-bezier-curve","searchTerms":["curves","illustrator","lines","path","vector"]},{"title":"fa-solid fa-bicycle","searchTerms":["bicycle","bike","gears","pedal","transportation","vehicle"]},{"title":"fa-brands fa-bilibili","searchTerms":[]},{"title":"fa-brands fa-bimobject","searchTerms":[]},{"title":"fa-solid fa-binoculars","searchTerms":["glasses","magnify","scenic","spyglass","view"]},{"title":"fa-solid fa-biohazard","searchTerms":["biohazard","covid-19","danger","dangerous","epidemic","hazmat","medical","pandemic","radioactive","sign","toxic","waste","zombie"]},{"title":"fa-brands fa-bitbucket","searchTerms":["atlassian","bitbucket-square","git"]},{"title":"fa-brands fa-bitcoin","searchTerms":[]},{"title":"fa-solid fa-bitcoin-sign","searchTerms":["Bitcoin Sign","currency"]},{"title":"fa-brands fa-bity","searchTerms":[]},{"title":"fa-brands fa-black-tie","searchTerms":[]},{"title":"fa-brands fa-blackberry","searchTerms":[]},{"title":"fa-solid fa-blender","searchTerms":["cocktail","milkshake","mixer","puree","smoothie"]},{"title":"fa-solid fa-blender-phone","searchTerms":["appliance","cocktail","fantasy","milkshake","mixer","puree","silly","smoothie"]},{"title":"fa-solid fa-blog","searchTerms":["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{"title":"fa-brands fa-blogger","searchTerms":[]},{"title":"fa-brands fa-blogger-b","searchTerms":[]},{"title":"fa-brands fa-bluetooth","searchTerms":["signal"]},{"title":"fa-brands fa-bluetooth-b","searchTerms":[]},{"title":"fa-solid fa-bold","searchTerms":["emphasis","format","text"]},{"title":"fa-solid fa-bolt","searchTerms":["charge","danger","electric","electricity","flash","high voltage","lightning","voltage","weather","zap"]},{"title":"fa-solid fa-bolt-lightning","searchTerms":["electricity","flash","lightning","weather","zap"]},{"title":"fa-solid fa-bomb","searchTerms":["bomb","comic","error","explode","fuse","grenade","warning"]},{"title":"fa-solid fa-bone","searchTerms":["bone","calcium","dog","skeletal","skeleton","tibia"]},{"title":"fa-solid fa-bong","searchTerms":["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{"title":"fa-solid fa-book","searchTerms":["book","cover","decorated","diary","documentation","journal","library","notebook","notebook with decorative cover","read","research"]},{"title":"fa-solid fa-book-atlas","searchTerms":["book","directions","geography","globe","library","map","research","travel","wayfinding"]},{"title":"fa-solid fa-book-bible","searchTerms":["book","catholicism","christianity","god","holy"]},{"title":"fa-solid fa-book-bookmark","searchTerms":["library","research"]},{"title":"fa-solid fa-book-journal-whills","searchTerms":["book","force","jedi","sith","star wars","yoda"]},{"title":"fa-solid fa-book-medical","searchTerms":["diary","documentation","health","history","journal","library","read","record","research"]},{"title":"fa-solid fa-book-open","searchTerms":["Book","book","flyer","library","notebook","open","open book","pamphlet","reading","research"]},{"title":"fa-solid fa-book-open-reader","searchTerms":["flyer","library","notebook","open book","pamphlet","reading","research"]},{"title":"fa-solid fa-book-quran","searchTerms":["book","islam","muslim","religion"]},{"title":"fa-solid fa-book-skull","searchTerms":["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","library","necronomicon","read","research","skull","spell"]},{"title":"fa-solid fa-book-tanakh","searchTerms":["book","jewish","judaism","religion"]},{"title":"fa-solid fa-bookmark","searchTerms":["bookmark","favorite","library","mark","marker","read","remember","research","save"]},{"title":"fa-regular fa-bookmark","searchTerms":["bookmark","favorite","library","mark","marker","read","remember","research","save"]},{"title":"fa-brands fa-bootstrap","searchTerms":[]},{"title":"fa-solid fa-border-all","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fa-solid fa-border-none","searchTerms":["cell","grid","outline","stroke","table"]},{"title":"fa-solid fa-border-top-left","searchTerms":["cell","outline","stroke","table"]},{"title":"fa-solid fa-bore-hole","searchTerms":["bore","bury","drill","hole"]},{"title":"fa-brands fa-bots","searchTerms":[]},{"title":"fa-solid fa-bottle-droplet","searchTerms":["alcohol","drink","oil","olive oil","wine"]},{"title":"fa-solid fa-bottle-water","searchTerms":["h2o","plastic","water"]},{"title":"fa-solid fa-bowl-food","searchTerms":["catfood","dogfood","food","rice"]},{"title":"fa-solid fa-bowl-rice","searchTerms":["boiled","cooked","cooked rice","rice","steamed"]},{"title":"fa-solid fa-bowling-ball","searchTerms":["alley","candlepin","gutter","lane","strike","tenpin"]},{"title":"fa-solid fa-box","searchTerms":["archive","box","container","package","parcel","storage"]},{"title":"fa-solid fa-box-archive","searchTerms":["box","package","save","storage"]},{"title":"fa-solid fa-box-open","searchTerms":["archive","container","package","storage","unpack"]},{"title":"fa-solid fa-box-tissue","searchTerms":["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{"title":"fa-solid fa-boxes-packing","searchTerms":["archive","box","package","storage","supplies"]},{"title":"fa-solid fa-boxes-stacked","searchTerms":["archives","inventory","storage","warehouse"]},{"title":"fa-solid fa-braille","searchTerms":["alphabet","blind","dots","raised","vision"]},{"title":"fa-solid fa-brain","searchTerms":["brain","cerebellum","gray matter","intellect","intelligent","medulla oblongata","mind","noodle","wit"]},{"title":"fa-solid fa-brazilian-real-sign","searchTerms":["brazilian real sign","currency"]},{"title":"fa-solid fa-bread-slice","searchTerms":["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{"title":"fa-solid fa-bridge","searchTerms":["bridge","road"]},{"title":"fa-solid fa-bridge-circle-check","searchTerms":["bridge","not affected","ok","okay","road"]},{"title":"fa-solid fa-bridge-circle-exclamation","searchTerms":["affected","bridge","road"]},{"title":"fa-solid fa-bridge-circle-xmark","searchTerms":["bridge","destroy","road"]},{"title":"fa-solid fa-bridge-lock","searchTerms":["bridge","closed","lockdown","quarantine","road"]},{"title":"fa-solid fa-bridge-water","searchTerms":["bridge","road"]},{"title":"fa-solid fa-briefcase","searchTerms":["bag","briefcas","briefcase","business","luggage","office","work"]},{"title":"fa-solid fa-briefcase-medical","searchTerms":["doctor","emt","first aid","health"]},{"title":"fa-solid fa-broom","searchTerms":["broom","clean","cleaning","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","sweeping","witch"]},{"title":"fa-solid fa-broom-ball","searchTerms":["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{"title":"fa-solid fa-brush","searchTerms":["art","bristles","color","handle","paint"]},{"title":"fa-brands fa-btc","searchTerms":[]},{"title":"fa-solid fa-bucket","searchTerms":["bucket","pail","sandcastle"]},{"title":"fa-brands fa-buffer","searchTerms":[]},{"title":"fa-solid fa-bug","searchTerms":["beetle","error","glitch","insect","repair","report"]},{"title":"fa-solid fa-bug-slash","searchTerms":["beetle","fix","glitch","insect","optimize","repair","report","warning"]},{"title":"fa-solid fa-bugs","searchTerms":["bedbug","infestation","lice","plague","ticks"]},{"title":"fa-solid fa-building","searchTerms":["apartment","building","business","city","company","office","office building","urban","work"]},{"title":"fa-regular fa-building","searchTerms":["apartment","building","business","city","company","office","office building","urban","work"]},{"title":"fa-solid fa-building-circle-arrow-right","searchTerms":["building","city","distribution center","office"]},{"title":"fa-solid fa-building-circle-check","searchTerms":["building","city","not affected","office","ok","okay"]},{"title":"fa-solid fa-building-circle-exclamation","searchTerms":["affected","building","city","office"]},{"title":"fa-solid fa-building-circle-xmark","searchTerms":["building","city","destroy","office"]},{"title":"fa-solid fa-building-columns","searchTerms":["bank","building","college","education","institution","museum","students"]},{"title":"fa-solid fa-building-flag","searchTerms":[" city","building","diplomat","embassy","flag","headquarters","united nations"]},{"title":"fa-solid fa-building-lock","searchTerms":["building","city","closed","lock","lockdown","quarantine","secure"]},{"title":"fa-solid fa-building-ngo","searchTerms":[" city","building","non governmental organization","office"]},{"title":"fa-solid fa-building-shield","searchTerms":["building","city","police","protect","safety"]},{"title":"fa-solid fa-building-un","searchTerms":["building","city","office","united nations"]},{"title":"fa-solid fa-building-user","searchTerms":["apartment","building","city"]},{"title":"fa-solid fa-building-wheat","searchTerms":["agriculture","building","city","usda"]},{"title":"fa-solid fa-bullhorn","searchTerms":["Bullhorn","announcement","broadcast","loud","louder","loudspeaker","megaphone","public address","share"]},{"title":"fa-solid fa-bullseye","searchTerms":["archery","goal","objective","strategy","target"]},{"title":"fa-solid fa-burger","searchTerms":["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{"title":"fa-brands fa-buromobelexperte","searchTerms":[]},{"title":"fa-solid fa-burst","searchTerms":["boom","crash","explosion"]},{"title":"fa-solid fa-bus","searchTerms":["bus","oncoming","oncoming bus","public transportation","transportation","travel","vehicle"]},{"title":"fa-solid fa-bus-simple","searchTerms":["mta","public transportation","transportation","travel","vehicle"]},{"title":"fa-solid fa-business-time","searchTerms":["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{"title":"fa-brands fa-buy-n-large","searchTerms":[]},{"title":"fa-brands fa-buysellads","searchTerms":[]},{"title":"fa-solid fa-c","searchTerms":["Latin Capital Letter C","Latin Small Letter C","letter"]},{"title":"fa-solid fa-cable-car","searchTerms":["aerial tramway","cable","gondola","lift","mountain","mountain cableway","tram","tramway","trolley"]},{"title":"fa-solid fa-cake-candles","searchTerms":["anniversary","bakery","birthday","birthday cake","cake","candles","celebration","dessert","frosting","holiday","party","pastry","sweet"]},{"title":"fa-solid fa-calculator","searchTerms":["Pocket Calculator","abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{"title":"fa-solid fa-calendar","searchTerms":["calendar","calendar-o","date","day","event","month","schedule","tear-off calendar","time","when","year"]},{"title":"fa-regular fa-calendar","searchTerms":["calendar","calendar-o","date","day","event","month","schedule","tear-off calendar","time","when","year"]},{"title":"fa-solid fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","day","done","event","month","ok","schedule","select","success","tick","time","todo","when","year"]},{"title":"fa-regular fa-calendar-check","searchTerms":["accept","agree","appointment","confirm","correct","date","day","done","event","month","ok","schedule","select","success","tick","time","todo","when","year"]},{"title":"fa-solid fa-calendar-day","searchTerms":["date","day","detail","event","focus","month","schedule","single day","time","today","when","year"]},{"title":"fa-solid fa-calendar-days","searchTerms":["calendar","date","day","event","month","schedule","time","when","year"]},{"title":"fa-regular fa-calendar-days","searchTerms":["calendar","date","day","event","month","schedule","time","when","year"]},{"title":"fa-solid fa-calendar-minus","searchTerms":["calendar","date","day","delete","event","month","negative","remove","schedule","time","when","year"]},{"title":"fa-regular fa-calendar-minus","searchTerms":["calendar","date","day","delete","event","month","negative","remove","schedule","time","when","year"]},{"title":"fa-solid fa-calendar-plus","searchTerms":["add","calendar","create","date","day","event","month","new","positive","schedule","time","when","year"]},{"title":"fa-regular fa-calendar-plus","searchTerms":["add","calendar","create","date","day","event","month","new","positive","schedule","time","when","year"]},{"title":"fa-solid fa-calendar-week","searchTerms":["date","day","detail","event","focus","month","schedule","single week","time","today","when","year"]},{"title":"fa-solid fa-calendar-xmark","searchTerms":["archive","calendar","date","day","delete","event","month","remove","schedule","time","when","x","year"]},{"title":"fa-regular fa-calendar-xmark","searchTerms":["archive","calendar","date","day","delete","event","month","remove","schedule","time","when","x","year"]},{"title":"fa-solid fa-camera","searchTerms":["image","lens","photo","picture","record","shutter","video"]},{"title":"fa-solid fa-camera-retro","searchTerms":["camera","image","lens","photo","picture","record","shutter","video"]},{"title":"fa-solid fa-camera-rotate","searchTerms":["flip","front-facing","photo","selfie"]},{"title":"fa-solid fa-campground","searchTerms":["camping","fall","outdoors","teepee","tent","tipi"]},{"title":"fa-brands fa-canadian-maple-leaf","searchTerms":["canada","flag","flora","nature","plant"]},{"title":"fa-solid fa-candy-cane","searchTerms":["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{"title":"fa-solid fa-cannabis","searchTerms":["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{"title":"fa-solid fa-capsules","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fa-solid fa-car","searchTerms":["auto","automobile","car","oncoming","oncoming automobile","sedan","transportation","travel","vehicle"]},{"title":"fa-solid fa-car-battery","searchTerms":["auto","electric","mechanic","power"]},{"title":"fa-solid fa-car-burst","searchTerms":["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{"title":"fa-solid fa-car-on","searchTerms":["alarm","car","carjack","warning"]},{"title":"fa-solid fa-car-rear","searchTerms":["auto","automobile","sedan","transportation","travel","vehicle"]},{"title":"fa-solid fa-car-side","searchTerms":["auto","automobile","car","sedan","transportation","travel","vehicle"]},{"title":"fa-solid fa-car-tunnel","searchTerms":["road","tunnel"]},{"title":"fa-solid fa-caravan","searchTerms":["camper","motor home","rv","trailer","travel"]},{"title":"fa-solid fa-caret-down","searchTerms":["arrow","dropdown","expand","menu","more","triangle"]},{"title":"fa-solid fa-caret-left","searchTerms":["arrow","back","previous","triangle"]},{"title":"fa-solid fa-caret-right","searchTerms":["arrow","forward","next","triangle"]},{"title":"fa-solid fa-caret-up","searchTerms":["arrow","collapse","triangle"]},{"title":"fa-solid fa-carrot","searchTerms":["bugs bunny","carrot","food","orange","vegan","vegetable"]},{"title":"fa-solid fa-cart-arrow-down","searchTerms":["download","save","shopping"]},{"title":"fa-solid fa-cart-flatbed","searchTerms":["carry","inventory","shipping","transport"]},{"title":"fa-solid fa-cart-flatbed-suitcase","searchTerms":["airport","bag","baggage","suitcase","travel"]},{"title":"fa-solid fa-cart-plus","searchTerms":["add","create","new","positive","shopping"]},{"title":"fa-solid fa-cart-shopping","searchTerms":["buy","cart","checkout","grocery","payment","purchase","shopping","shopping cart","trolley"]},{"title":"fa-solid fa-cash-register","searchTerms":["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{"title":"fa-solid fa-cat","searchTerms":["cat","feline","halloween","holiday","kitten","kitty","meow","pet"]},{"title":"fa-brands fa-cc-amazon-pay","searchTerms":[]},{"title":"fa-brands fa-cc-amex","searchTerms":["amex"]},{"title":"fa-brands fa-cc-apple-pay","searchTerms":[]},{"title":"fa-brands fa-cc-diners-club","searchTerms":[]},{"title":"fa-brands fa-cc-discover","searchTerms":[]},{"title":"fa-brands fa-cc-jcb","searchTerms":[]},{"title":"fa-brands fa-cc-mastercard","searchTerms":[]},{"title":"fa-brands fa-cc-paypal","searchTerms":[]},{"title":"fa-brands fa-cc-stripe","searchTerms":[]},{"title":"fa-brands fa-cc-visa","searchTerms":[]},{"title":"fa-solid fa-cedi-sign","searchTerms":["Cedi Sign","currency"]},{"title":"fa-solid fa-cent-sign","searchTerms":["Cent Sign","currency"]},{"title":"fa-brands fa-centercode","searchTerms":[]},{"title":"fa-brands fa-centos","searchTerms":["linux","operating system","os"]},{"title":"fa-solid fa-certificate","searchTerms":["badge","star","verified"]},{"title":"fa-solid fa-chair","searchTerms":["chair","furniture","seat","sit"]},{"title":"fa-solid fa-chalkboard","searchTerms":["blackboard","learning","school","teaching","whiteboard","writing"]},{"title":"fa-solid fa-chalkboard-user","searchTerms":["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{"title":"fa-solid fa-champagne-glasses","searchTerms":["alcohol","bar","beverage","celebrate","celebration","champagne","clink","clinking glasses","drink","glass","holiday","new year's eve","party","toast"]},{"title":"fa-solid fa-charging-station","searchTerms":["electric","ev","tesla","vehicle"]},{"title":"fa-solid fa-chart-area","searchTerms":["analytics","area","chart","graph"]},{"title":"fa-solid fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"fa-regular fa-chart-bar","searchTerms":["analytics","bar","chart","graph"]},{"title":"fa-solid fa-chart-column","searchTerms":["bar","bar chart","chart","graph","track","trend"]},{"title":"fa-solid fa-chart-gantt","searchTerms":["chart","graph","track","trend"]},{"title":"fa-solid fa-chart-line","searchTerms":["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{"title":"fa-solid fa-chart-pie","searchTerms":["analytics","chart","diagram","graph","pie"]},{"title":"fa-solid fa-chart-simple","searchTerms":["analytics","bar","chart","column","graph","row","trend"]},{"title":"fa-solid fa-check","searchTerms":["Check Mark","accept","agree","check","check mark","checkmark","confirm","correct","done","mark","notice","notification","notify","ok","select","success","tick","todo","yes","\u2713"]},{"title":"fa-solid fa-check-double","searchTerms":["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{"title":"fa-solid fa-check-to-slot","searchTerms":["accept","cast","election","politics","positive","voting","yes"]},{"title":"fa-solid fa-cheese","searchTerms":["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{"title":"fa-solid fa-chess","searchTerms":["board","castle","checkmate","game","king","rook","strategy","tournament"]},{"title":"fa-solid fa-chess-bishop","searchTerms":["Black Chess Bishop","board","checkmate","game","strategy"]},{"title":"fa-regular fa-chess-bishop","searchTerms":["Black Chess Bishop","board","checkmate","game","strategy"]},{"title":"fa-solid fa-chess-board","searchTerms":["board","checkmate","game","strategy"]},{"title":"fa-solid fa-chess-king","searchTerms":["Black Chess King","board","checkmate","game","strategy"]},{"title":"fa-regular fa-chess-king","searchTerms":["Black Chess King","board","checkmate","game","strategy"]},{"title":"fa-solid fa-chess-knight","searchTerms":["Black Chess Knight","board","checkmate","game","horse","strategy"]},{"title":"fa-regular fa-chess-knight","searchTerms":["Black Chess Knight","board","checkmate","game","horse","strategy"]},{"title":"fa-solid fa-chess-pawn","searchTerms":["board","checkmate","chess","chess pawn","dupe","expendable","game","strategy"]},{"title":"fa-regular fa-chess-pawn","searchTerms":["board","checkmate","chess","chess pawn","dupe","expendable","game","strategy"]},{"title":"fa-solid fa-chess-queen","searchTerms":["Black Chess Queen","board","checkmate","game","strategy"]},{"title":"fa-regular fa-chess-queen","searchTerms":["Black Chess Queen","board","checkmate","game","strategy"]},{"title":"fa-solid fa-chess-rook","searchTerms":["Black Chess Rook","board","castle","checkmate","game","strategy"]},{"title":"fa-regular fa-chess-rook","searchTerms":["Black Chess Rook","board","castle","checkmate","game","strategy"]},{"title":"fa-solid fa-chevron-down","searchTerms":["arrow","download","expand"]},{"title":"fa-solid fa-chevron-left","searchTerms":["Left-Pointing Angle Bracket","arrow","back","bracket","previous"]},{"title":"fa-solid fa-chevron-right","searchTerms":["Right-Pointing Angle Bracket","arrow","bracket","forward","next"]},{"title":"fa-solid fa-chevron-up","searchTerms":["arrow","collapse","upload"]},{"title":"fa-solid fa-child","searchTerms":["boy","girl","kid","toddler","young","youth"]},{"title":"fa-solid fa-child-combatant","searchTerms":["combatant"]},{"title":"fa-solid fa-child-dress","searchTerms":["boy","girl","kid","toddler","young","youth"]},{"title":"fa-solid fa-child-reaching","searchTerms":["boy","girl","kid","toddler","young","youth"]},{"title":"fa-solid fa-children","searchTerms":["boy","child","girl","kid","kids","young","youth"]},{"title":"fa-brands fa-chrome","searchTerms":["browser"]},{"title":"fa-brands fa-chromecast","searchTerms":[]},{"title":"fa-solid fa-church","searchTerms":["Christian","building","cathedral","chapel","church","community","cross","religion"]},{"title":"fa-solid fa-circle","searchTerms":["Black Circle","Black Large Circle","black circle","blue","blue circle","brown","brown circle","chart","circle","circle-thin","diameter","dot","ellipse","fill","geometric","green","green circle","notification","orange","orange circle","progress","purple","purple circle","red","red circle","round","white circle","yellow","yellow circle"]},{"title":"fa-regular fa-circle","searchTerms":["Black Circle","Black Large Circle","black circle","blue","blue circle","brown","brown circle","chart","circle","circle-thin","diameter","dot","ellipse","fill","geometric","green","green circle","notification","orange","orange circle","progress","purple","purple circle","red","red circle","round","white circle","yellow","yellow circle"]},{"title":"fa-solid fa-circle-arrow-down","searchTerms":["download"]},{"title":"fa-solid fa-circle-arrow-left","searchTerms":["back","previous"]},{"title":"fa-solid fa-circle-arrow-right","searchTerms":["forward","next"]},{"title":"fa-solid fa-circle-arrow-up","searchTerms":["upload"]},{"title":"fa-solid fa-circle-check","searchTerms":["accept","affected","agree","clear","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fa-regular fa-circle-check","searchTerms":["accept","affected","agree","clear","confirm","correct","done","ok","select","success","tick","todo","yes"]},{"title":"fa-solid fa-circle-chevron-down","searchTerms":["arrow","download","dropdown","menu","more"]},{"title":"fa-solid fa-circle-chevron-left","searchTerms":["arrow","back","previous"]},{"title":"fa-solid fa-circle-chevron-right","searchTerms":["arrow","forward","next"]},{"title":"fa-solid fa-circle-chevron-up","searchTerms":["arrow","collapse","upload"]},{"title":"fa-solid fa-circle-dollar-to-slot","searchTerms":["contribute","generosity","gift","give"]},{"title":"fa-solid fa-circle-dot","searchTerms":["bullseye","button","geometric","notification","radio","radio button","target"]},{"title":"fa-regular fa-circle-dot","searchTerms":["bullseye","button","geometric","notification","radio","radio button","target"]},{"title":"fa-solid fa-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"fa-regular fa-circle-down","searchTerms":["arrow-circle-o-down","download"]},{"title":"fa-solid fa-circle-exclamation","searchTerms":["affect","alert","damage","danger","error","important","notice","notification","notify","problem","warning"]},{"title":"fa-solid fa-circle-h","searchTerms":["Circled Latin Capital Letter H","clinic","covid-19","emergency","letter","map"]},{"title":"fa-solid fa-circle-half-stroke","searchTerms":["Circle with Left Half Black","adjust","chart","contrast","dark","fill","light","pie","progress","saturation"]},{"title":"fa-solid fa-circle-info","searchTerms":["details","help","information","more","support"]},{"title":"fa-solid fa-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"fa-regular fa-circle-left","searchTerms":["arrow-circle-o-left","back","previous"]},{"title":"fa-solid fa-circle-minus","searchTerms":["delete","hide","negative","remove","shape","trash"]},{"title":"fa-solid fa-circle-nodes","searchTerms":["cluster","connect","network"]},{"title":"fa-solid fa-circle-notch","searchTerms":["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{"title":"fa-solid fa-circle-pause","searchTerms":["hold","wait"]},{"title":"fa-regular fa-circle-pause","searchTerms":["hold","wait"]},{"title":"fa-solid fa-circle-play","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fa-regular fa-circle-play","searchTerms":["audio","music","playing","sound","start","video"]},{"title":"fa-solid fa-circle-plus","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fa-solid fa-circle-question","searchTerms":["help","information","support","unknown"]},{"title":"fa-regular fa-circle-question","searchTerms":["help","information","support","unknown"]},{"title":"fa-solid fa-circle-radiation","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","sign","warning"]},{"title":"fa-solid fa-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"fa-regular fa-circle-right","searchTerms":["arrow-circle-o-right","forward","next"]},{"title":"fa-solid fa-circle-stop","searchTerms":["block","box","circle","square"]},{"title":"fa-regular fa-circle-stop","searchTerms":["block","box","circle","square"]},{"title":"fa-solid fa-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"fa-regular fa-circle-up","searchTerms":["arrow-circle-o-up"]},{"title":"fa-solid fa-circle-user","searchTerms":["users-people"]},{"title":"fa-regular fa-circle-user","searchTerms":["users-people"]},{"title":"fa-solid fa-circle-xmark","searchTerms":["close","cross","destroy","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fa-regular fa-circle-xmark","searchTerms":["close","cross","destroy","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{"title":"fa-solid fa-city","searchTerms":["buildings","busy","city","cityscape","skyscrapers","urban","windows"]},{"title":"fa-solid fa-clapperboard","searchTerms":["camera","clapper","clapper board","director","film","movie","record"]},{"title":"fa-solid fa-clipboard","searchTerms":["clipboar","clipboard","copy","notes","paste","record"]},{"title":"fa-regular fa-clipboard","searchTerms":["clipboar","clipboard","copy","notes","paste","record"]},{"title":"fa-solid fa-clipboard-check","searchTerms":["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{"title":"fa-solid fa-clipboard-list","searchTerms":["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{"title":"fa-solid fa-clipboard-question","searchTerms":["assistance","interview","query","question"]},{"title":"fa-solid fa-clipboard-user","searchTerms":["attendance","record","roster","staff"]},{"title":"fa-solid fa-clock","searchTerms":["00","4","4:00","clock","date","four","four o\u2019clock","hour","late","minute","o'clock","o\u2019clock","schedule","ticking","time","timer","timestamp","watch"]},{"title":"fa-regular fa-clock","searchTerms":["00","4","4:00","clock","date","four","four o\u2019clock","hour","late","minute","o'clock","o\u2019clock","schedule","ticking","time","timer","timestamp","watch"]},{"title":"fa-solid fa-clock-rotate-left","searchTerms":["Rewind","clock","reverse","time","time machine","time travel"]},{"title":"fa-solid fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"fa-regular fa-clone","searchTerms":["arrange","copy","duplicate","paste"]},{"title":"fa-solid fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"fa-regular fa-closed-captioning","searchTerms":["cc","deaf","hearing","subtitle","subtitling","text","video"]},{"title":"fa-solid fa-cloud","searchTerms":["atmosphere","cloud","fog","overcast","save","upload","weather"]},{"title":"fa-solid fa-cloud-arrow-down","searchTerms":["download","export","save"]},{"title":"fa-solid fa-cloud-arrow-up","searchTerms":["import","save","upload"]},{"title":"fa-solid fa-cloud-bolt","searchTerms":["bolt","cloud","cloud with lightning","lightning","precipitation","rain","storm","weather"]},{"title":"fa-solid fa-cloud-meatball","searchTerms":["FLDSMDFR","food","spaghetti","storm"]},{"title":"fa-solid fa-cloud-moon","searchTerms":["crescent","evening","lunar","night","partly cloudy","sky"]},{"title":"fa-solid fa-cloud-moon-rain","searchTerms":["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{"title":"fa-solid fa-cloud-rain","searchTerms":["Rain","cloud","cloud with rain","precipitation","rain","sky","storm"]},{"title":"fa-solid fa-cloud-showers-heavy","searchTerms":["precipitation","rain","sky","storm"]},{"title":"fa-solid fa-cloud-showers-water","searchTerms":["cloud","deluge","flood","rain","storm","surge"]},{"title":"fa-solid fa-cloud-sun","searchTerms":["clear","cloud","day","daytime","fall","outdoors","overcast","partly cloudy","sun","sun behind cloud"]},{"title":"fa-solid fa-cloud-sun-rain","searchTerms":["cloud","day","overcast","precipitation","rain","storm","summer","sun","sun behind rain cloud","sunshower"]},{"title":"fa-brands fa-cloudflare","searchTerms":[]},{"title":"fa-brands fa-cloudscale","searchTerms":[]},{"title":"fa-brands fa-cloudsmith","searchTerms":[]},{"title":"fa-brands fa-cloudversify","searchTerms":[]},{"title":"fa-solid fa-clover","searchTerms":["4","charm","clover","four","four leaf clover","four-leaf clover","leaf","leprechaun","luck","lucky"]},{"title":"fa-brands fa-cmplid","searchTerms":[]},{"title":"fa-solid fa-code","searchTerms":["brackets","code","development","html"]},{"title":"fa-solid fa-code-branch","searchTerms":["branch","git","github","rebase","svn","vcs","version"]},{"title":"fa-solid fa-code-commit","searchTerms":["commit","git","github","hash","rebase","svn","vcs","version"]},{"title":"fa-solid fa-code-compare","searchTerms":["compare","git","github","svn","version"]},{"title":"fa-solid fa-code-fork","searchTerms":["fork","git","github","svn","version"]},{"title":"fa-solid fa-code-merge","searchTerms":["git","github","merge","pr","rebase","svn","vcs","version"]},{"title":"fa-solid fa-code-pull-request","searchTerms":["git","github","pr","svn","version"]},{"title":"fa-brands fa-codepen","searchTerms":[]},{"title":"fa-brands fa-codiepie","searchTerms":[]},{"title":"fa-solid fa-coins","searchTerms":["currency","dime","financial","gold","money","penny"]},{"title":"fa-solid fa-colon-sign","searchTerms":["Colon Sign","currency"]},{"title":"fa-solid fa-comment","searchTerms":["Right Speech Bubble","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-regular fa-comment","searchTerms":["Right Speech Bubble","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-solid fa-comment-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fa-solid fa-comment-dots","searchTerms":["balloon","bubble","chat","comic","commenting","conversation","dialog","feedback","message","more","note","notification","reply","sms","speech","speech balloon","texting"]},{"title":"fa-regular fa-comment-dots","searchTerms":["balloon","bubble","chat","comic","commenting","conversation","dialog","feedback","message","more","note","notification","reply","sms","speech","speech balloon","texting"]},{"title":"fa-solid fa-comment-medical","searchTerms":["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{"title":"fa-solid fa-comment-slash","searchTerms":["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{"title":"fa-solid fa-comment-sms","searchTerms":["chat","conversation","message","mobile","notification","phone","sms","texting"]},{"title":"fa-solid fa-comments","searchTerms":["Two Speech Bubbles","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-regular fa-comments","searchTerms":["Two Speech Bubbles","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-solid fa-comments-dollar","searchTerms":["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{"title":"fa-solid fa-compact-disc","searchTerms":["Optical Disc Icon","album","blu-ray","bluray","cd","computer","disc","disk","dvd","media","movie","music","optical","optical disk","record","video","vinyl"]},{"title":"fa-solid fa-compass","searchTerms":["compass","directions","directory","location","magnetic","menu","navigation","orienteering","safari","travel"]},{"title":"fa-regular fa-compass","searchTerms":["compass","directions","directory","location","magnetic","menu","navigation","orienteering","safari","travel"]},{"title":"fa-solid fa-compass-drafting","searchTerms":["design","map","mechanical drawing","plot","plotting"]},{"title":"fa-solid fa-compress","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fa-solid fa-computer","searchTerms":["computer","desktop","display","monitor","tower"]},{"title":"fa-solid fa-computer-mouse","searchTerms":["click","computer","computer mouse","cursor","input","peripheral"]},{"title":"fa-brands fa-confluence","searchTerms":["atlassian"]},{"title":"fa-brands fa-connectdevelop","searchTerms":[]},{"title":"fa-brands fa-contao","searchTerms":[]},{"title":"fa-solid fa-cookie","searchTerms":["baked good","chips","chocolate","cookie","dessert","eat","snack","sweet","treat"]},{"title":"fa-solid fa-cookie-bite","searchTerms":["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{"title":"fa-solid fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"fa-regular fa-copy","searchTerms":["clone","duplicate","file","files-o","paper","paste"]},{"title":"fa-solid fa-copyright","searchTerms":["brand","c","copyright","mark","register","trademark"]},{"title":"fa-regular fa-copyright","searchTerms":["brand","c","copyright","mark","register","trademark"]},{"title":"fa-brands fa-cotton-bureau","searchTerms":["clothing","t-shirts","tshirts"]},{"title":"fa-solid fa-couch","searchTerms":["chair","cushion","furniture","relax","sofa"]},{"title":"fa-solid fa-cow","searchTerms":["agriculture","animal","beef","bovine","co","cow","farm","fauna","livestock","mammal","milk","moo"]},{"title":"fa-brands fa-cpanel","searchTerms":[]},{"title":"fa-brands fa-creative-commons","searchTerms":[]},{"title":"fa-brands fa-creative-commons-by","searchTerms":[]},{"title":"fa-brands fa-creative-commons-nc","searchTerms":[]},{"title":"fa-brands fa-creative-commons-nc-eu","searchTerms":[]},{"title":"fa-brands fa-creative-commons-nc-jp","searchTerms":[]},{"title":"fa-brands fa-creative-commons-nd","searchTerms":[]},{"title":"fa-brands fa-creative-commons-pd","searchTerms":[]},{"title":"fa-brands fa-creative-commons-pd-alt","searchTerms":[]},{"title":"fa-brands fa-creative-commons-remix","searchTerms":[]},{"title":"fa-brands fa-creative-commons-sa","searchTerms":[]},{"title":"fa-brands fa-creative-commons-sampling","searchTerms":[]},{"title":"fa-brands fa-creative-commons-sampling-plus","searchTerms":[]},{"title":"fa-brands fa-creative-commons-share","searchTerms":[]},{"title":"fa-brands fa-creative-commons-zero","searchTerms":[]},{"title":"fa-solid fa-credit-card","searchTerms":["buy","card","checkout","credit","credit card","credit-card-alt","debit","money","payment","purchase"]},{"title":"fa-regular fa-credit-card","searchTerms":["buy","card","checkout","credit","credit card","credit-card-alt","debit","money","payment","purchase"]},{"title":"fa-brands fa-critical-role","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fa-solid fa-crop","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fa-solid fa-crop-simple","searchTerms":["design","frame","mask","resize","shrink"]},{"title":"fa-solid fa-cross","searchTerms":["Christian","Heavy Latin Cross","catholicism","christianity","church","cross","jesus","latin cross","religion"]},{"title":"fa-solid fa-crosshairs","searchTerms":["aim","bullseye","gpd","picker","position"]},{"title":"fa-solid fa-crow","searchTerms":["bird","bullfrog","fauna","halloween","holiday","toad"]},{"title":"fa-solid fa-crown","searchTerms":["award","clothing","crown","favorite","king","queen","royal","tiara"]},{"title":"fa-solid fa-crutch","searchTerms":["cane","injury","mobility","wheelchair"]},{"title":"fa-solid fa-cruzeiro-sign","searchTerms":["Cruzeiro Sign","currency"]},{"title":"fa-brands fa-css3","searchTerms":["code"]},{"title":"fa-brands fa-css3-alt","searchTerms":[]},{"title":"fa-solid fa-cube","searchTerms":["3d","block","dice","package","square","tesseract"]},{"title":"fa-solid fa-cubes","searchTerms":["3d","block","dice","package","pyramid","square","stack","tesseract"]},{"title":"fa-solid fa-cubes-stacked","searchTerms":["blocks","cubes","sugar"]},{"title":"fa-brands fa-cuttlefish","searchTerms":[]},{"title":"fa-solid fa-d","searchTerms":["Latin Capital Letter D","Latin Small Letter D","letter"]},{"title":"fa-brands fa-d-and-d","searchTerms":[]},{"title":"fa-brands fa-d-and-d-beyond","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{"title":"fa-brands fa-dailymotion","searchTerms":[]},{"title":"fa-brands fa-dashcube","searchTerms":[]},{"title":"fa-solid fa-database","searchTerms":["computer","development","directory","memory","storage"]},{"title":"fa-brands fa-debian","searchTerms":[]},{"title":"fa-brands fa-deezer","searchTerms":[]},{"title":"fa-solid fa-delete-left","searchTerms":["Erase to the Left","command","delete","erase","keyboard","undo"]},{"title":"fa-brands fa-delicious","searchTerms":[]},{"title":"fa-solid fa-democrat","searchTerms":["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{"title":"fa-brands fa-deploydog","searchTerms":[]},{"title":"fa-brands fa-deskpro","searchTerms":[]},{"title":"fa-solid fa-desktop","searchTerms":["computer","cpu","demo","desktop","desktop computer","device","imac","machine","monitor","pc","screen"]},{"title":"fa-brands fa-dev","searchTerms":[]},{"title":"fa-brands fa-deviantart","searchTerms":[]},{"title":"fa-solid fa-dharmachakra","searchTerms":["Buddhist","buddhism","buddhist","dharma","religion","wheel","wheel of dharma"]},{"title":"fa-brands fa-dhl","searchTerms":["Dalsey","Hillblom and Lynn","german","package","shipping"]},{"title":"fa-solid fa-diagram-next","searchTerms":["cells","chart","gantt","row","subtask","successor","table"]},{"title":"fa-solid fa-diagram-predecessor","searchTerms":["cells","chart","gantt","predecessor","previous","row","subtask","table"]},{"title":"fa-solid fa-diagram-project","searchTerms":["chart","graph","network","pert"]},{"title":"fa-solid fa-diagram-successor","searchTerms":["cells","chart","gantt","next","row","subtask","successor","table"]},{"title":"fa-solid fa-diamond","searchTerms":["card","cards","diamond suit","game","gem","gemstone","poker","suit"]},{"title":"fa-solid fa-diamond-turn-right","searchTerms":["map","navigation","sign","turn"]},{"title":"fa-brands fa-diaspora","searchTerms":[]},{"title":"fa-solid fa-dice","searchTerms":["chance","dice","die","gambling","game","game die","roll"]},{"title":"fa-solid fa-dice-d20","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fa-solid fa-dice-d6","searchTerms":["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{"title":"fa-solid fa-dice-five","searchTerms":["Die Face-5","chance","gambling","game","roll"]},{"title":"fa-solid fa-dice-four","searchTerms":["Die Face-4","chance","gambling","game","roll"]},{"title":"fa-solid fa-dice-one","searchTerms":["Die Face-1","chance","gambling","game","roll"]},{"title":"fa-solid fa-dice-six","searchTerms":["Die Face-6","chance","gambling","game","roll"]},{"title":"fa-solid fa-dice-three","searchTerms":["Die Face-3","chance","gambling","game","roll"]},{"title":"fa-solid fa-dice-two","searchTerms":["Die Face-2","chance","gambling","game","roll"]},{"title":"fa-brands fa-digg","searchTerms":[]},{"title":"fa-brands fa-digital-ocean","searchTerms":[]},{"title":"fa-brands fa-discord","searchTerms":[]},{"title":"fa-brands fa-discourse","searchTerms":[]},{"title":"fa-solid fa-disease","searchTerms":["bacteria","cancer","coronavirus","covid-19","flu","illness","infection","pandemic","sickness","virus"]},{"title":"fa-solid fa-display","searchTerms":["Screen","computer","desktop","imac"]},{"title":"fa-solid fa-divide","searchTerms":["Division Sign","arithmetic","calculus","divide","division","math","sign","\u00f7"]},{"title":"fa-solid fa-dna","searchTerms":["biologist","dna","double helix","evolution","gene","genetic","genetics","helix","life","molecule","protein"]},{"title":"fa-brands fa-dochub","searchTerms":[]},{"title":"fa-brands fa-docker","searchTerms":[]},{"title":"fa-solid fa-dog","searchTerms":["animal","canine","dog","fauna","mammal","pet","pooch","puppy","woof"]},{"title":"fa-solid fa-dollar-sign","searchTerms":["Dollar Sign","currency","dollar","heavy dollar sign","money"]},{"title":"fa-solid fa-dolly","searchTerms":["carry","shipping","transport"]},{"title":"fa-solid fa-dong-sign","searchTerms":["Dong Sign","currency"]},{"title":"fa-solid fa-door-closed","searchTerms":["doo","door","enter","exit","locked"]},{"title":"fa-solid fa-door-open","searchTerms":["enter","exit","welcome"]},{"title":"fa-solid fa-dove","searchTerms":["bird","dove","fauna","fly","flying","peace","war"]},{"title":"fa-solid fa-down-left-and-up-right-to-center","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fa-solid fa-down-long","searchTerms":["download","long-arrow-down"]},{"title":"fa-solid fa-download","searchTerms":["export","hard drive","save","transfer"]},{"title":"fa-brands fa-draft2digital","searchTerms":[]},{"title":"fa-solid fa-dragon","searchTerms":["Dungeons & Dragons","d","dnd","dragon","fairy tale","fantasy","fire","lizard","serpent"]},{"title":"fa-solid fa-draw-polygon","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fa-brands fa-dribbble","searchTerms":[]},{"title":"fa-brands fa-dropbox","searchTerms":[]},{"title":"fa-solid fa-droplet","searchTerms":["cold","color","comic","drop","droplet","raindrop","sweat","waterdrop"]},{"title":"fa-solid fa-droplet-slash","searchTerms":["color","drop","droplet","raindrop","waterdrop"]},{"title":"fa-solid fa-drum","searchTerms":["drum","drumsticks","instrument","music","percussion","snare","sound"]},{"title":"fa-solid fa-drum-steelpan","searchTerms":["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{"title":"fa-solid fa-drumstick-bite","searchTerms":["bone","chicken","leg","meat","poultry","turkey"]},{"title":"fa-brands fa-drupal","searchTerms":[]},{"title":"fa-solid fa-dumbbell","searchTerms":["exercise","gym","strength","weight","weight-lifting"]},{"title":"fa-solid fa-dumpster","searchTerms":["alley","bin","commercial","trash","waste"]},{"title":"fa-solid fa-dumpster-fire","searchTerms":["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{"title":"fa-solid fa-dungeon","searchTerms":["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{"title":"fa-brands fa-dyalog","searchTerms":[]},{"title":"fa-solid fa-e","searchTerms":["Latin Capital Letter E","Latin Small Letter E","letter"]},{"title":"fa-solid fa-ear-deaf","searchTerms":["ear","hearing","sign language"]},{"title":"fa-solid fa-ear-listen","searchTerms":["amplify","audio","deaf","ear","headset","hearing","sound"]},{"title":"fa-brands fa-earlybirds","searchTerms":[]},{"title":"fa-solid fa-earth-africa","searchTerms":["africa","all","country","earth","europe","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fa-solid fa-earth-americas","searchTerms":["all","america","country","earth","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fa-solid fa-earth-asia","searchTerms":["all","asia","australia","country","earth","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fa-solid fa-earth-europe","searchTerms":["all","country","earth","europe","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{"title":"fa-solid fa-earth-oceania","searchTerms":["all","australia","country","earth","global","globe","gps","language","localize","location","map","melanesia","micronesia","new zealand","online","place","planet","polynesia","translate","travel","world"]},{"title":"fa-brands fa-ebay","searchTerms":[]},{"title":"fa-brands fa-edge","searchTerms":["browser","ie"]},{"title":"fa-brands fa-edge-legacy","searchTerms":[]},{"title":"fa-solid fa-egg","searchTerms":["breakfast","chicken","easter","egg","food","shell","yolk"]},{"title":"fa-solid fa-eject","searchTerms":["abort","cancel","cd","discharge","eject","eject button"]},{"title":"fa-brands fa-elementor","searchTerms":[]},{"title":"fa-solid fa-elevator","searchTerms":["accessibility","elevator","hoist","lift","users-people"]},{"title":"fa-solid fa-ellipsis","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","pacman","reorder","settings","ul"]},{"title":"fa-solid fa-ellipsis-vertical","searchTerms":["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{"title":"fa-brands fa-ello","searchTerms":[]},{"title":"fa-brands fa-ember","searchTerms":[]},{"title":"fa-brands fa-empire","searchTerms":[]},{"title":"fa-solid fa-envelope","searchTerms":["Back of Envelope","e-mail","email","envelope","letter","mail","message","notification","support"]},{"title":"fa-regular fa-envelope","searchTerms":["Back of Envelope","e-mail","email","envelope","letter","mail","message","notification","support"]},{"title":"fa-solid fa-envelope-circle-check","searchTerms":["check","email","envelope","mail","not affected","ok","okay","read","sent"]},{"title":"fa-solid fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fa-regular fa-envelope-open","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fa-solid fa-envelope-open-text","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fa-solid fa-envelopes-bulk","searchTerms":["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{"title":"fa-brands fa-envira","searchTerms":["leaf"]},{"title":"fa-solid fa-equals","searchTerms":["Equals Sign","arithmetic","even","match","math"]},{"title":"fa-solid fa-eraser","searchTerms":["art","delete","remove","rubber"]},{"title":"fa-brands fa-erlang","searchTerms":[]},{"title":"fa-brands fa-ethereum","searchTerms":[]},{"title":"fa-solid fa-ethernet","searchTerms":["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{"title":"fa-brands fa-etsy","searchTerms":[]},{"title":"fa-solid fa-euro-sign","searchTerms":["Euro Sign","currency"]},{"title":"fa-brands fa-evernote","searchTerms":[]},{"title":"fa-solid fa-exclamation","searchTerms":["!","Exclamation Mark","alert","danger","error","exclamation","important","mark","notice","notification","notify","outlined","problem","punctuation","red exclamation mark","warning","white exclamation mark"]},{"title":"fa-solid fa-expand","searchTerms":["bigger","crop","enlarge","focus","fullscreen","resize","viewfinder"]},{"title":"fa-brands fa-expeditedssl","searchTerms":[]},{"title":"fa-solid fa-explosion","searchTerms":["blast","blowup","boom","crash","detonation","explosion"]},{"title":"fa-solid fa-eye","searchTerms":["body","eye","look","optic","see","seen","show","sight","views","visible"]},{"title":"fa-regular fa-eye","searchTerms":["body","eye","look","optic","see","seen","show","sight","views","visible"]},{"title":"fa-solid fa-eye-dropper","searchTerms":["beaker","clone","color","copy","eyedropper","pipette"]},{"title":"fa-solid fa-eye-low-vision","searchTerms":["blind","eye","sight"]},{"title":"fa-solid fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"fa-regular fa-eye-slash","searchTerms":["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{"title":"fa-solid fa-f","searchTerms":["Latin Capital Letter F","Latin Small Letter F","letter"]},{"title":"fa-solid fa-face-angry","searchTerms":["angry","angry face","disapprove","emoticon","face","mad","upset"]},{"title":"fa-regular fa-face-angry","searchTerms":["angry","angry face","disapprove","emoticon","face","mad","upset"]},{"title":"fa-solid fa-face-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"fa-regular fa-face-dizzy","searchTerms":["dazed","dead","disapprove","emoticon","face"]},{"title":"fa-solid fa-face-flushed","searchTerms":["dazed","embarrassed","emoticon","face","flushed","flushed face"]},{"title":"fa-regular fa-face-flushed","searchTerms":["dazed","embarrassed","emoticon","face","flushed","flushed face"]},{"title":"fa-solid fa-face-frown","searchTerms":["disapprove","emoticon","face","frown","frowning face","rating","sad"]},{"title":"fa-regular fa-face-frown","searchTerms":["disapprove","emoticon","face","frown","frowning face","rating","sad"]},{"title":"fa-solid fa-face-frown-open","searchTerms":["disapprove","emoticon","face","frown","frowning face with open mouth","mouth","open","rating","sad"]},{"title":"fa-regular fa-face-frown-open","searchTerms":["disapprove","emoticon","face","frown","frowning face with open mouth","mouth","open","rating","sad"]},{"title":"fa-solid fa-face-grimace","searchTerms":["cringe","emoticon","face","grimace","grimacing face","teeth"]},{"title":"fa-regular fa-face-grimace","searchTerms":["cringe","emoticon","face","grimace","grimacing face","teeth"]},{"title":"fa-solid fa-face-grin","searchTerms":["emoticon","face","grin","grinning face","laugh","smile"]},{"title":"fa-regular fa-face-grin","searchTerms":["emoticon","face","grin","grinning face","laugh","smile"]},{"title":"fa-solid fa-face-grin-beam","searchTerms":["emoticon","eye","face","grinning face with smiling eyes","laugh","mouth","open","smile"]},{"title":"fa-regular fa-face-grin-beam","searchTerms":["emoticon","eye","face","grinning face with smiling eyes","laugh","mouth","open","smile"]},{"title":"fa-solid fa-face-grin-beam-sweat","searchTerms":["cold","embarass","emoticon","face","grinning face with sweat","open","smile","sweat"]},{"title":"fa-regular fa-face-grin-beam-sweat","searchTerms":["cold","embarass","emoticon","face","grinning face with sweat","open","smile","sweat"]},{"title":"fa-solid fa-face-grin-hearts","searchTerms":["emoticon","eye","face","love","smile","smiling face with heart-eyes"]},{"title":"fa-regular fa-face-grin-hearts","searchTerms":["emoticon","eye","face","love","smile","smiling face with heart-eyes"]},{"title":"fa-solid fa-face-grin-squint","searchTerms":["emoticon","face","grinning squinting face","laugh","mouth","satisfied","smile"]},{"title":"fa-regular fa-face-grin-squint","searchTerms":["emoticon","face","grinning squinting face","laugh","mouth","satisfied","smile"]},{"title":"fa-solid fa-face-grin-squint-tears","searchTerms":["emoticon","face","floor","happy","laugh","rolling","rolling on the floor laughing","smile"]},{"title":"fa-regular fa-face-grin-squint-tears","searchTerms":["emoticon","face","floor","happy","laugh","rolling","rolling on the floor laughing","smile"]},{"title":"fa-solid fa-face-grin-stars","searchTerms":["emoticon","eyes","face","grinning","star","star-struck","starry-eyed"]},{"title":"fa-regular fa-face-grin-stars","searchTerms":["emoticon","eyes","face","grinning","star","star-struck","starry-eyed"]},{"title":"fa-solid fa-face-grin-tears","searchTerms":["LOL","emoticon","face","face with tears of joy","joy","laugh","tear"]},{"title":"fa-regular fa-face-grin-tears","searchTerms":["LOL","emoticon","face","face with tears of joy","joy","laugh","tear"]},{"title":"fa-solid fa-face-grin-tongue","searchTerms":["LOL","emoticon","face","face with tongue","tongue"]},{"title":"fa-regular fa-face-grin-tongue","searchTerms":["LOL","emoticon","face","face with tongue","tongue"]},{"title":"fa-solid fa-face-grin-tongue-squint","searchTerms":["LOL","emoticon","eye","face","horrible","squinting face with tongue","taste","tongue"]},{"title":"fa-regular fa-face-grin-tongue-squint","searchTerms":["LOL","emoticon","eye","face","horrible","squinting face with tongue","taste","tongue"]},{"title":"fa-solid fa-face-grin-tongue-wink","searchTerms":["LOL","emoticon","eye","face","joke","tongue","wink","winking face with tongue"]},{"title":"fa-regular fa-face-grin-tongue-wink","searchTerms":["LOL","emoticon","eye","face","joke","tongue","wink","winking face with tongue"]},{"title":"fa-solid fa-face-grin-wide","searchTerms":["emoticon","face","grinning face with big eyes","laugh","mouth","open","smile"]},{"title":"fa-regular fa-face-grin-wide","searchTerms":["emoticon","face","grinning face with big eyes","laugh","mouth","open","smile"]},{"title":"fa-solid fa-face-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"fa-regular fa-face-grin-wink","searchTerms":["emoticon","face","flirt","laugh","smile"]},{"title":"fa-solid fa-face-kiss","searchTerms":["beso","emoticon","face","kiss","kissing face","love","smooch"]},{"title":"fa-regular fa-face-kiss","searchTerms":["beso","emoticon","face","kiss","kissing face","love","smooch"]},{"title":"fa-solid fa-face-kiss-beam","searchTerms":["beso","emoticon","eye","face","kiss","kissing face with smiling eyes","love","smile","smooch"]},{"title":"fa-regular fa-face-kiss-beam","searchTerms":["beso","emoticon","eye","face","kiss","kissing face with smiling eyes","love","smile","smooch"]},{"title":"fa-solid fa-face-kiss-wink-heart","searchTerms":["beso","emoticon","face","face blowing a kiss","kiss","love","smooch"]},{"title":"fa-regular fa-face-kiss-wink-heart","searchTerms":["beso","emoticon","face","face blowing a kiss","kiss","love","smooch"]},{"title":"fa-solid fa-face-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"fa-regular fa-face-laugh","searchTerms":["LOL","emoticon","face","laugh","smile"]},{"title":"fa-solid fa-face-laugh-beam","searchTerms":["LOL","beaming face with smiling eyes","emoticon","eye","face","grin","happy","smile"]},{"title":"fa-regular fa-face-laugh-beam","searchTerms":["LOL","beaming face with smiling eyes","emoticon","eye","face","grin","happy","smile"]},{"title":"fa-solid fa-face-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fa-regular fa-face-laugh-squint","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fa-solid fa-face-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fa-regular fa-face-laugh-wink","searchTerms":["LOL","emoticon","face","happy","smile"]},{"title":"fa-solid fa-face-meh","searchTerms":["deadpan","emoticon","face","meh","neutral","neutral face","rating"]},{"title":"fa-regular fa-face-meh","searchTerms":["deadpan","emoticon","face","meh","neutral","neutral face","rating"]},{"title":"fa-solid fa-face-meh-blank","searchTerms":["emoticon","face","face without mouth","mouth","neutral","quiet","rating","silent"]},{"title":"fa-regular fa-face-meh-blank","searchTerms":["emoticon","face","face without mouth","mouth","neutral","quiet","rating","silent"]},{"title":"fa-solid fa-face-rolling-eyes","searchTerms":["emoticon","eyeroll","eyes","face","face with rolling eyes","neutral","rating","rolling"]},{"title":"fa-regular fa-face-rolling-eyes","searchTerms":["emoticon","eyeroll","eyes","face","face with rolling eyes","neutral","rating","rolling"]},{"title":"fa-solid fa-face-sad-cry","searchTerms":["cry","emoticon","face","loudly crying face","sad","sob","tear","tears"]},{"title":"fa-regular fa-face-sad-cry","searchTerms":["cry","emoticon","face","loudly crying face","sad","sob","tear","tears"]},{"title":"fa-solid fa-face-sad-tear","searchTerms":["cry","crying face","emoticon","face","sad","tear","tears"]},{"title":"fa-regular fa-face-sad-tear","searchTerms":["cry","crying face","emoticon","face","sad","tear","tears"]},{"title":"fa-solid fa-face-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied","slightly smiling face","smile"]},{"title":"fa-regular fa-face-smile","searchTerms":["approve","emoticon","face","happy","rating","satisfied","slightly smiling face","smile"]},{"title":"fa-solid fa-face-smile-beam","searchTerms":["blush","emoticon","eye","face","happy","positive","smile","smiling face with smiling eyes"]},{"title":"fa-regular fa-face-smile-beam","searchTerms":["blush","emoticon","eye","face","happy","positive","smile","smiling face with smiling eyes"]},{"title":"fa-solid fa-face-smile-wink","searchTerms":["emoticon","face","happy","hint","joke","wink","winking face"]},{"title":"fa-regular fa-face-smile-wink","searchTerms":["emoticon","face","happy","hint","joke","wink","winking face"]},{"title":"fa-solid fa-face-surprise","searchTerms":["emoticon","face","face with open mouth","mouth","open","shocked","sympathy"]},{"title":"fa-regular fa-face-surprise","searchTerms":["emoticon","face","face with open mouth","mouth","open","shocked","sympathy"]},{"title":"fa-solid fa-face-tired","searchTerms":["angry","emoticon","face","grumpy","tired","tired face","upset"]},{"title":"fa-regular fa-face-tired","searchTerms":["angry","emoticon","face","grumpy","tired","tired face","upset"]},{"title":"fa-brands fa-facebook","searchTerms":["facebook-official","social network"]},{"title":"fa-brands fa-facebook-f","searchTerms":["facebook"]},{"title":"fa-brands fa-facebook-messenger","searchTerms":[]},{"title":"fa-solid fa-fan","searchTerms":["ac","air conditioning","blade","blower","cool","hot"]},{"title":"fa-brands fa-fantasy-flight-games","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fa-solid fa-faucet","searchTerms":["covid-19","drinking","drip","house","hygiene","kitchen","potable","potable water","sanitation","sink","water"]},{"title":"fa-solid fa-faucet-drip","searchTerms":["drinking","drip","house","hygiene","kitchen","potable","potable water","sanitation","sink","water"]},{"title":"fa-solid fa-fax","searchTerms":["Fax Icon","business","communicate","copy","facsimile","fax","fax machine","send"]},{"title":"fa-solid fa-feather","searchTerms":["bird","feather","flight","light","plucked","plumage","quill","write"]},{"title":"fa-solid fa-feather-pointed","searchTerms":["bird","light","plucked","quill","write"]},{"title":"fa-brands fa-fedex","searchTerms":["Federal Express","package","shipping"]},{"title":"fa-brands fa-fedora","searchTerms":["linux","operating system","os"]},{"title":"fa-solid fa-ferry","searchTerms":["barge","boat","carry","ferryboat","ship"]},{"title":"fa-brands fa-figma","searchTerms":["app","design","interface"]},{"title":"fa-solid fa-file","searchTerms":["Empty Document","document","new","page","page facing up","pdf","resume"]},{"title":"fa-regular fa-file","searchTerms":["Empty Document","document","new","page","page facing up","pdf","resume"]},{"title":"fa-solid fa-file-arrow-down","searchTerms":["document","export","save"]},{"title":"fa-solid fa-file-arrow-up","searchTerms":["document","import","page","save"]},{"title":"fa-solid fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"fa-regular fa-file-audio","searchTerms":["document","mp3","music","page","play","sound"]},{"title":"fa-solid fa-file-circle-check","searchTerms":["document","file","not affected","ok","okay","paper"]},{"title":"fa-solid fa-file-circle-exclamation","searchTerms":["document","file","paper"]},{"title":"fa-solid fa-file-circle-minus","searchTerms":["document","file","paper"]},{"title":"fa-solid fa-file-circle-plus","searchTerms":["add","document","file","new","page","paper","pdf"]},{"title":"fa-solid fa-file-circle-question","searchTerms":["document","file","paper"]},{"title":"fa-solid fa-file-circle-xmark","searchTerms":["document","file","paper"]},{"title":"fa-solid fa-file-code","searchTerms":["css","development","document","html"]},{"title":"fa-regular fa-file-code","searchTerms":["css","development","document","html"]},{"title":"fa-solid fa-file-contract","searchTerms":["agreement","binding","document","legal","signature"]},{"title":"fa-solid fa-file-csv","searchTerms":["document","excel","numbers","spreadsheets","table"]},{"title":"fa-solid fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"fa-regular fa-file-excel","searchTerms":["csv","document","numbers","spreadsheets","table"]},{"title":"fa-solid fa-file-export","searchTerms":["download","save"]},{"title":"fa-solid fa-file-image","searchTerms":["Document with Picture","document","image","jpg","photo","png"]},{"title":"fa-regular fa-file-image","searchTerms":["Document with Picture","document","image","jpg","photo","png"]},{"title":"fa-solid fa-file-import","searchTerms":["copy","document","send","upload"]},{"title":"fa-solid fa-file-invoice","searchTerms":["account","bill","charge","document","payment","receipt"]},{"title":"fa-solid fa-file-invoice-dollar","searchTerms":["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{"title":"fa-solid fa-file-lines","searchTerms":["Document","Document with Text","document","file-text","invoice","new","page","pdf"]},{"title":"fa-regular fa-file-lines","searchTerms":["Document","Document with Text","document","file-text","invoice","new","page","pdf"]},{"title":"fa-solid fa-file-medical","searchTerms":["document","health","history","prescription","record"]},{"title":"fa-solid fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"fa-regular fa-file-pdf","searchTerms":["acrobat","document","preview","save"]},{"title":"fa-solid fa-file-pen","searchTerms":["edit","memo","pen","pencil","update","write"]},{"title":"fa-solid fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"fa-regular fa-file-powerpoint","searchTerms":["display","document","keynote","presentation"]},{"title":"fa-solid fa-file-prescription","searchTerms":["document","drugs","medical","medicine","rx"]},{"title":"fa-solid fa-file-shield","searchTerms":["antivirus","data","document","protect","safe","safety","secure"]},{"title":"fa-solid fa-file-signature","searchTerms":["John Hancock","contract","document","name"]},{"title":"fa-solid fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"fa-regular fa-file-video","searchTerms":["document","m4v","movie","mp4","play"]},{"title":"fa-solid fa-file-waveform","searchTerms":["document","health","history","prescription","record"]},{"title":"fa-solid fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"fa-regular fa-file-word","searchTerms":["document","edit","page","text","writing"]},{"title":"fa-solid fa-file-zipper","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"fa-regular fa-file-zipper","searchTerms":[".zip","bundle","compress","compression","download","zip"]},{"title":"fa-solid fa-fill","searchTerms":["bucket","color","paint","paint bucket"]},{"title":"fa-solid fa-fill-drip","searchTerms":["bucket","color","drop","paint","paint bucket","spill"]},{"title":"fa-solid fa-film","searchTerms":["cinema","film","film frames","frames","movie","strip","video"]},{"title":"fa-solid fa-filter","searchTerms":["funnel","options","separate","sort"]},{"title":"fa-solid fa-filter-circle-dollar","searchTerms":["filter","money","options","separate","sort"]},{"title":"fa-solid fa-filter-circle-xmark","searchTerms":["cancel","funnel","options","remove","separate","sort"]},{"title":"fa-solid fa-fingerprint","searchTerms":["human","id","identification","lock","smudge","touch","unique","unlock"]},{"title":"fa-solid fa-fire","searchTerms":["burn","caliente","fire","flame","heat","hot","popular","tool"]},{"title":"fa-solid fa-fire-burner","searchTerms":["cook","fire","flame","kitchen","stove"]},{"title":"fa-solid fa-fire-extinguisher","searchTerms":["burn","caliente","extinguish","fire","fire extinguisher","fire fighter","flame","heat","hot","quench","rescue"]},{"title":"fa-solid fa-fire-flame-curved","searchTerms":["burn","caliente","flame","heat","hot","popular"]},{"title":"fa-solid fa-fire-flame-simple","searchTerms":["caliente","energy","fire","flame","gas","heat","hot"]},{"title":"fa-brands fa-firefox","searchTerms":["browser"]},{"title":"fa-brands fa-firefox-browser","searchTerms":["browser"]},{"title":"fa-brands fa-first-order","searchTerms":[]},{"title":"fa-brands fa-first-order-alt","searchTerms":[]},{"title":"fa-brands fa-firstdraft","searchTerms":[]},{"title":"fa-solid fa-fish","searchTerms":["Pisces","fauna","fish","gold","seafood","swimming","zodiac"]},{"title":"fa-solid fa-fish-fins","searchTerms":["fish","fishery","pisces","seafood"]},{"title":"fa-solid fa-flag","searchTerms":["black flag","country","notice","notification","notify","pole","report","symbol","waving"]},{"title":"fa-regular fa-flag","searchTerms":["black flag","country","notice","notification","notify","pole","report","symbol","waving"]},{"title":"fa-solid fa-flag-checkered","searchTerms":["checkered","chequered","chequered flag","finish","notice","notification","notify","pole","racing","report","start","symbol","win"]},{"title":"fa-solid fa-flag-usa","searchTerms":["betsy ross","country","fla","flag: United States","old glory","stars","stripes","symbol"]},{"title":"fa-solid fa-flask","searchTerms":["beaker","chemicals","experiment","experimental","labs","liquid","potion","science","vial"]},{"title":"fa-solid fa-flask-vial","searchTerms":[" beaker"," chemicals"," experiment"," experimental"," labs"," liquid"," science"," vial","ampule","chemistry","lab","laboratory","potion","test","test tube"]},{"title":"fa-brands fa-flickr","searchTerms":[]},{"title":"fa-brands fa-flipboard","searchTerms":[]},{"title":"fa-solid fa-floppy-disk","searchTerms":["Black Hard Shell Floppy Disk","computer","disk","download","floppy","floppy disk","floppy-o"]},{"title":"fa-regular fa-floppy-disk","searchTerms":["Black Hard Shell Floppy Disk","computer","disk","download","floppy","floppy disk","floppy-o"]},{"title":"fa-solid fa-florin-sign","searchTerms":["currency"]},{"title":"fa-brands fa-fly","searchTerms":[]},{"title":"fa-solid fa-folder","searchTerms":["Black Folder","archive","directory","document","file","file folder","folder"]},{"title":"fa-regular fa-folder","searchTerms":["Black Folder","archive","directory","document","file","file folder","folder"]},{"title":"fa-solid fa-folder-closed","searchTerms":["file"]},{"title":"fa-regular fa-folder-closed","searchTerms":["file"]},{"title":"fa-solid fa-folder-minus","searchTerms":["archive","delete","directory","document","file","negative","remove"]},{"title":"fa-solid fa-folder-open","searchTerms":["Open Folder","archive","directory","document","empty","file","folder","new","open","open file folder"]},{"title":"fa-regular fa-folder-open","searchTerms":["Open Folder","archive","directory","document","empty","file","folder","new","open","open file folder"]},{"title":"fa-solid fa-folder-plus","searchTerms":["add","archive","create","directory","document","file","new","positive"]},{"title":"fa-solid fa-folder-tree","searchTerms":["archive","directory","document","file","search","structure"]},{"title":"fa-solid fa-font","searchTerms":["alphabet","glyph","text","type","typeface"]},{"title":"fa-solid fa-font-awesome","searchTerms":["awesome","flag","font","icons","typeface"]},{"title":"fa-regular fa-font-awesome","searchTerms":["awesome","flag","font","icons","typeface"]},{"title":"fa-brands fa-font-awesome","searchTerms":["awesome","flag","font","icons","typeface"]},{"title":"fa-brands fa-fonticons","searchTerms":[]},{"title":"fa-brands fa-fonticons-fi","searchTerms":[]},{"title":"fa-solid fa-football","searchTerms":["american","american football","ball","fall","football","nfl","pigskin","seasonal"]},{"title":"fa-brands fa-fort-awesome","searchTerms":["castle"]},{"title":"fa-brands fa-fort-awesome-alt","searchTerms":["castle"]},{"title":"fa-brands fa-forumbee","searchTerms":[]},{"title":"fa-solid fa-forward","searchTerms":["arrow","double","fast","fast-forward button","forward","next","skip"]},{"title":"fa-solid fa-forward-fast","searchTerms":["arrow","end","last","next","next scene","next track","next track button","triangle"]},{"title":"fa-solid fa-forward-step","searchTerms":["end","last","next"]},{"title":"fa-brands fa-foursquare","searchTerms":[]},{"title":"fa-solid fa-franc-sign","searchTerms":["French Franc Sign","currency"]},{"title":"fa-brands fa-free-code-camp","searchTerms":[]},{"title":"fa-brands fa-freebsd","searchTerms":[]},{"title":"fa-solid fa-frog","searchTerms":["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{"title":"fa-brands fa-fulcrum","searchTerms":[]},{"title":"fa-solid fa-futbol","searchTerms":["ball","football","mls","soccer","soccer ball"]},{"title":"fa-regular fa-futbol","searchTerms":["ball","football","mls","soccer","soccer ball"]},{"title":"fa-solid fa-g","searchTerms":["Latin Capital Letter G","Latin Small Letter G","letter"]},{"title":"fa-brands fa-galactic-republic","searchTerms":["politics","star wars"]},{"title":"fa-brands fa-galactic-senate","searchTerms":["star wars"]},{"title":"fa-solid fa-gamepad","searchTerms":["arcade","controller","d-pad","joystick","video","video game"]},{"title":"fa-solid fa-gas-pump","searchTerms":["car","diesel","fuel","fuel pump","fuelpump","gas","gasoline","petrol","pump","station"]},{"title":"fa-solid fa-gauge","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fa-solid fa-gauge-high","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fa-solid fa-gauge-simple","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fa-solid fa-gauge-simple-high","searchTerms":["dashboard","fast","odometer","speed","speedometer"]},{"title":"fa-solid fa-gavel","searchTerms":["hammer","judge","law","lawyer","opinion"]},{"title":"fa-solid fa-gear","searchTerms":["cog","cogwheel","gear","mechanical","settings","sprocket","tool","wheel"]},{"title":"fa-solid fa-gears","searchTerms":["gears","mechanical","settings","sprocket","wheel"]},{"title":"fa-solid fa-gem","searchTerms":["diamond","gem","gem stone","jewel","jewelry","sapphire","stone","treasure"]},{"title":"fa-regular fa-gem","searchTerms":["diamond","gem","gem stone","jewel","jewelry","sapphire","stone","treasure"]},{"title":"fa-solid fa-genderless","searchTerms":["androgynous","asexual","gender","sexless"]},{"title":"fa-brands fa-get-pocket","searchTerms":[]},{"title":"fa-brands fa-gg","searchTerms":[]},{"title":"fa-brands fa-gg-circle","searchTerms":[]},{"title":"fa-solid fa-ghost","searchTerms":["apparition","blinky","clyde","creature","face","fairy tale","fantasy","floating","ghost","halloween","holiday","inky","monster","pacman","pinky","spirit"]},{"title":"fa-solid fa-gift","searchTerms":["box","celebration","christmas","generosity","gift","giving","holiday","party","present","wrapped","wrapped gift","xmas"]},{"title":"fa-solid fa-gifts","searchTerms":["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{"title":"fa-brands fa-git","searchTerms":[]},{"title":"fa-brands fa-git-alt","searchTerms":[]},{"title":"fa-brands fa-github","searchTerms":["octocat"]},{"title":"fa-brands fa-github-alt","searchTerms":["octocat"]},{"title":"fa-brands fa-gitkraken","searchTerms":[]},{"title":"fa-brands fa-gitlab","searchTerms":["Axosoft"]},{"title":"fa-brands fa-gitter","searchTerms":[]},{"title":"fa-solid fa-glass-water","searchTerms":["potable","water"]},{"title":"fa-solid fa-glass-water-droplet","searchTerms":["potable","water"]},{"title":"fa-solid fa-glasses","searchTerms":["hipster","nerd","reading","sight","spectacles","vision"]},{"title":"fa-brands fa-glide","searchTerms":[]},{"title":"fa-brands fa-glide-g","searchTerms":[]},{"title":"fa-solid fa-globe","searchTerms":["all","coordinates","country","earth","global","globe","globe with meridians","gps","internet","language","localize","location","map","meridians","network","online","place","planet","translate","travel","world"]},{"title":"fa-brands fa-gofore","searchTerms":[]},{"title":"fa-brands fa-golang","searchTerms":[]},{"title":"fa-solid fa-golf-ball-tee","searchTerms":["caddy","eagle","putt","tee"]},{"title":"fa-brands fa-goodreads","searchTerms":[]},{"title":"fa-brands fa-goodreads-g","searchTerms":[]},{"title":"fa-brands fa-google","searchTerms":[]},{"title":"fa-brands fa-google-drive","searchTerms":[]},{"title":"fa-brands fa-google-pay","searchTerms":[]},{"title":"fa-brands fa-google-play","searchTerms":[]},{"title":"fa-brands fa-google-plus","searchTerms":["google-plus-circle","google-plus-official"]},{"title":"fa-brands fa-google-plus-g","searchTerms":["google-plus","social network"]},{"title":"fa-brands fa-google-wallet","searchTerms":[]},{"title":"fa-solid fa-gopuram","searchTerms":["building","entrance","hinduism","temple","tower"]},{"title":"fa-solid fa-graduation-cap","searchTerms":["cap","celebration","ceremony","clothing","college","graduate","graduation","graduation cap","hat","learning","school","student"]},{"title":"fa-brands fa-gratipay","searchTerms":["favorite","heart","like","love"]},{"title":"fa-brands fa-grav","searchTerms":[]},{"title":"fa-solid fa-greater-than","searchTerms":["Greater-Than Sign","arithmetic","compare","math"]},{"title":"fa-solid fa-greater-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fa-solid fa-grip","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fa-solid fa-grip-lines","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fa-solid fa-grip-lines-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fa-solid fa-grip-vertical","searchTerms":["affordance","drag","drop","grab","handle"]},{"title":"fa-brands fa-gripfire","searchTerms":[]},{"title":"fa-solid fa-group-arrows-rotate","searchTerms":["community","engagement","spin","sync"]},{"title":"fa-brands fa-grunt","searchTerms":[]},{"title":"fa-solid fa-guarani-sign","searchTerms":["Guarani Sign","currency"]},{"title":"fa-brands fa-guilded","searchTerms":[]},{"title":"fa-solid fa-guitar","searchTerms":["acoustic","instrument","music","rock","rock and roll","song","strings"]},{"title":"fa-brands fa-gulp","searchTerms":[]},{"title":"fa-solid fa-gun","searchTerms":["firearm","pistol","weapon"]},{"title":"fa-solid fa-h","searchTerms":["Latin Capital Letter H","Latin Small Letter H","letter"]},{"title":"fa-brands fa-hacker-news","searchTerms":[]},{"title":"fa-brands fa-hackerrank","searchTerms":[]},{"title":"fa-solid fa-hammer","searchTerms":["admin","fix","hammer","recovery","repair","settings","tool"]},{"title":"fa-solid fa-hamsa","searchTerms":["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{"title":"fa-solid fa-hand","searchTerms":["Raised Hand","backhand","game","halt","palm","raised","raised back of hand","roshambo","stop"]},{"title":"fa-regular fa-hand","searchTerms":["Raised Hand","backhand","game","halt","palm","raised","raised back of hand","roshambo","stop"]},{"title":"fa-solid fa-hand-back-fist","searchTerms":["fist","game","roshambo"]},{"title":"fa-regular fa-hand-back-fist","searchTerms":["fist","game","roshambo"]},{"title":"fa-solid fa-hand-dots","searchTerms":["allergy","freckles","hand","hives","palm","pox","skin","spots"]},{"title":"fa-solid fa-hand-fist","searchTerms":["Dungeons & Dragons","clenched","d","dnd","fantasy","fist","hand","ki","monk","punch","raised fist","resist","strength","unarmed combat"]},{"title":"fa-solid fa-hand-holding","searchTerms":["carry","lift"]},{"title":"fa-solid fa-hand-holding-dollar","searchTerms":["$","carry","dollar sign","donation","giving","lift","money","price"]},{"title":"fa-solid fa-hand-holding-droplet","searchTerms":["carry","covid-19","drought","grow","lift","sanitation"]},{"title":"fa-solid fa-hand-holding-hand","searchTerms":["care","give","help","hold","protect"]},{"title":"fa-solid fa-hand-holding-heart","searchTerms":["carry","charity","gift","lift","package"]},{"title":"fa-solid fa-hand-holding-medical","searchTerms":["care","covid-19","donate","help"]},{"title":"fa-solid fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"fa-regular fa-hand-lizard","searchTerms":["game","roshambo"]},{"title":"fa-solid fa-hand-middle-finger","searchTerms":["finger","flip the bird","gesture","hand","hate","middle finger","rude"]},{"title":"fa-solid fa-hand-peace","searchTerms":["hand","rest","truce","v","victory","victory hand"]},{"title":"fa-regular fa-hand-peace","searchTerms":["hand","rest","truce","v","victory","victory hand"]},{"title":"fa-solid fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"fa-regular fa-hand-point-down","searchTerms":["finger","hand-o-down","point"]},{"title":"fa-solid fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"fa-regular fa-hand-point-left","searchTerms":["back","finger","hand-o-left","left","point","previous"]},{"title":"fa-solid fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"fa-regular fa-hand-point-right","searchTerms":["finger","forward","hand-o-right","next","point","right"]},{"title":"fa-solid fa-hand-point-up","searchTerms":["finger","hand","hand-o-up","index","index pointing up","point","up"]},{"title":"fa-regular fa-hand-point-up","searchTerms":["finger","hand","hand-o-up","index","index pointing up","point","up"]},{"title":"fa-solid fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fa-regular fa-hand-pointer","searchTerms":["arrow","cursor","select"]},{"title":"fa-solid fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"fa-regular fa-hand-scissors","searchTerms":["cut","game","roshambo"]},{"title":"fa-solid fa-hand-sparkles","searchTerms":["clean","covid-19","hygiene","magic","palm","soap","wash"]},{"title":"fa-solid fa-hand-spock","searchTerms":["finger","hand","live long","palm","prosper","salute","spock","star trek","vulcan","vulcan salute"]},{"title":"fa-regular fa-hand-spock","searchTerms":["finger","hand","live long","palm","prosper","salute","spock","star trek","vulcan","vulcan salute"]},{"title":"fa-solid fa-handcuffs","searchTerms":["arrest","criminal","handcuffs","jail","lock","police","wrist"]},{"title":"fa-solid fa-hands","searchTerms":["Translate","asl","deaf","hands"]},{"title":"fa-solid fa-hands-asl-interpreting","searchTerms":["asl","deaf","finger","hand","interpret","speak"]},{"title":"fa-solid fa-hands-bound","searchTerms":["abduction","bound","handcuff","wrist"]},{"title":"fa-solid fa-hands-bubbles","searchTerms":["covid-19","hygiene","soap","wash"]},{"title":"fa-solid fa-hands-clapping","searchTerms":["applause","clap","clapping hands","hand"]},{"title":"fa-solid fa-hands-holding","searchTerms":["carry","hold","lift"]},{"title":"fa-solid fa-hands-holding-child","searchTerms":["care","give","help","hold","protect"]},{"title":"fa-solid fa-hands-holding-circle","searchTerms":["circle","gift","protection"]},{"title":"fa-solid fa-hands-praying","searchTerms":["kneel","preach","religion","worship"]},{"title":"fa-solid fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"fa-regular fa-handshake","searchTerms":["agreement","greeting","meeting","partnership"]},{"title":"fa-solid fa-handshake-angle","searchTerms":["aid","assistance","handshake","partnership","volunteering"]},{"title":"fa-solid fa-handshake-simple","searchTerms":["agreement","greeting","hand","handshake","meeting","partnership","shake"]},{"title":"fa-solid fa-handshake-simple-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fa-solid fa-handshake-slash","searchTerms":["broken","covid-19","social distance"]},{"title":"fa-solid fa-hanukiah","searchTerms":["candelabrum","candle","candlestick","hanukkah","jewish","judaism","light","menorah","religion"]},{"title":"fa-solid fa-hard-drive","searchTerms":["Hard Disk","cpu","hard drive","harddrive","machine","save","storage"]},{"title":"fa-regular fa-hard-drive","searchTerms":["Hard Disk","cpu","hard drive","harddrive","machine","save","storage"]},{"title":"fa-brands fa-hashnode","searchTerms":[]},{"title":"fa-solid fa-hashtag","searchTerms":["Number Sign","Twitter","instagram","pound","social media","tag"]},{"title":"fa-solid fa-hat-cowboy","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fa-solid fa-hat-cowboy-side","searchTerms":["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{"title":"fa-solid fa-hat-wizard","searchTerms":["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{"title":"fa-solid fa-head-side-cough","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fa-solid fa-head-side-cough-slash","searchTerms":["cough","covid-19","germs","lungs","respiratory","sick"]},{"title":"fa-solid fa-head-side-mask","searchTerms":["breath","coronavirus","covid-19","filter","flu","infection","pandemic","respirator","virus"]},{"title":"fa-solid fa-head-side-virus","searchTerms":["cold","coronavirus","covid-19","flu","infection","pandemic","sick"]},{"title":"fa-solid fa-heading","searchTerms":["format","header","text","title"]},{"title":"fa-solid fa-headphones","searchTerms":["audio","earbud","headphone","listen","music","sound","speaker"]},{"title":"fa-solid fa-headphones-simple","searchTerms":["audio","listen","music","sound","speaker"]},{"title":"fa-solid fa-headset","searchTerms":["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{"title":"fa-solid fa-heart","searchTerms":["black","black heart","blue","blue heart","brown","brown heart","card","evil","favorite","game","green","green heart","heart","heart suit","like","love","orange","orange heart","purple","purple heart","red heart","relationship","valentine","white","white heart","wicked","yellow","yellow heart"]},{"title":"fa-regular fa-heart","searchTerms":["black","black heart","blue","blue heart","brown","brown heart","card","evil","favorite","game","green","green heart","heart","heart suit","like","love","orange","orange heart","purple","purple heart","red heart","relationship","valentine","white","white heart","wicked","yellow","yellow heart"]},{"title":"fa-solid fa-heart-circle-bolt","searchTerms":["cardiogram","ekg","electric","heart","love","pacemaker"]},{"title":"fa-solid fa-heart-circle-check","searchTerms":["favorite","heart","love","not affected","ok","okay"]},{"title":"fa-solid fa-heart-circle-exclamation","searchTerms":["favorite","heart","love"]},{"title":"fa-solid fa-heart-circle-minus","searchTerms":["favorite","heart","love"]},{"title":"fa-solid fa-heart-circle-plus","searchTerms":["favorite","heart","love"]},{"title":"fa-solid fa-heart-circle-xmark","searchTerms":["favorite","heart","love"]},{"title":"fa-solid fa-heart-crack","searchTerms":["break","breakup","broken","broken heart","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{"title":"fa-solid fa-heart-pulse","searchTerms":["ekg","electrocardiogram","health","lifeline","vital signs"]},{"title":"fa-solid fa-helicopter","searchTerms":["airwolf","apache","chopper","flight","fly","helicopter","travel","vehicle"]},{"title":"fa-solid fa-helicopter-symbol","searchTerms":["chopper","helicopter","landing pad","whirlybird"]},{"title":"fa-solid fa-helmet-safety","searchTerms":["construction","hardhat","helmet","safety"]},{"title":"fa-solid fa-helmet-un","searchTerms":["helmet","united nations"]},{"title":"fa-solid fa-highlighter","searchTerms":["edit","marker","sharpie","update","write"]},{"title":"fa-solid fa-hill-avalanche","searchTerms":["mudslide","snow","winter"]},{"title":"fa-solid fa-hill-rockslide","searchTerms":["mudslide"]},{"title":"fa-solid fa-hippo","searchTerms":["animal","fauna","hippo","hippopotamus","hungry","mammal"]},{"title":"fa-brands fa-hips","searchTerms":[]},{"title":"fa-brands fa-hire-a-helper","searchTerms":[]},{"title":"fa-brands fa-hive","searchTerms":[]},{"title":"fa-solid fa-hockey-puck","searchTerms":["ice","nhl","sport"]},{"title":"fa-solid fa-holly-berry","searchTerms":["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{"title":"fa-brands fa-hooli","searchTerms":[]},{"title":"fa-brands fa-hornbill","searchTerms":[]},{"title":"fa-solid fa-horse","searchTerms":["equestrian","equus","fauna","horse","mammmal","mare","neigh","pony","racehorse","racing"]},{"title":"fa-solid fa-horse-head","searchTerms":["equus","fauna","mammmal","mare","neigh","pony"]},{"title":"fa-solid fa-hospital","searchTerms":["building","covid-19","doctor","emergency room","hospital","medical center","medicine"]},{"title":"fa-regular fa-hospital","searchTerms":["building","covid-19","doctor","emergency room","hospital","medical center","medicine"]},{"title":"fa-solid fa-hospital-user","searchTerms":["covid-19","doctor","network","patient","primary care"]},{"title":"fa-solid fa-hot-tub-person","searchTerms":["jacuzzi","spa"]},{"title":"fa-solid fa-hotdog","searchTerms":["bun","chili","frankfurt","frankfurter","hot dog","hotdog","kosher","polish","sandwich","sausage","vienna","weiner"]},{"title":"fa-solid fa-hotel","searchTerms":["building","hotel","inn","lodging","motel","resort","travel"]},{"title":"fa-brands fa-hotjar","searchTerms":[]},{"title":"fa-solid fa-hourglass","searchTerms":["hour","hourglass","hourglass not done","minute","sand","stopwatch","time","timer"]},{"title":"fa-regular fa-hourglass","searchTerms":["hour","hourglass","hourglass not done","minute","sand","stopwatch","time","timer"]},{"title":"fa-solid fa-hourglass-end","searchTerms":["hour","hourglass done","minute","sand","stopwatch","time","timer"]},{"title":"fa-solid fa-hourglass-half","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fa-regular fa-hourglass-half","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fa-solid fa-hourglass-start","searchTerms":["hour","minute","sand","stopwatch","time"]},{"title":"fa-solid fa-house","searchTerms":["abode","building","home","house","main","residence"]},{"title":"fa-solid fa-house-chimney","searchTerms":["abode","building","chimney","house","main","residence","smokestack"]},{"title":"fa-solid fa-house-chimney-crack","searchTerms":["building","devastation","disaster","earthquake","home","insurance"]},{"title":"fa-solid fa-house-chimney-medical","searchTerms":["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{"title":"fa-solid fa-house-chimney-user","searchTerms":["covid-19","home","isolation","quarantine"]},{"title":"fa-solid fa-house-chimney-window","searchTerms":["abode","building","family","home","residence"]},{"title":"fa-solid fa-house-circle-check","searchTerms":["abode","home","house","not affected","ok","okay"]},{"title":"fa-solid fa-house-circle-exclamation","searchTerms":["abode","affected","home","house"]},{"title":"fa-solid fa-house-circle-xmark","searchTerms":["abode","destroy","home","house"]},{"title":"fa-solid fa-house-crack","searchTerms":["building","devastation","disaster","earthquake","home","insurance"]},{"title":"fa-solid fa-house-fire","searchTerms":["burn","emergency","home"]},{"title":"fa-solid fa-house-flag","searchTerms":["camp","home"]},{"title":"fa-solid fa-house-flood-water","searchTerms":["damage","flood","water"]},{"title":"fa-solid fa-house-flood-water-circle-arrow-right","searchTerms":["damage","flood","water"]},{"title":"fa-solid fa-house-laptop","searchTerms":["computer","covid-19","device","office","remote","work from home"]},{"title":"fa-solid fa-house-lock","searchTerms":["closed","home","house","lockdown","quarantine"]},{"title":"fa-solid fa-house-medical","searchTerms":["covid-19","doctor","facility","general practitioner","health","hospital","infirmary","medicine","office","outpatient"]},{"title":"fa-solid fa-house-medical-circle-check","searchTerms":["clinic","hospital","not affected","ok","okay"]},{"title":"fa-solid fa-house-medical-circle-exclamation","searchTerms":["affected","clinic","hospital"]},{"title":"fa-solid fa-house-medical-circle-xmark","searchTerms":["clinic","destroy","hospital"]},{"title":"fa-solid fa-house-medical-flag","searchTerms":["clinic","hospital","mash"]},{"title":"fa-solid fa-house-signal","searchTerms":["abode","building","connect","family","home","residence","smart home","wifi"]},{"title":"fa-solid fa-house-tsunami","searchTerms":["damage","flood","tidal wave","wave"]},{"title":"fa-solid fa-house-user","searchTerms":["house"]},{"title":"fa-brands fa-houzz","searchTerms":[]},{"title":"fa-solid fa-hryvnia-sign","searchTerms":["Hryvnia Sign","currency"]},{"title":"fa-brands fa-html5","searchTerms":[]},{"title":"fa-brands fa-hubspot","searchTerms":[]},{"title":"fa-solid fa-hurricane","searchTerms":["coriolis effect","eye","storm","tropical cyclone","typhoon"]},{"title":"fa-solid fa-i","searchTerms":["Latin Capital Letter I","Latin Small Letter I","letter"]},{"title":"fa-solid fa-i-cursor","searchTerms":["editing","i-beam","type","writing"]},{"title":"fa-solid fa-ice-cream","searchTerms":["chocolate","cone","cream","dessert","frozen","ice","ice cream","scoop","sorbet","sweet","vanilla","yogurt"]},{"title":"fa-solid fa-icicles","searchTerms":["cold","frozen","hanging","ice","seasonal","sharp"]},{"title":"fa-solid fa-icons","searchTerms":["bolt","emoji","heart","image","music","photo","symbols"]},{"title":"fa-solid fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"fa-regular fa-id-badge","searchTerms":["address","contact","identification","license","profile"]},{"title":"fa-solid fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile","registration"]},{"title":"fa-regular fa-id-card","searchTerms":["contact","demographics","document","identification","issued","profile","registration"]},{"title":"fa-solid fa-id-card-clip","searchTerms":["contact","demographics","document","identification","issued","profile"]},{"title":"fa-brands fa-ideal","searchTerms":[]},{"title":"fa-solid fa-igloo","searchTerms":["dome","dwelling","eskimo","home","house","ice","snow"]},{"title":"fa-solid fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"fa-regular fa-image","searchTerms":["album","landscape","photo","picture"]},{"title":"fa-solid fa-image-portrait","searchTerms":["id","image","photo","picture","selfie"]},{"title":"fa-solid fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"fa-regular fa-images","searchTerms":["album","landscape","photo","picture"]},{"title":"fa-brands fa-imdb","searchTerms":[]},{"title":"fa-solid fa-inbox","searchTerms":["archive","desk","email","mail","message"]},{"title":"fa-solid fa-indent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fa-solid fa-indian-rupee-sign","searchTerms":["Indian Rupee Sign","currency"]},{"title":"fa-solid fa-industry","searchTerms":["building","factory","industrial","manufacturing","mill","warehouse"]},{"title":"fa-solid fa-infinity","searchTerms":["Infinity","eternity","forever","infinity","math","unbounded","universal"]},{"title":"fa-solid fa-info","searchTerms":["details","help","information","more","support"]},{"title":"fa-brands fa-instagram","searchTerms":[]},{"title":"fa-brands fa-instalod","searchTerms":[]},{"title":"fa-brands fa-intercom","searchTerms":["app","customer","messenger"]},{"title":"fa-brands fa-internet-explorer","searchTerms":["browser","ie"]},{"title":"fa-brands fa-invision","searchTerms":["app","design","interface"]},{"title":"fa-brands fa-ioxhost","searchTerms":[]},{"title":"fa-solid fa-italic","searchTerms":["edit","emphasis","font","format","text","type"]},{"title":"fa-brands fa-itch-io","searchTerms":[]},{"title":"fa-brands fa-itunes","searchTerms":[]},{"title":"fa-brands fa-itunes-note","searchTerms":[]},{"title":"fa-solid fa-j","searchTerms":["Latin Capital Letter J","Latin Small Letter J","letter"]},{"title":"fa-solid fa-jar","searchTerms":["jam","jelly","storage"]},{"title":"fa-solid fa-jar-wheat","searchTerms":["flour","storage"]},{"title":"fa-brands fa-java","searchTerms":[]},{"title":"fa-solid fa-jedi","searchTerms":["crest","force","sith","skywalker","star wars","yoda"]},{"title":"fa-brands fa-jedi-order","searchTerms":["star wars"]},{"title":"fa-brands fa-jenkins","searchTerms":[]},{"title":"fa-solid fa-jet-fighter","searchTerms":["airforce","airplane","airport","fast","fly","goose","marines","maverick","military","plane","quick","top gun","transportation","travel"]},{"title":"fa-solid fa-jet-fighter-up","searchTerms":["airforce","airplane","airport","fast","fly","goose","marines","maverick","military","plane","quick","top gun","transportation","travel"]},{"title":"fa-brands fa-jira","searchTerms":["atlassian"]},{"title":"fa-brands fa-joget","searchTerms":[]},{"title":"fa-solid fa-joint","searchTerms":["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{"title":"fa-brands fa-joomla","searchTerms":[]},{"title":"fa-brands fa-js","searchTerms":[]},{"title":"fa-brands fa-jsfiddle","searchTerms":[]},{"title":"fa-solid fa-jug-detergent","searchTerms":["detergent","laundry","soap","wash"]},{"title":"fa-solid fa-k","searchTerms":["Latin Capital Letter K","Latin Small Letter K","letter"]},{"title":"fa-solid fa-kaaba","searchTerms":["Muslim","building","cube","islam","kaaba","muslim","religion"]},{"title":"fa-brands fa-kaggle","searchTerms":[]},{"title":"fa-solid fa-key","searchTerms":["key","lock","password","private","secret","unlock"]},{"title":"fa-brands fa-keybase","searchTerms":[]},{"title":"fa-solid fa-keyboard","searchTerms":["accessory","computer","edit","input","keyboard","text","type","write"]},{"title":"fa-regular fa-keyboard","searchTerms":["accessory","computer","edit","input","keyboard","text","type","write"]},{"title":"fa-brands fa-keycdn","searchTerms":[]},{"title":"fa-solid fa-khanda","searchTerms":["Adi Shakti","chakkar","sikh","sikhism","sword"]},{"title":"fa-brands fa-kickstarter","searchTerms":[]},{"title":"fa-brands fa-kickstarter-k","searchTerms":[]},{"title":"fa-solid fa-kip-sign","searchTerms":["Kip Sign","currency"]},{"title":"fa-solid fa-kit-medical","searchTerms":["emergency","emt","health","medical","rescue"]},{"title":"fa-solid fa-kitchen-set","searchTerms":["chef","cook","cup","kitchen","pan","pot","skillet"]},{"title":"fa-solid fa-kiwi-bird","searchTerms":["bird","fauna","new zealand"]},{"title":"fa-brands fa-korvue","searchTerms":[]},{"title":"fa-solid fa-l","searchTerms":["Latin Capital Letter L","Latin Small Letter L","letter"]},{"title":"fa-solid fa-land-mine-on","searchTerms":["bomb","danger","explosion","war"]},{"title":"fa-solid fa-landmark","searchTerms":["building","classical","historic","memorable","monument","museum","politics"]},{"title":"fa-solid fa-landmark-dome","searchTerms":["building","historic","memorable","monument","politics"]},{"title":"fa-solid fa-landmark-flag","searchTerms":["capitol","flag","landmark","memorial"]},{"title":"fa-solid fa-language","searchTerms":["dialect","idiom","localize","speech","translate","vernacular"]},{"title":"fa-solid fa-laptop","searchTerms":["computer","cpu","dell","demo","device","laptop","mac","macbook","machine","pc","personal"]},{"title":"fa-solid fa-laptop-code","searchTerms":["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{"title":"fa-solid fa-laptop-file","searchTerms":["computer","education","laptop","learning","remote work"]},{"title":"fa-solid fa-laptop-medical","searchTerms":["computer","device","ehr","electronic health records","history"]},{"title":"fa-brands fa-laravel","searchTerms":[]},{"title":"fa-solid fa-lari-sign","searchTerms":["Lari Sign","currency"]},{"title":"fa-brands fa-lastfm","searchTerms":[]},{"title":"fa-solid fa-layer-group","searchTerms":["arrange","develop","layers","map","stack"]},{"title":"fa-solid fa-leaf","searchTerms":["eco","flora","nature","plant","vegan"]},{"title":"fa-brands fa-leanpub","searchTerms":[]},{"title":"fa-solid fa-left-long","searchTerms":["back","long-arrow-left","previous"]},{"title":"fa-solid fa-left-right","searchTerms":["arrow","arrows-h","expand","horizontal","landscape","left-right arrow","resize","wide"]},{"title":"fa-solid fa-lemon","searchTerms":["citrus","fruit","lemon","lemonade","lime","tart"]},{"title":"fa-regular fa-lemon","searchTerms":["citrus","fruit","lemon","lemonade","lime","tart"]},{"title":"fa-brands fa-less","searchTerms":[]},{"title":"fa-solid fa-less-than","searchTerms":["Less-Than Sign","arithmetic","compare","math"]},{"title":"fa-solid fa-less-than-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fa-solid fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"fa-regular fa-life-ring","searchTerms":["coast guard","help","overboard","save","support"]},{"title":"fa-solid fa-lightbulb","searchTerms":[" comic"," electric"," idea"," innovation"," inspiration"," light"," light bulb"," bulb","bulb","comic","electric","energy","idea","inspiration","mechanical"]},{"title":"fa-regular fa-lightbulb","searchTerms":[" comic"," electric"," idea"," innovation"," inspiration"," light"," light bulb"," bulb","bulb","comic","electric","energy","idea","inspiration","mechanical"]},{"title":"fa-brands fa-line","searchTerms":[]},{"title":"fa-solid fa-lines-leaning","searchTerms":["canted","domino","falling","resilience","resilient","tipped"]},{"title":"fa-solid fa-link","searchTerms":["attach","attachment","chain","connect","lin","link"]},{"title":"fa-solid fa-link-slash","searchTerms":["attachment","chain","chain-broken","remove"]},{"title":"fa-brands fa-linkedin","searchTerms":["linkedin-square"]},{"title":"fa-brands fa-linkedin-in","searchTerms":["linkedin"]},{"title":"fa-brands fa-linode","searchTerms":[]},{"title":"fa-brands fa-linux","searchTerms":["tux"]},{"title":"fa-solid fa-lira-sign","searchTerms":["Lira Sign","currency"]},{"title":"fa-solid fa-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fa-solid fa-list-check","searchTerms":["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{"title":"fa-solid fa-list-ol","searchTerms":["checklist","completed","done","finished","numbers","ol","todo","ul"]},{"title":"fa-solid fa-list-ul","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fa-solid fa-litecoin-sign","searchTerms":["currency"]},{"title":"fa-solid fa-location-arrow","searchTerms":["address","compass","coordinate","direction","gps","map","navigation","place"]},{"title":"fa-solid fa-location-crosshairs","searchTerms":["address","coordinate","direction","gps","location","map","navigation","place","where"]},{"title":"fa-solid fa-location-dot","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fa-solid fa-location-pin","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fa-solid fa-location-pin-lock","searchTerms":["closed","lockdown","map","quarantine"]},{"title":"fa-solid fa-lock","searchTerms":["admin","closed","lock","locked","open","password","private","protect","security"]},{"title":"fa-solid fa-lock-open","searchTerms":["admin","lock","open","password","private","protect","security","unlock"]},{"title":"fa-solid fa-locust","searchTerms":["horde","infestation","locust","plague","swarm"]},{"title":"fa-solid fa-lungs","searchTerms":["air","breath","covid-19","exhalation","inhalation","lungs","organ","respiration","respiratory"]},{"title":"fa-solid fa-lungs-virus","searchTerms":["breath","coronavirus","covid-19","flu","infection","pandemic","respiratory","sick"]},{"title":"fa-brands fa-lyft","searchTerms":[]},{"title":"fa-solid fa-m","searchTerms":["Latin Capital Letter M","Latin Small Letter M","letter"]},{"title":"fa-brands fa-magento","searchTerms":[]},{"title":"fa-solid fa-magnet","searchTerms":["Attract","attraction","horseshoe","lodestone","magnet","magnetic","tool"]},{"title":"fa-solid fa-magnifying-glass","searchTerms":["bigger","enlarge","find","glass","magnify","magnifying","magnifying glass tilted left","preview","search","tool","zoom"]},{"title":"fa-solid fa-magnifying-glass-arrow-right","searchTerms":["find","next","search"]},{"title":"fa-solid fa-magnifying-glass-chart","searchTerms":[" data"," graph"," intelligence","analysis","chart","market"]},{"title":"fa-solid fa-magnifying-glass-dollar","searchTerms":["bigger","enlarge","find","magnify","money","preview","zoom"]},{"title":"fa-solid fa-magnifying-glass-location","searchTerms":["bigger","enlarge","find","magnify","preview","zoom"]},{"title":"fa-solid fa-magnifying-glass-minus","searchTerms":["minify","negative","smaller","zoom","zoom out"]},{"title":"fa-solid fa-magnifying-glass-plus","searchTerms":["bigger","enlarge","magnify","positive","zoom","zoom in"]},{"title":"fa-brands fa-mailchimp","searchTerms":[]},{"title":"fa-solid fa-manat-sign","searchTerms":["Manat Sign","currency"]},{"title":"fa-brands fa-mandalorian","searchTerms":[]},{"title":"fa-solid fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel","world","world map"]},{"title":"fa-regular fa-map","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel","world","world map"]},{"title":"fa-solid fa-map-location","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fa-solid fa-map-location-dot","searchTerms":["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{"title":"fa-solid fa-map-pin","searchTerms":["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","pushpin","round pushpin","travel"]},{"title":"fa-brands fa-markdown","searchTerms":[]},{"title":"fa-solid fa-marker","searchTerms":["design","edit","sharpie","update","write"]},{"title":"fa-solid fa-mars","searchTerms":["gender","male","male sign","man"]},{"title":"fa-solid fa-mars-and-venus","searchTerms":["Male and Female Sign","female","gender","intersex","male","transgender"]},{"title":"fa-solid fa-mars-and-venus-burst","searchTerms":["gender","violence"]},{"title":"fa-solid fa-mars-double","searchTerms":["Doubled Male Sign","gay","gender","male","men"]},{"title":"fa-solid fa-mars-stroke","searchTerms":["Male with Stroke Sign","gender","transgender"]},{"title":"fa-solid fa-mars-stroke-right","searchTerms":["Horizontal Male with Stroke Sign","gender"]},{"title":"fa-solid fa-mars-stroke-up","searchTerms":["Vertical Male with Stroke Sign","gender"]},{"title":"fa-solid fa-martini-glass","searchTerms":["alcohol","bar","beverage","cocktail","cocktail glass","drink","glass","liquor"]},{"title":"fa-solid fa-martini-glass-citrus","searchTerms":["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{"title":"fa-solid fa-martini-glass-empty","searchTerms":["alcohol","bar","beverage","drink","liquor"]},{"title":"fa-solid fa-mask","searchTerms":["carnivale","costume","disguise","halloween","secret","super hero"]},{"title":"fa-solid fa-mask-face","searchTerms":["breath","coronavirus","covid-19","filter","flu","infection","pandemic","respirator","virus"]},{"title":"fa-solid fa-mask-ventilator","searchTerms":["breath","gas","mask","oxygen","respirator","ventilator"]},{"title":"fa-solid fa-masks-theater","searchTerms":["art","comedy","mask","perform","performing","performing arts","theater","theatre","tragedy"]},{"title":"fa-brands fa-mastodon","searchTerms":[]},{"title":"fa-solid fa-mattress-pillow","searchTerms":["air mattress","mattress","pillow","rest","sleep"]},{"title":"fa-brands fa-maxcdn","searchTerms":[]},{"title":"fa-solid fa-maximize","searchTerms":["bigger","enlarge","fullscreen","move","resize"]},{"title":"fa-brands fa-mdb","searchTerms":[]},{"title":"fa-solid fa-medal","searchTerms":["award","medal","ribbon","sports medal","star","trophy"]},{"title":"fa-brands fa-medapps","searchTerms":[]},{"title":"fa-brands fa-medium","searchTerms":[]},{"title":"fa-brands fa-medrt","searchTerms":[]},{"title":"fa-brands fa-meetup","searchTerms":[]},{"title":"fa-brands fa-megaport","searchTerms":[]},{"title":"fa-solid fa-memory","searchTerms":["DIMM","RAM","hardware","storage","technology"]},{"title":"fa-brands fa-mendeley","searchTerms":[]},{"title":"fa-solid fa-menorah","searchTerms":["candle","hanukkah","jewish","judaism","light"]},{"title":"fa-solid fa-mercury","searchTerms":["Mercury","gender","hybrid","transgender"]},{"title":"fa-solid fa-message","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-regular fa-message","searchTerms":["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{"title":"fa-brands fa-meta","searchTerms":[]},{"title":"fa-solid fa-meteor","searchTerms":["armageddon","asteroid","comet","shooting star","space"]},{"title":"fa-brands fa-microblog","searchTerms":[]},{"title":"fa-solid fa-microchip","searchTerms":["cpu","hardware","processor","technology"]},{"title":"fa-solid fa-microphone","searchTerms":["address","audio","information","podcast","public","record","sing","sound","voice"]},{"title":"fa-solid fa-microphone-lines","searchTerms":["audio","mic","microphone","music","podcast","record","sing","sound","studio","studio microphone","voice"]},{"title":"fa-solid fa-microphone-lines-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fa-solid fa-microphone-slash","searchTerms":["audio","disable","mute","podcast","record","sing","sound","voice"]},{"title":"fa-solid fa-microscope","searchTerms":["covid-19","electron","lens","microscope","optics","science","shrink","testing","tool"]},{"title":"fa-brands fa-microsoft","searchTerms":[]},{"title":"fa-solid fa-mill-sign","searchTerms":["Mill Sign","currency"]},{"title":"fa-solid fa-minimize","searchTerms":["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{"title":"fa-solid fa-minus","searchTerms":["En Dash","Minus Sign","collapse","delete","hide","math","minify","minus","negative","remove","sign","trash","\u2212"]},{"title":"fa-solid fa-mitten","searchTerms":["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{"title":"fa-brands fa-mix","searchTerms":[]},{"title":"fa-brands fa-mixcloud","searchTerms":[]},{"title":"fa-brands fa-mixer","searchTerms":[]},{"title":"fa-brands fa-mizuni","searchTerms":[]},{"title":"fa-solid fa-mobile","searchTerms":["android","call","cell","cell phone","device","mobile","mobile phone","number","phone","screen","telephone","text"]},{"title":"fa-solid fa-mobile-button","searchTerms":["apple","call","cell phone","device","iphone","number","screen","telephone"]},{"title":"fa-solid fa-mobile-retro","searchTerms":["cellphone","cellular","phone"]},{"title":"fa-solid fa-mobile-screen","searchTerms":["android","call","cell phone","device","number","screen","telephone","text"]},{"title":"fa-solid fa-mobile-screen-button","searchTerms":["apple","call","cell phone","device","iphone","number","screen","telephone"]},{"title":"fa-brands fa-modx","searchTerms":[]},{"title":"fa-brands fa-monero","searchTerms":[]},{"title":"fa-solid fa-money-bill","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fa-solid fa-money-bill-1","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fa-regular fa-money-bill-1","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fa-solid fa-money-bill-1-wave","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fa-solid fa-money-bill-transfer","searchTerms":["bank","conversion","deposit","money","transfer","withdrawal"]},{"title":"fa-solid fa-money-bill-trend-up","searchTerms":["bank","bonds","inflation","market","stocks","trade"]},{"title":"fa-solid fa-money-bill-wave","searchTerms":["buy","cash","checkout","money","payment","price","purchase"]},{"title":"fa-solid fa-money-bill-wheat","searchTerms":["agribusiness","agriculture","farming","food","livelihood","subsidy"]},{"title":"fa-solid fa-money-bills","searchTerms":["atm","cash","money","moolah"]},{"title":"fa-solid fa-money-check","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fa-solid fa-money-check-dollar","searchTerms":["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{"title":"fa-solid fa-monument","searchTerms":["building","historic","landmark","memorable"]},{"title":"fa-solid fa-moon","searchTerms":["Power Sleep Symbol","contrast","crescent","crescent moon","dark","lunar","moon","night"]},{"title":"fa-regular fa-moon","searchTerms":["Power Sleep Symbol","contrast","crescent","crescent moon","dark","lunar","moon","night"]},{"title":"fa-solid fa-mortar-pestle","searchTerms":["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{"title":"fa-solid fa-mosque","searchTerms":["Muslim","building","islam","landmark","mosque","muslim","religion"]},{"title":"fa-solid fa-mosquito","searchTerms":["bite","bug","mosquito","west nile"]},{"title":"fa-solid fa-mosquito-net","searchTerms":["bite","malaria","mosquito","net"]},{"title":"fa-solid fa-motorcycle","searchTerms":["bike","machine","motorcycle","racing","transportation","vehicle"]},{"title":"fa-solid fa-mound","searchTerms":["barrier","hill","pitcher","speedbump"]},{"title":"fa-solid fa-mountain","searchTerms":["cold","glacier","hiking","hill","landscape","mountain","snow","snow-capped mountain","travel","view"]},{"title":"fa-solid fa-mountain-city","searchTerms":["location","rural","urban"]},{"title":"fa-solid fa-mountain-sun","searchTerms":["country","hiking","landscape","rural","travel","view"]},{"title":"fa-solid fa-mug-hot","searchTerms":["beverage","caliente","cocoa","coffee","cup","drink","holiday","hot","hot beverage","hot chocolate","steam","steaming","tea","warmth"]},{"title":"fa-solid fa-mug-saucer","searchTerms":["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{"title":"fa-solid fa-music","searchTerms":["lyrics","melody","music","musical note","note","sing","sound"]},{"title":"fa-solid fa-n","searchTerms":["Latin Capital Letter N","Latin Small Letter N","letter","nay","no"]},{"title":"fa-solid fa-naira-sign","searchTerms":["Naira Sign","currency"]},{"title":"fa-brands fa-napster","searchTerms":[]},{"title":"fa-brands fa-neos","searchTerms":[]},{"title":"fa-solid fa-network-wired","searchTerms":["computer","connect","ethernet","internet","intranet"]},{"title":"fa-solid fa-neuter","searchTerms":["Neuter","gender"]},{"title":"fa-solid fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","newspaper","paper","press"]},{"title":"fa-regular fa-newspaper","searchTerms":["article","editorial","headline","journal","journalism","news","newspaper","paper","press"]},{"title":"fa-brands fa-nfc-directional","searchTerms":["connect","data","near field communication","nfc","scan","signal","transfer","wireless"]},{"title":"fa-brands fa-nfc-symbol","searchTerms":["connect","data","near field communication","nfc","scan","signal","transfer","wireless"]},{"title":"fa-brands fa-nimblr","searchTerms":[]},{"title":"fa-brands fa-node","searchTerms":[]},{"title":"fa-brands fa-node-js","searchTerms":[]},{"title":"fa-solid fa-not-equal","searchTerms":["arithmetic","compare","math"]},{"title":"fa-solid fa-notdef","searchTerms":["close","missing"]},{"title":"fa-solid fa-note-sticky","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"fa-regular fa-note-sticky","searchTerms":["message","note","paper","reminder","sticker"]},{"title":"fa-solid fa-notes-medical","searchTerms":["clipboard","doctor","ehr","health","history","records"]},{"title":"fa-brands fa-npm","searchTerms":[]},{"title":"fa-brands fa-ns8","searchTerms":[]},{"title":"fa-brands fa-nutritionix","searchTerms":[]},{"title":"fa-solid fa-o","searchTerms":["Latin Capital Letter O","Latin Small Letter O","letter"]},{"title":"fa-solid fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"fa-regular fa-object-group","searchTerms":["combine","copy","design","merge","select"]},{"title":"fa-solid fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"fa-regular fa-object-ungroup","searchTerms":["copy","design","merge","select","separate"]},{"title":"fa-brands fa-octopus-deploy","searchTerms":[]},{"title":"fa-brands fa-odnoklassniki","searchTerms":[]},{"title":"fa-brands fa-odysee","searchTerms":[]},{"title":"fa-solid fa-oil-can","searchTerms":["auto","crude","gasoline","grease","lubricate","petroleum"]},{"title":"fa-solid fa-oil-well","searchTerms":["drill","oil","rig"]},{"title":"fa-brands fa-old-republic","searchTerms":["politics","star wars"]},{"title":"fa-solid fa-om","searchTerms":["Hindu","buddhism","hinduism","jainism","mantra","om","religion"]},{"title":"fa-brands fa-opencart","searchTerms":[]},{"title":"fa-brands fa-openid","searchTerms":[]},{"title":"fa-brands fa-opera","searchTerms":[]},{"title":"fa-brands fa-optin-monster","searchTerms":[]},{"title":"fa-brands fa-orcid","searchTerms":[]},{"title":"fa-brands fa-osi","searchTerms":[]},{"title":"fa-solid fa-otter","searchTerms":["animal","badger","fauna","fishing","fur","mammal","marten","otter","playful"]},{"title":"fa-solid fa-outdent","searchTerms":["align","justify","paragraph","tab"]},{"title":"fa-solid fa-p","searchTerms":["Latin Capital Letter P","Latin Small Letter P","letter"]},{"title":"fa-brands fa-padlet","searchTerms":[]},{"title":"fa-brands fa-page4","searchTerms":[]},{"title":"fa-brands fa-pagelines","searchTerms":["eco","flora","leaf","leaves","nature","plant","tree"]},{"title":"fa-solid fa-pager","searchTerms":["beeper","cell phone","communication","page","pager"]},{"title":"fa-solid fa-paint-roller","searchTerms":["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{"title":"fa-solid fa-paintbrush","searchTerms":["acrylic","art","brush","color","fill","paint","paintbrush","painting","pigment","watercolor"]},{"title":"fa-solid fa-palette","searchTerms":["acrylic","art","artist palette","brush","color","fill","museum","paint","painting","palette","pigment","watercolor"]},{"title":"fa-brands fa-palfed","searchTerms":[]},{"title":"fa-solid fa-pallet","searchTerms":["archive","box","inventory","shipping","warehouse"]},{"title":"fa-solid fa-panorama","searchTerms":["image","landscape","photo","wide"]},{"title":"fa-solid fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"fa-regular fa-paper-plane","searchTerms":["air","float","fold","mail","paper","send"]},{"title":"fa-solid fa-paperclip","searchTerms":["attach","attachment","connect","link","papercli","paperclip"]},{"title":"fa-solid fa-parachute-box","searchTerms":["aid","assistance","goods","relief","rescue","supplies"]},{"title":"fa-solid fa-paragraph","searchTerms":["Pilcrow Sign","edit","format","text","writing"]},{"title":"fa-solid fa-passport","searchTerms":["document","id","identification","issued","travel"]},{"title":"fa-solid fa-paste","searchTerms":["clipboard","copy","document","paper"]},{"title":"fa-regular fa-paste","searchTerms":["clipboard","copy","document","paper"]},{"title":"fa-brands fa-patreon","searchTerms":[]},{"title":"fa-solid fa-pause","searchTerms":["bar","double","hold","pause","pause button","vertical","wait"]},{"title":"fa-solid fa-paw","searchTerms":["animal","cat","dog","pet","print"]},{"title":"fa-brands fa-paypal","searchTerms":[]},{"title":"fa-solid fa-peace","searchTerms":["peace","peace symbol","serenity","tranquility","truce","war"]},{"title":"fa-solid fa-pen","searchTerms":["ballpoint","design","edit","pen","update","write"]},{"title":"fa-solid fa-pen-clip","searchTerms":["design","edit","update","write"]},{"title":"fa-solid fa-pen-fancy","searchTerms":["black nib","design","edit","fountain","fountain pen","nib","pen","update","write"]},{"title":"fa-solid fa-pen-nib","searchTerms":["design","edit","fountain pen","update","write"]},{"title":"fa-solid fa-pen-ruler","searchTerms":["design","draft","draw","pencil"]},{"title":"fa-solid fa-pen-to-square","searchTerms":["edit","pen","pencil","update","write"]},{"title":"fa-regular fa-pen-to-square","searchTerms":["edit","pen","pencil","update","write"]},{"title":"fa-solid fa-pencil","searchTerms":["Lower Left Pencil","design","draw","edit","lead","pencil","update","write"]},{"title":"fa-solid fa-people-arrows","searchTerms":["distance","isolation","separate","social distancing","users-people"]},{"title":"fa-solid fa-people-carry-box","searchTerms":["users-people"]},{"title":"fa-solid fa-people-group","searchTerms":["family","group","team"]},{"title":"fa-solid fa-people-line","searchTerms":["group","need"]},{"title":"fa-solid fa-people-pulling","searchTerms":["forced return","yanking"]},{"title":"fa-solid fa-people-robbery","searchTerms":["criminal","hands up","looting","robbery","steal"]},{"title":"fa-solid fa-people-roof","searchTerms":["family","group","manage","people","safe","shelter"]},{"title":"fa-solid fa-pepper-hot","searchTerms":["buffalo wings","capsicum","chili","chilli","habanero","hot","hot pepper","jalapeno","mexican","pepper","spicy","tabasco","vegetable"]},{"title":"fa-brands fa-perbyte","searchTerms":[]},{"title":"fa-solid fa-percent","searchTerms":["Percent Sign","discount","fraction","proportion","rate","ratio"]},{"title":"fa-brands fa-periscope","searchTerms":[]},{"title":"fa-solid fa-person","searchTerms":["man","person standing","stand","standing","woman"]},{"title":"fa-solid fa-person-arrow-down-to-line","searchTerms":["ground","indigenous","native"]},{"title":"fa-solid fa-person-arrow-up-from-line","searchTerms":["population","rise"]},{"title":"fa-solid fa-person-biking","searchTerms":["bicycle","bike","biking","cyclist","pedal","person biking","summer","wheel"]},{"title":"fa-solid fa-person-booth","searchTerms":["changing room","curtain","vote","voting"]},{"title":"fa-solid fa-person-breastfeeding","searchTerms":["baby","child","infant","mother","nutrition","sustenance"]},{"title":"fa-solid fa-person-burst","searchTerms":["abuse","accident","crash","explode","violence"]},{"title":"fa-solid fa-person-cane","searchTerms":["aging","cane","elderly","old","staff"]},{"title":"fa-solid fa-person-chalkboard","searchTerms":["blackboard","instructor","keynote","lesson","presentation","teacher"]},{"title":"fa-solid fa-person-circle-check","searchTerms":["approved","not affected","ok","okay"]},{"title":"fa-solid fa-person-circle-exclamation","searchTerms":["affected","alert","lost","missing"]},{"title":"fa-solid fa-person-circle-minus","searchTerms":["delete","remove"]},{"title":"fa-solid fa-person-circle-plus","searchTerms":["add","found"]},{"title":"fa-solid fa-person-circle-question","searchTerms":["lost","missing"]},{"title":"fa-solid fa-person-circle-xmark","searchTerms":["dead","removed"]},{"title":"fa-solid fa-person-digging","searchTerms":["bury","construction","debris","dig","men at work"]},{"title":"fa-solid fa-person-dots-from-line","searchTerms":["allergy","diagnosis"]},{"title":"fa-solid fa-person-dress","searchTerms":["man","skirt","woman"]},{"title":"fa-solid fa-person-dress-burst","searchTerms":["abuse","accident","crash","explode","violence"]},{"title":"fa-solid fa-person-drowning","searchTerms":["drown","emergency","swim"]},{"title":"fa-solid fa-person-falling","searchTerms":["accident","fall","trip"]},{"title":"fa-solid fa-person-falling-burst","searchTerms":["accident","crash","death","fall","homicide","murder"]},{"title":"fa-solid fa-person-half-dress","searchTerms":["gender","man","restroom","transgender","woman"]},{"title":"fa-solid fa-person-harassing","searchTerms":["abuse","scream","shame","shout","yell"]},{"title":"fa-solid fa-person-hiking","searchTerms":["autumn","fall","hike","mountain","outdoors","summer","walk"]},{"title":"fa-solid fa-person-military-pointing","searchTerms":["army","customs","guard"]},{"title":"fa-solid fa-person-military-rifle","searchTerms":["armed forces","army","military","rifle","war"]},{"title":"fa-solid fa-person-military-to-person","searchTerms":["civilian","coordination","military"]},{"title":"fa-solid fa-person-praying","searchTerms":["kneel","place of worship","religion","thank","worship"]},{"title":"fa-solid fa-person-pregnant","searchTerms":["baby","birth","child","pregnant","pregnant woman","woman"]},{"title":"fa-solid fa-person-rays","searchTerms":["affected","focus","shine"]},{"title":"fa-solid fa-person-rifle","searchTerms":["army","combatant","gun","military","rifle","war"]},{"title":"fa-solid fa-person-running","searchTerms":["exit","flee","marathon","person running","race","running"]},{"title":"fa-solid fa-person-shelter","searchTerms":["house","inside","roof","safe","safety","shelter"]},{"title":"fa-solid fa-person-skating","searchTerms":["figure skating","ice","olympics","rink","skate","winter"]},{"title":"fa-solid fa-person-skiing","searchTerms":["downhill","olympics","ski","skier","snow","winter"]},{"title":"fa-solid fa-person-skiing-nordic","searchTerms":["cross country","olympics","winter"]},{"title":"fa-solid fa-person-snowboarding","searchTerms":["olympics","ski","snow","snowboard","snowboarder","winter"]},{"title":"fa-solid fa-person-swimming","searchTerms":["ocean","person swimming","pool","sea","swim","water"]},{"title":"fa-solid fa-person-through-window","searchTerms":["door","exit","forced entry","leave","robbery","steal","window"]},{"title":"fa-solid fa-person-walking","searchTerms":["crosswalk","exercise","hike","move","person walking","walk","walking"]},{"title":"fa-solid fa-person-walking-arrow-loop-left","searchTerms":["population return","return"]},{"title":"fa-solid fa-person-walking-arrow-right","searchTerms":["exit","internally displaced","leave","refugee"]},{"title":"fa-solid fa-person-walking-dashed-line-arrow-right","searchTerms":["exit","refugee"]},{"title":"fa-solid fa-person-walking-luggage","searchTerms":["bag","baggage","briefcase","carry-on","deployment","rolling"]},{"title":"fa-solid fa-person-walking-with-cane","searchTerms":["blind","cane"]},{"title":"fa-solid fa-peseta-sign","searchTerms":["Peseta Sign","currency"]},{"title":"fa-solid fa-peso-sign","searchTerms":["Peso Sign","currency"]},{"title":"fa-brands fa-phabricator","searchTerms":[]},{"title":"fa-brands fa-phoenix-framework","searchTerms":[]},{"title":"fa-brands fa-phoenix-squadron","searchTerms":[]},{"title":"fa-solid fa-phone","searchTerms":["Left Hand Telephone Receiver","call","earphone","number","phone","receiver","support","telephone","telephone receiver","voice"]},{"title":"fa-solid fa-phone-flip","searchTerms":["Right Hand Telephone Receiver","call","earphone","number","support","telephone","voice"]},{"title":"fa-solid fa-phone-slash","searchTerms":["call","cancel","earphone","mute","number","support","telephone","voice"]},{"title":"fa-solid fa-phone-volume","searchTerms":["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{"title":"fa-solid fa-photo-film","searchTerms":["av","film","image","library","media"]},{"title":"fa-brands fa-php","searchTerms":[]},{"title":"fa-brands fa-pied-piper","searchTerms":[]},{"title":"fa-brands fa-pied-piper-alt","searchTerms":[]},{"title":"fa-brands fa-pied-piper-hat","searchTerms":["clothing"]},{"title":"fa-brands fa-pied-piper-pp","searchTerms":[]},{"title":"fa-solid fa-piggy-bank","searchTerms":["bank","save","savings"]},{"title":"fa-solid fa-pills","searchTerms":["drugs","medicine","prescription","tablets"]},{"title":"fa-brands fa-pinterest","searchTerms":[]},{"title":"fa-brands fa-pinterest-p","searchTerms":[]},{"title":"fa-brands fa-pix","searchTerms":[]},{"title":"fa-solid fa-pizza-slice","searchTerms":["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{"title":"fa-solid fa-place-of-worship","searchTerms":["building","church","holy","mosque","synagogue"]},{"title":"fa-solid fa-plane","searchTerms":["airplane","airport","destination","fly","location","mode","travel","trip"]},{"title":"fa-solid fa-plane-arrival","searchTerms":["aeroplane","airplane","airplane arrival","airport","arrivals","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{"title":"fa-solid fa-plane-circle-check","searchTerms":["airplane","airport","flight","fly","not affected","ok","okay","travel"]},{"title":"fa-solid fa-plane-circle-exclamation","searchTerms":["affected","airplane","airport","flight","fly","travel"]},{"title":"fa-solid fa-plane-circle-xmark","searchTerms":["airplane","airport","destroy","flight","fly","travel"]},{"title":"fa-solid fa-plane-departure","searchTerms":["aeroplane","airplane","airplane departure","airport","check-in","departing","departure","departures","destination","fly","location","mode","take off","taking off","travel","trip"]},{"title":"fa-solid fa-plane-lock","searchTerms":["airplane","airport","closed","flight","fly","lockdown","quarantine","travel"]},{"title":"fa-solid fa-plane-slash","searchTerms":["airplane mode","airport","canceled","covid-19","delayed","grounded","travel"]},{"title":"fa-solid fa-plane-up","searchTerms":["airplane","airport","internet","signal","sky","wifi","wireless"]},{"title":"fa-solid fa-plant-wilt","searchTerms":["drought","planting","vegetation","wilt"]},{"title":"fa-solid fa-plate-wheat","searchTerms":["bowl","hunger","rations","wheat"]},{"title":"fa-solid fa-play","searchTerms":["arrow","audio","music","play","play button","playing","right","sound","start","triangle","video"]},{"title":"fa-brands fa-playstation","searchTerms":[]},{"title":"fa-solid fa-plug","searchTerms":["connect","electric","electric plug","electricity","online","plug","power"]},{"title":"fa-solid fa-plug-circle-bolt","searchTerms":["electric","electricity","plug","power"]},{"title":"fa-solid fa-plug-circle-check","searchTerms":["electric","electricity","not affected","ok","okay","plug","power"]},{"title":"fa-solid fa-plug-circle-exclamation","searchTerms":["affected","electric","electricity","plug","power"]},{"title":"fa-solid fa-plug-circle-minus","searchTerms":["electric","electricity","plug","power"]},{"title":"fa-solid fa-plug-circle-plus","searchTerms":["electric","electricity","plug","power"]},{"title":"fa-solid fa-plug-circle-xmark","searchTerms":["destroy","electric","electricity","outage","plug","power"]},{"title":"fa-solid fa-plus","searchTerms":["+","Plus Sign","add","create","expand","math","new","plus","positive","shape","sign"]},{"title":"fa-solid fa-plus-minus","searchTerms":["Plus-Minus Sign","add","math","subtract"]},{"title":"fa-solid fa-podcast","searchTerms":["audio","broadcast","music","sound"]},{"title":"fa-solid fa-poo","searchTerms":["crap","dung","face","monster","pile of poo","poo","poop","shit","smile","turd"]},{"title":"fa-solid fa-poo-storm","searchTerms":["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{"title":"fa-solid fa-poop","searchTerms":["crap","poop","shit","smile","turd"]},{"title":"fa-solid fa-power-off","searchTerms":["Power Symbol","cancel","computer","on","reboot","restart"]},{"title":"fa-solid fa-prescription","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fa-solid fa-prescription-bottle","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fa-solid fa-prescription-bottle-medical","searchTerms":["drugs","medical","medicine","pharmacy","rx"]},{"title":"fa-solid fa-print","searchTerms":["Print Screen Symbol","Printer Icon","business","computer","copy","document","office","paper","printer"]},{"title":"fa-brands fa-product-hunt","searchTerms":[]},{"title":"fa-solid fa-pump-medical","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{"title":"fa-solid fa-pump-soap","searchTerms":["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{"title":"fa-brands fa-pushed","searchTerms":[]},{"title":"fa-solid fa-puzzle-piece","searchTerms":["add-on","addon","clue","game","interlocking","jigsaw","piece","puzzle","puzzle piece","section"]},{"title":"fa-brands fa-python","searchTerms":[]},{"title":"fa-solid fa-q","searchTerms":["Latin Capital Letter Q","Latin Small Letter Q","letter"]},{"title":"fa-brands fa-qq","searchTerms":[]},{"title":"fa-solid fa-qrcode","searchTerms":["barcode","info","information","scan"]},{"title":"fa-solid fa-question","searchTerms":["?","Question Mark","help","information","mark","outlined","punctuation","question","red question mark","support","unknown","white question mark"]},{"title":"fa-brands fa-quinscape","searchTerms":[]},{"title":"fa-brands fa-quora","searchTerms":[]},{"title":"fa-solid fa-quote-left","searchTerms":["Left Double Quotation Mark","mention","note","phrase","text","type"]},{"title":"fa-solid fa-quote-right","searchTerms":["Right Double Quotation Mark","mention","note","phrase","text","type"]},{"title":"fa-solid fa-r","searchTerms":["Latin Capital Letter R","Latin Small Letter R","letter"]},{"title":"fa-brands fa-r-project","searchTerms":[]},{"title":"fa-solid fa-radiation","searchTerms":["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{"title":"fa-solid fa-radio","searchTerms":["am","broadcast","fm","frequency","music","news","radio","receiver","transmitter","tuner","video"]},{"title":"fa-solid fa-rainbow","searchTerms":["gold","leprechaun","prism","rain","rainbow","sky"]},{"title":"fa-solid fa-ranking-star","searchTerms":["chart","first place","podium","rank","win"]},{"title":"fa-brands fa-raspberry-pi","searchTerms":[]},{"title":"fa-brands fa-ravelry","searchTerms":[]},{"title":"fa-brands fa-react","searchTerms":[]},{"title":"fa-brands fa-reacteurope","searchTerms":[]},{"title":"fa-brands fa-readme","searchTerms":[]},{"title":"fa-brands fa-rebel","searchTerms":[]},{"title":"fa-solid fa-receipt","searchTerms":["accounting","bookkeeping","check","evidence","invoice","money","pay","proof","receipt","table"]},{"title":"fa-solid fa-record-vinyl","searchTerms":["LP","album","analog","music","phonograph","sound"]},{"title":"fa-solid fa-rectangle-ad","searchTerms":["advertisement","media","newspaper","promotion","publicity"]},{"title":"fa-solid fa-rectangle-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fa-regular fa-rectangle-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fa-solid fa-rectangle-xmark","searchTerms":["browser","cancel","computer","development"]},{"title":"fa-regular fa-rectangle-xmark","searchTerms":["browser","cancel","computer","development"]},{"title":"fa-solid fa-recycle","searchTerms":["Recycling Symbol For Generic Materials","Universal Recycling Symbol","Waste","compost","garbage","recycle","recycling symbol","reuse","trash"]},{"title":"fa-brands fa-red-river","searchTerms":[]},{"title":"fa-brands fa-reddit","searchTerms":[]},{"title":"fa-brands fa-reddit-alien","searchTerms":[]},{"title":"fa-brands fa-redhat","searchTerms":["linux","operating system","os"]},{"title":"fa-solid fa-registered","searchTerms":["copyright","mark","r","registered","trademark"]},{"title":"fa-regular fa-registered","searchTerms":["copyright","mark","r","registered","trademark"]},{"title":"fa-brands fa-renren","searchTerms":[]},{"title":"fa-solid fa-repeat","searchTerms":["arrow","clockwise","flip","reload","repeat","repeat button","rewind","switch"]},{"title":"fa-solid fa-reply","searchTerms":["mail","message","respond"]},{"title":"fa-solid fa-reply-all","searchTerms":["mail","message","respond"]},{"title":"fa-brands fa-replyd","searchTerms":[]},{"title":"fa-solid fa-republican","searchTerms":["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{"title":"fa-brands fa-researchgate","searchTerms":[]},{"title":"fa-brands fa-resolving","searchTerms":[]},{"title":"fa-solid fa-restroom","searchTerms":["bathroom","toilet","water closet","wc"]},{"title":"fa-solid fa-retweet","searchTerms":["refresh","reload","share","swap"]},{"title":"fa-brands fa-rev","searchTerms":[]},{"title":"fa-solid fa-ribbon","searchTerms":["badge","cause","celebration","lapel","pin","reminder","reminder ribbon","ribbon"]},{"title":"fa-solid fa-right-from-bracket","searchTerms":["arrow","exit","leave","log out","logout","sign-out"]},{"title":"fa-solid fa-right-left","searchTerms":["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{"title":"fa-solid fa-right-long","searchTerms":["forward","long-arrow-right","next"]},{"title":"fa-solid fa-right-to-bracket","searchTerms":["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{"title":"fa-solid fa-ring","searchTerms":["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{"title":"fa-solid fa-road","searchTerms":["highway","map","motorway","pavement","road","route","street","travel"]},{"title":"fa-solid fa-road-barrier","searchTerms":["block","border","no entry","roadblock"]},{"title":"fa-solid fa-road-bridge","searchTerms":["bridge","infrastructure","road","travel"]},{"title":"fa-solid fa-road-circle-check","searchTerms":["freeway","highway","not affected","ok","okay","pavement","road"]},{"title":"fa-solid fa-road-circle-exclamation","searchTerms":["affected","freeway","highway","pavement","road"]},{"title":"fa-solid fa-road-circle-xmark","searchTerms":["destroy","freeway","highway","pavement","road"]},{"title":"fa-solid fa-road-lock","searchTerms":["closed","freeway","highway","lockdown","pavement","quarantine","road"]},{"title":"fa-solid fa-road-spikes","searchTerms":["barrier","roadblock","spikes"]},{"title":"fa-solid fa-robot","searchTerms":["android","automate","computer","cyborg","face","monster","robot"]},{"title":"fa-solid fa-rocket","searchTerms":["aircraft","app","jet","launch","nasa","space"]},{"title":"fa-brands fa-rocketchat","searchTerms":[]},{"title":"fa-brands fa-rockrms","searchTerms":[]},{"title":"fa-solid fa-rotate","searchTerms":["anticlockwise","arrow","counterclockwise","counterclockwise arrows button","exchange","refresh","reload","rotate","swap","withershins"]},{"title":"fa-solid fa-rotate-left","searchTerms":["back","control z","exchange","oops","return","swap"]},{"title":"fa-solid fa-rotate-right","searchTerms":["forward","refresh","reload","repeat"]},{"title":"fa-solid fa-route","searchTerms":["directions","navigation","travel"]},{"title":"fa-solid fa-rss","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fa-solid fa-ruble-sign","searchTerms":["Ruble Sign","currency"]},{"title":"fa-solid fa-rug","searchTerms":["blanket","carpet","rug","textile"]},{"title":"fa-solid fa-ruler","searchTerms":["design","draft","length","measure","planning","ruler","straight edge","straight ruler"]},{"title":"fa-solid fa-ruler-combined","searchTerms":["design","draft","length","measure","planning"]},{"title":"fa-solid fa-ruler-horizontal","searchTerms":["design","draft","length","measure","planning"]},{"title":"fa-solid fa-ruler-vertical","searchTerms":["design","draft","length","measure","planning"]},{"title":"fa-solid fa-rupee-sign","searchTerms":["Rupee Sign","currency"]},{"title":"fa-solid fa-rupiah-sign","searchTerms":["currency"]},{"title":"fa-brands fa-rust","searchTerms":[]},{"title":"fa-solid fa-s","searchTerms":["Latin Capital Letter S","Latin Small Letter S","letter"]},{"title":"fa-solid fa-sack-dollar","searchTerms":["bag","burlap","cash","dollar","money","money bag","moneybag","robber","santa","usd"]},{"title":"fa-solid fa-sack-xmark","searchTerms":["bag","burlap","rations"]},{"title":"fa-brands fa-safari","searchTerms":["browser"]},{"title":"fa-solid fa-sailboat","searchTerms":["dinghy","mast","sailboat","sailing","yacht"]},{"title":"fa-brands fa-salesforce","searchTerms":[]},{"title":"fa-brands fa-sass","searchTerms":[]},{"title":"fa-solid fa-satellite","searchTerms":["communications","hardware","orbit","satellite","space"]},{"title":"fa-solid fa-satellite-dish","searchTerms":["SETI","antenna","communications","dish","hardware","radar","receiver","satellite","satellite antenna","saucer","signal","space"]},{"title":"fa-solid fa-scale-balanced","searchTerms":["Libra","balance","balance scale","balanced","justice","law","legal","measure","rule","scale","weight","zodiac"]},{"title":"fa-solid fa-scale-unbalanced","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fa-solid fa-scale-unbalanced-flip","searchTerms":["justice","legal","measure","unbalanced","weight"]},{"title":"fa-brands fa-schlix","searchTerms":[]},{"title":"fa-solid fa-school","searchTerms":["building","education","learn","school","student","teacher"]},{"title":"fa-solid fa-school-circle-check","searchTerms":["not affected","ok","okay","schoolhouse"]},{"title":"fa-solid fa-school-circle-exclamation","searchTerms":["affected","schoolhouse"]},{"title":"fa-solid fa-school-circle-xmark","searchTerms":["destroy","schoolhouse"]},{"title":"fa-solid fa-school-flag","searchTerms":["educate","flag","school","schoolhouse"]},{"title":"fa-solid fa-school-lock","searchTerms":["closed","lockdown","quarantine","schoolhouse"]},{"title":"fa-solid fa-scissors","searchTerms":["Black Safety Scissors","White Scissors","clip","cutting","scissors","snip","tool"]},{"title":"fa-brands fa-screenpal","searchTerms":[]},{"title":"fa-solid fa-screwdriver","searchTerms":["admin","fix","mechanic","repair","screw","screwdriver","settings","tool"]},{"title":"fa-solid fa-screwdriver-wrench","searchTerms":["admin","fix","repair","screwdriver","settings","tools","wrench"]},{"title":"fa-brands fa-scribd","searchTerms":[]},{"title":"fa-solid fa-scroll","searchTerms":["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script","scroll"]},{"title":"fa-solid fa-scroll-torah","searchTerms":["book","jewish","judaism","religion","scroll"]},{"title":"fa-solid fa-sd-card","searchTerms":["image","memory","photo","save"]},{"title":"fa-brands fa-searchengin","searchTerms":[]},{"title":"fa-solid fa-section","searchTerms":["Section Sign","law","legal","silcrow"]},{"title":"fa-solid fa-seedling","searchTerms":["environment","flora","grow","plant","sapling","seedling","vegan","young"]},{"title":"fa-brands fa-sellcast","searchTerms":["eercast"]},{"title":"fa-brands fa-sellsy","searchTerms":[]},{"title":"fa-solid fa-server","searchTerms":["computer","cpu","database","hardware","network"]},{"title":"fa-brands fa-servicestack","searchTerms":[]},{"title":"fa-solid fa-shapes","searchTerms":["blocks","build","circle","square","triangle"]},{"title":"fa-solid fa-share","searchTerms":["forward","save","send","social"]},{"title":"fa-solid fa-share-from-square","searchTerms":["forward","save","send","social"]},{"title":"fa-regular fa-share-from-square","searchTerms":["forward","save","send","social"]},{"title":"fa-solid fa-share-nodes","searchTerms":["forward","save","send","social"]},{"title":"fa-solid fa-sheet-plastic","searchTerms":["plastic","plastic wrap","protect","tarp","tarpaulin","waterproof"]},{"title":"fa-solid fa-shekel-sign","searchTerms":["New Sheqel Sign","currency","ils","money"]},{"title":"fa-solid fa-shield","searchTerms":["achievement","armor","award","block","cleric","defend","defense","holy","paladin","protect","safety","security","shield","weapon","winner"]},{"title":"fa-solid fa-shield-cat","searchTerms":["animal","feline","pet","protect","safety","veterinary"]},{"title":"fa-solid fa-shield-dog","searchTerms":["animal","canine","pet","protect","safety","veterinary"]},{"title":"fa-solid fa-shield-halved","searchTerms":["achievement","armor","award","block","cleric","defend","defense","holy","paladin","security","shield","weapon","winner"]},{"title":"fa-solid fa-shield-heart","searchTerms":["love","protect","safe","safety","shield"]},{"title":"fa-solid fa-shield-virus","searchTerms":["antibodies","barrier","coronavirus","covid-19","flu","health","infection","pandemic","protect","safety","vaccine"]},{"title":"fa-solid fa-ship","searchTerms":["boat","passenger","sea","ship","water"]},{"title":"fa-solid fa-shirt","searchTerms":["clothing","fashion","garment","shirt","short sleeve","t-shirt","tshirt"]},{"title":"fa-brands fa-shirtsinbulk","searchTerms":[]},{"title":"fa-solid fa-shoe-prints","searchTerms":["feet","footprints","steps","walk"]},{"title":"fa-solid fa-shop","searchTerms":["bodega","building","buy","market","purchase","shopping","store"]},{"title":"fa-solid fa-shop-lock","searchTerms":["bodega","building","buy","closed","lock","lockdown","market","purchase","quarantine","shop","shopping","store"]},{"title":"fa-solid fa-shop-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fa-brands fa-shopify","searchTerms":[]},{"title":"fa-brands fa-shopware","searchTerms":[]},{"title":"fa-solid fa-shower","searchTerms":["bath","clean","faucet","shower","water"]},{"title":"fa-solid fa-shrimp","searchTerms":["allergy","crustacean","prawn","seafood","shellfish","shrimp","tail"]},{"title":"fa-solid fa-shuffle","searchTerms":["arrow","arrows","crossed","shuffle","shuffle tracks button","sort","swap","switch","transfer"]},{"title":"fa-solid fa-shuttle-space","searchTerms":["astronaut","machine","nasa","rocket","space","transportation"]},{"title":"fa-solid fa-sign-hanging","searchTerms":["directions","real estate","signage","wayfinding"]},{"title":"fa-solid fa-signal","searchTerms":["antenna","antenna bars","bar","bars","cell","graph","mobile","online","phone","reception","status"]},{"title":"fa-solid fa-signature","searchTerms":["John Hancock","cursive","name","writing"]},{"title":"fa-solid fa-signs-post","searchTerms":["directions","directory","map","signage","wayfinding"]},{"title":"fa-solid fa-sim-card","searchTerms":["hard drive","hardware","portable","storage","technology","tiny"]},{"title":"fa-brands fa-simplybuilt","searchTerms":[]},{"title":"fa-solid fa-sink","searchTerms":["bathroom","covid-19","faucet","kitchen","wash"]},{"title":"fa-brands fa-sistrix","searchTerms":[]},{"title":"fa-solid fa-sitemap","searchTerms":["directory","hierarchy","ia","information architecture","organization"]},{"title":"fa-brands fa-sith","searchTerms":[]},{"title":"fa-brands fa-sitrox","searchTerms":[]},{"title":"fa-brands fa-sketch","searchTerms":["app","design","interface"]},{"title":"fa-solid fa-skull","searchTerms":["bones","death","face","fairy tale","monster","skeleton","skull","x-ray","yorick"]},{"title":"fa-solid fa-skull-crossbones","searchTerms":["Black Skull and Crossbones","Dungeons & Dragons","alert","bones","crossbones","d","danger","dangerous area","dead","deadly","death","dnd","face","fantasy","halloween","holiday","jolly-roger","monster","pirate","poison","skeleton","skull","skull and crossbones","warning"]},{"title":"fa-brands fa-skyatlas","searchTerms":[]},{"title":"fa-brands fa-skype","searchTerms":[]},{"title":"fa-brands fa-slack","searchTerms":["anchor","hash","hashtag"]},{"title":"fa-solid fa-slash","searchTerms":["cancel","close","mute","off","stop","x"]},{"title":"fa-solid fa-sleigh","searchTerms":["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{"title":"fa-solid fa-sliders","searchTerms":["adjust","settings","sliders","toggle"]},{"title":"fa-brands fa-slideshare","searchTerms":[]},{"title":"fa-solid fa-smog","searchTerms":["dragon","fog","haze","pollution","smoke","weather"]},{"title":"fa-solid fa-smoking","searchTerms":["cancer","cigarette","nicotine","smoking","smoking status","tobacco"]},{"title":"fa-brands fa-snapchat","searchTerms":[]},{"title":"fa-solid fa-snowflake","searchTerms":["Heavy Chevron Snowflake","cold","precipitation","rain","snow","snowfall","snowflake","winter"]},{"title":"fa-regular fa-snowflake","searchTerms":["Heavy Chevron Snowflake","cold","precipitation","rain","snow","snowfall","snowflake","winter"]},{"title":"fa-solid fa-snowman","searchTerms":["cold","decoration","frost","frosty","holiday","snow","snowman","snowman without snow"]},{"title":"fa-solid fa-snowplow","searchTerms":["clean up","cold","road","storm","winter"]},{"title":"fa-solid fa-soap","searchTerms":["bar","bathing","bubbles","clean","cleaning","covid-19","hygiene","lather","soap","soapdish","wash"]},{"title":"fa-solid fa-socks","searchTerms":["business socks","business time","clothing","feet","flight of the conchords","socks","stocking","wednesday"]},{"title":"fa-solid fa-solar-panel","searchTerms":["clean","eco-friendly","energy","green","sun"]},{"title":"fa-solid fa-sort","searchTerms":["filter","order"]},{"title":"fa-solid fa-sort-down","searchTerms":["arrow","descending","filter","order","sort-desc"]},{"title":"fa-solid fa-sort-up","searchTerms":["arrow","ascending","filter","order","sort-asc"]},{"title":"fa-brands fa-soundcloud","searchTerms":[]},{"title":"fa-brands fa-sourcetree","searchTerms":[]},{"title":"fa-solid fa-spa","searchTerms":["flora","massage","mindfulness","plant","wellness"]},{"title":"fa-brands fa-space-awesome","searchTerms":["adventure","rocket","ship","shuttle"]},{"title":"fa-solid fa-spaghetti-monster-flying","searchTerms":["agnosticism","atheism","flying spaghetti monster","fsm"]},{"title":"fa-brands fa-speakap","searchTerms":[]},{"title":"fa-brands fa-speaker-deck","searchTerms":[]},{"title":"fa-solid fa-spell-check","searchTerms":["dictionary","edit","editor","grammar","text"]},{"title":"fa-solid fa-spider","searchTerms":["arachnid","bug","charlotte","crawl","eight","halloween","insect","spider"]},{"title":"fa-solid fa-spinner","searchTerms":["circle","loading","progress"]},{"title":"fa-solid fa-splotch","searchTerms":["Ink","blob","blotch","glob","stain"]},{"title":"fa-solid fa-spoon","searchTerms":["cutlery","dining","scoop","silverware","spoon","tableware"]},{"title":"fa-brands fa-spotify","searchTerms":[]},{"title":"fa-solid fa-spray-can","searchTerms":["Paint","aerosol","design","graffiti","tag"]},{"title":"fa-solid fa-spray-can-sparkles","searchTerms":["car","clean","deodorize","fresh","pine","scent"]},{"title":"fa-solid fa-square","searchTerms":["Black Square","black medium square","block","box","geometric","shape","square","white medium square"]},{"title":"fa-regular fa-square","searchTerms":["Black Square","black medium square","block","box","geometric","shape","square","white medium square"]},{"title":"fa-solid fa-square-arrow-up-right","searchTerms":["diagonal","new","open","send","share"]},{"title":"fa-brands fa-square-behance","searchTerms":[]},{"title":"fa-solid fa-square-caret-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"fa-regular fa-square-caret-down","searchTerms":["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{"title":"fa-solid fa-square-caret-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"fa-regular fa-square-caret-left","searchTerms":["arrow","back","caret-square-o-left","previous","triangle"]},{"title":"fa-solid fa-square-caret-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"fa-regular fa-square-caret-right","searchTerms":["arrow","caret-square-o-right","forward","next","triangle"]},{"title":"fa-solid fa-square-caret-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"fa-regular fa-square-caret-up","searchTerms":["arrow","caret-square-o-up","collapse","triangle","upload"]},{"title":"fa-solid fa-square-check","searchTerms":["accept","agree","box","button","check","check box with check","check mark button","checkmark","confirm","correct","done","mark","ok","select","success","tick","todo","yes","\u2713"]},{"title":"fa-regular fa-square-check","searchTerms":["accept","agree","box","button","check","check box with check","check mark button","checkmark","confirm","correct","done","mark","ok","select","success","tick","todo","yes","\u2713"]},{"title":"fa-brands fa-square-dribbble","searchTerms":[]},{"title":"fa-solid fa-square-envelope","searchTerms":["e-mail","email","letter","mail","message","notification","support"]},{"title":"fa-brands fa-square-facebook","searchTerms":["social network"]},{"title":"fa-brands fa-square-font-awesome","searchTerms":[]},{"title":"fa-brands fa-square-font-awesome-stroke","searchTerms":[]},{"title":"fa-solid fa-square-full","searchTerms":["black large square","block","blue","blue square","box","brown","brown square","geometric","green","green square","orange","orange square","purple","purple square","red","red square","shape","square","white large square","yellow","yellow square"]},{"title":"fa-regular fa-square-full","searchTerms":["black large square","block","blue","blue square","box","brown","brown square","geometric","green","green square","orange","orange square","purple","purple square","red","red square","shape","square","white large square","yellow","yellow square"]},{"title":"fa-brands fa-square-git","searchTerms":[]},{"title":"fa-brands fa-square-github","searchTerms":["octocat"]},{"title":"fa-brands fa-square-gitlab","searchTerms":[]},{"title":"fa-brands fa-square-google-plus","searchTerms":["social network"]},{"title":"fa-solid fa-square-h","searchTerms":["directions","emergency","hospital","hotel","letter","map"]},{"title":"fa-brands fa-square-hacker-news","searchTerms":[]},{"title":"fa-brands fa-square-instagram","searchTerms":[]},{"title":"fa-brands fa-square-js","searchTerms":[]},{"title":"fa-brands fa-square-lastfm","searchTerms":[]},{"title":"fa-solid fa-square-minus","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"fa-regular fa-square-minus","searchTerms":["collapse","delete","hide","minify","negative","remove","shape","trash"]},{"title":"fa-solid fa-square-nfi","searchTerms":["non-food item","supplies"]},{"title":"fa-brands fa-square-odnoklassniki","searchTerms":[]},{"title":"fa-solid fa-square-parking","searchTerms":["auto","car","garage","meter","parking"]},{"title":"fa-solid fa-square-pen","searchTerms":["edit","pencil-square","update","write"]},{"title":"fa-solid fa-square-person-confined","searchTerms":["captivity","confined"]},{"title":"fa-solid fa-square-phone","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fa-solid fa-square-phone-flip","searchTerms":["call","earphone","number","support","telephone","voice"]},{"title":"fa-brands fa-square-pied-piper","searchTerms":[]},{"title":"fa-brands fa-square-pinterest","searchTerms":[]},{"title":"fa-solid fa-square-plus","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fa-regular fa-square-plus","searchTerms":["add","create","expand","new","positive","shape"]},{"title":"fa-solid fa-square-poll-horizontal","searchTerms":["chart","graph","results","survey","trend","vote","voting"]},{"title":"fa-solid fa-square-poll-vertical","searchTerms":["chart","graph","results","survey","trend","vote","voting"]},{"title":"fa-brands fa-square-reddit","searchTerms":[]},{"title":"fa-solid fa-square-root-variable","searchTerms":["arithmetic","calculus","division","math"]},{"title":"fa-solid fa-square-rss","searchTerms":["blog","feed","journal","news","writing"]},{"title":"fa-solid fa-square-share-nodes","searchTerms":["forward","save","send","social"]},{"title":"fa-brands fa-square-snapchat","searchTerms":[]},{"title":"fa-brands fa-square-steam","searchTerms":[]},{"title":"fa-brands fa-square-threads","searchTerms":[]},{"title":"fa-brands fa-square-tumblr","searchTerms":[]},{"title":"fa-brands fa-square-twitter","searchTerms":["social network","tweet"]},{"title":"fa-solid fa-square-up-right","searchTerms":["arrow","diagonal","direction","external-link-square","intercardinal","new","northeast","open","share","up-right arrow"]},{"title":"fa-brands fa-square-viadeo","searchTerms":[]},{"title":"fa-brands fa-square-vimeo","searchTerms":[]},{"title":"fa-solid fa-square-virus","searchTerms":["coronavirus","covid-19","disease","flu","infection","pandemic"]},{"title":"fa-brands fa-square-whatsapp","searchTerms":[]},{"title":"fa-brands fa-square-x-twitter","searchTerms":[" elon"," x","twitter"]},{"title":"fa-brands fa-square-xing","searchTerms":[]},{"title":"fa-solid fa-square-xmark","searchTerms":["close","cross","cross mark button","incorrect","mark","notice","notification","notify","problem","square","window","wrong","x","\u00d7"]},{"title":"fa-brands fa-square-youtube","searchTerms":[]},{"title":"fa-brands fa-squarespace","searchTerms":[]},{"title":"fa-brands fa-stack-exchange","searchTerms":[]},{"title":"fa-brands fa-stack-overflow","searchTerms":[]},{"title":"fa-brands fa-stackpath","searchTerms":[]},{"title":"fa-solid fa-staff-snake","searchTerms":["asclepius","asklepian","health","serpent","wellness"]},{"title":"fa-solid fa-stairs","searchTerms":["exit","steps","up"]},{"title":"fa-solid fa-stamp","searchTerms":["art","certificate","imprint","rubber","seal"]},{"title":"fa-solid fa-stapler","searchTerms":["desktop","milton","office","paperclip","staple"]},{"title":"fa-solid fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score","star"]},{"title":"fa-regular fa-star","searchTerms":["achievement","award","favorite","important","night","rating","score","star"]},{"title":"fa-solid fa-star-and-crescent","searchTerms":["Muslim","islam","muslim","religion","star and crescent"]},{"title":"fa-solid fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fa-regular fa-star-half","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fa-solid fa-star-half-stroke","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fa-regular fa-star-half-stroke","searchTerms":["achievement","award","rating","score","star-half-empty","star-half-full"]},{"title":"fa-solid fa-star-of-david","searchTerms":["David","Jew","Jewish","jewish","judaism","religion","star","star of David"]},{"title":"fa-solid fa-star-of-life","searchTerms":["doctor","emt","first aid","health","medical"]},{"title":"fa-brands fa-staylinked","searchTerms":[]},{"title":"fa-brands fa-steam","searchTerms":[]},{"title":"fa-brands fa-steam-symbol","searchTerms":[]},{"title":"fa-solid fa-sterling-sign","searchTerms":["Pound Sign","currency"]},{"title":"fa-solid fa-stethoscope","searchTerms":["covid-19","diagnosis","doctor","general practitioner","heart","hospital","infirmary","medicine","office","outpatient","stethoscope"]},{"title":"fa-brands fa-sticker-mule","searchTerms":[]},{"title":"fa-solid fa-stop","searchTerms":["block","box","square","stop","stop button"]},{"title":"fa-solid fa-stopwatch","searchTerms":["clock","reminder","stopwatch","time"]},{"title":"fa-solid fa-stopwatch-20","searchTerms":["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{"title":"fa-solid fa-store","searchTerms":["bodega","building","buy","market","purchase","shopping","store"]},{"title":"fa-solid fa-store-slash","searchTerms":["building","buy","closed","covid-19","purchase","shopping"]},{"title":"fa-brands fa-strava","searchTerms":[]},{"title":"fa-solid fa-street-view","searchTerms":["directions","location","map","navigation"]},{"title":"fa-solid fa-strikethrough","searchTerms":["cancel","edit","font","format","text","type"]},{"title":"fa-brands fa-stripe","searchTerms":[]},{"title":"fa-brands fa-stripe-s","searchTerms":[]},{"title":"fa-solid fa-stroopwafel","searchTerms":["caramel","cookie","dessert","sweets","waffle"]},{"title":"fa-brands fa-stubber","searchTerms":[]},{"title":"fa-brands fa-studiovinari","searchTerms":[]},{"title":"fa-brands fa-stumbleupon","searchTerms":[]},{"title":"fa-brands fa-stumbleupon-circle","searchTerms":[]},{"title":"fa-solid fa-subscript","searchTerms":["edit","font","format","text","type"]},{"title":"fa-solid fa-suitcase","searchTerms":["baggage","luggage","move","packing","suitcase","travel","trip"]},{"title":"fa-solid fa-suitcase-medical","searchTerms":["first aid","firstaid","health","help","medical","supply","support"]},{"title":"fa-solid fa-suitcase-rolling","searchTerms":["baggage","luggage","move","suitcase","travel","trip"]},{"title":"fa-solid fa-sun","searchTerms":["bright","brighten","contrast","day","lighter","rays","sol","solar","star","sun","sunny","weather"]},{"title":"fa-regular fa-sun","searchTerms":["bright","brighten","contrast","day","lighter","rays","sol","solar","star","sun","sunny","weather"]},{"title":"fa-solid fa-sun-plant-wilt","searchTerms":["arid","droop","drought"]},{"title":"fa-brands fa-superpowers","searchTerms":[]},{"title":"fa-solid fa-superscript","searchTerms":["edit","exponential","font","format","text","type"]},{"title":"fa-brands fa-supple","searchTerms":[]},{"title":"fa-brands fa-suse","searchTerms":["linux","operating system","os"]},{"title":"fa-solid fa-swatchbook","searchTerms":["Pantone","color","design","hue","palette"]},{"title":"fa-brands fa-swift","searchTerms":[]},{"title":"fa-brands fa-symfony","searchTerms":[]},{"title":"fa-solid fa-synagogue","searchTerms":["Jew","Jewish","building","jewish","judaism","religion","star of david","synagogue","temple"]},{"title":"fa-solid fa-syringe","searchTerms":["covid-19","doctor","immunizations","medical","medicine","needle","shot","sick","syringe","vaccinate","vaccine"]},{"title":"fa-solid fa-t","searchTerms":["Latin Capital Letter T","Latin Small Letter T","letter"]},{"title":"fa-solid fa-table","searchTerms":["data","excel","spreadsheet"]},{"title":"fa-solid fa-table-cells","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fa-solid fa-table-cells-large","searchTerms":["blocks","boxes","grid","squares"]},{"title":"fa-solid fa-table-columns","searchTerms":["browser","dashboard","organize","panes","split"]},{"title":"fa-solid fa-table-list","searchTerms":["checklist","completed","done","finished","ol","todo","ul"]},{"title":"fa-solid fa-table-tennis-paddle-ball","searchTerms":["ball","bat","game","paddle","ping pong","table tennis"]},{"title":"fa-solid fa-tablet","searchTerms":["device","kindle","screen"]},{"title":"fa-solid fa-tablet-button","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fa-solid fa-tablet-screen-button","searchTerms":["apple","device","ipad","kindle","screen"]},{"title":"fa-solid fa-tablets","searchTerms":["drugs","medicine","pills","prescription"]},{"title":"fa-solid fa-tachograph-digital","searchTerms":["data","distance","speed","tachometer"]},{"title":"fa-solid fa-tag","searchTerms":["discount","labe","label","price","shopping"]},{"title":"fa-solid fa-tags","searchTerms":["discount","label","price","shopping"]},{"title":"fa-solid fa-tape","searchTerms":["design","package","sticky"]},{"title":"fa-solid fa-tarp","searchTerms":["protection","tarp","tent","waterproof"]},{"title":"fa-solid fa-tarp-droplet","searchTerms":["protection","tarp","tent","waterproof"]},{"title":"fa-solid fa-taxi","searchTerms":["cab","cabbie","car","car service","lyft","machine","oncoming","oncoming taxi","taxi","transportation","travel","uber","vehicle"]},{"title":"fa-brands fa-teamspeak","searchTerms":[]},{"title":"fa-solid fa-teeth","searchTerms":["bite","dental","dentist","gums","mouth","smile","tooth"]},{"title":"fa-solid fa-teeth-open","searchTerms":["dental","dentist","gums bite","mouth","smile","tooth"]},{"title":"fa-brands fa-telegram","searchTerms":[]},{"title":"fa-solid fa-temperature-arrow-down","searchTerms":["air conditioner","cold","heater","mercury","thermometer","winter"]},{"title":"fa-solid fa-temperature-arrow-up","searchTerms":["air conditioner","cold","heater","mercury","thermometer","winter"]},{"title":"fa-solid fa-temperature-empty","searchTerms":["cold","mercury","status","temperature"]},{"title":"fa-solid fa-temperature-full","searchTerms":["fever","hot","mercury","status","temperature"]},{"title":"fa-solid fa-temperature-half","searchTerms":["mercury","status","temperature","thermometer","weather"]},{"title":"fa-solid fa-temperature-high","searchTerms":["cook","covid-19","mercury","summer","thermometer","warm"]},{"title":"fa-solid fa-temperature-low","searchTerms":["cold","cool","covid-19","mercury","thermometer","winter"]},{"title":"fa-solid fa-temperature-quarter","searchTerms":["mercury","status","temperature"]},{"title":"fa-solid fa-temperature-three-quarters","searchTerms":["mercury","status","temperature"]},{"title":"fa-brands fa-tencent-weibo","searchTerms":[]},{"title":"fa-solid fa-tenge-sign","searchTerms":["Tenge Sign","currency"]},{"title":"fa-solid fa-tent","searchTerms":["bivouac","campground","refugee","shelter","tent"]},{"title":"fa-solid fa-tent-arrow-down-to-line","searchTerms":["permanent","refugee","shelter"]},{"title":"fa-solid fa-tent-arrow-left-right","searchTerms":["refugee","shelter","transition"]},{"title":"fa-solid fa-tent-arrow-turn-left","searchTerms":["refugee","shelter","temporary"]},{"title":"fa-solid fa-tent-arrows-down","searchTerms":["refugee","shelter","spontaneous"]},{"title":"fa-solid fa-tents","searchTerms":["bivouac","campground","refugee","shelter","tent"]},{"title":"fa-solid fa-terminal","searchTerms":["code","coding","command","console","development","prompt","terminal"]},{"title":"fa-solid fa-text-height","searchTerms":["edit","font","format","text","type"]},{"title":"fa-solid fa-text-slash","searchTerms":["cancel","font","format","remove","style","text"]},{"title":"fa-solid fa-text-width","searchTerms":["edit","font","format","text","type"]},{"title":"fa-brands fa-the-red-yeti","searchTerms":[]},{"title":"fa-brands fa-themeco","searchTerms":[]},{"title":"fa-brands fa-themeisle","searchTerms":[]},{"title":"fa-solid fa-thermometer","searchTerms":["covid-19","mercury","status","temperature"]},{"title":"fa-brands fa-think-peaks","searchTerms":[]},{"title":"fa-brands fa-threads","searchTerms":[]},{"title":"fa-solid fa-thumbs-down","searchTerms":["-1","disagree","disapprove","dislike","down","hand","social","thumb","thumbs down","thumbs-o-down"]},{"title":"fa-regular fa-thumbs-down","searchTerms":["-1","disagree","disapprove","dislike","down","hand","social","thumb","thumbs down","thumbs-o-down"]},{"title":"fa-solid fa-thumbs-up","searchTerms":["+1","agree","approve","favorite","hand","like","ok","okay","social","success","thumb","thumbs up","thumbs-o-up","up","yes","you got it dude"]},{"title":"fa-regular fa-thumbs-up","searchTerms":["+1","agree","approve","favorite","hand","like","ok","okay","social","success","thumb","thumbs up","thumbs-o-up","up","yes","you got it dude"]},{"title":"fa-solid fa-thumbtack","searchTerms":["Black Pushpin","coordinates","location","marker","pin","pushpin","thumb-tack"]},{"title":"fa-solid fa-ticket","searchTerms":["admission","admission tickets","movie","pass","support","ticket"]},{"title":"fa-solid fa-ticket-simple","searchTerms":["movie","pass","support","ticket"]},{"title":"fa-brands fa-tiktok","searchTerms":[]},{"title":"fa-solid fa-timeline","searchTerms":["chronological","deadline","history","linear"]},{"title":"fa-solid fa-toggle-off","searchTerms":["button","off","on","switch"]},{"title":"fa-solid fa-toggle-on","searchTerms":["button","off","on","switch"]},{"title":"fa-solid fa-toilet","searchTerms":["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","toile","toilet","washroom","waste","wc"]},{"title":"fa-solid fa-toilet-paper","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","paper towels","prank","privy","restroom","roll","roll of paper","toilet","toilet paper","wipe"]},{"title":"fa-solid fa-toilet-paper-slash","searchTerms":["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","privy","restroom","roll","toilet","trouble","ut oh","wipe"]},{"title":"fa-solid fa-toilet-portable","searchTerms":["outhouse","toilet"]},{"title":"fa-solid fa-toilets-portable","searchTerms":["outhouse","toilet"]},{"title":"fa-solid fa-toolbox","searchTerms":["admin","chest","container","fix","mechanic","repair","settings","tool","toolbox","tools"]},{"title":"fa-solid fa-tooth","searchTerms":["bicuspid","dental","dentist","molar","mouth","teeth","tooth"]},{"title":"fa-solid fa-torii-gate","searchTerms":["building","religion","shinto","shinto shrine","shintoism","shrine"]},{"title":"fa-solid fa-tornado","searchTerms":["cloud","cyclone","dorothy","landspout","tornado","toto","twister","vortext","waterspout","weather","whirlwind"]},{"title":"fa-solid fa-tower-broadcast","searchTerms":["airwaves","antenna","communication","emergency","radio","reception","waves"]},{"title":"fa-solid fa-tower-cell","searchTerms":["airwaves","antenna","communication","radio","reception","waves"]},{"title":"fa-solid fa-tower-observation","searchTerms":["fire tower","view"]},{"title":"fa-solid fa-tractor","searchTerms":["agriculture","farm","tractor","vehicle"]},{"title":"fa-brands fa-trade-federation","searchTerms":[]},{"title":"fa-solid fa-trademark","searchTerms":["copyright","mark","register","symbol","tm","trade mark","trademark"]},{"title":"fa-solid fa-traffic-light","searchTerms":["direction","light","road","signal","traffic","travel","vertical traffic light"]},{"title":"fa-solid fa-trailer","searchTerms":["carry","haul","moving","travel"]},{"title":"fa-solid fa-train","searchTerms":["bullet","commute","locomotive","railway","subway","train"]},{"title":"fa-solid fa-train-subway","searchTerms":["machine","railway","train","transportation","vehicle"]},{"title":"fa-solid fa-train-tram","searchTerms":["crossing","machine","mountains","seasonal","tram","transportation","trolleybus"]},{"title":"fa-solid fa-transgender","searchTerms":["female","gender","intersex","male","transgender","transgender symbol"]},{"title":"fa-solid fa-trash","searchTerms":["delete","garbage","hide","remove"]},{"title":"fa-solid fa-trash-arrow-up","searchTerms":["back","control z","delete","garbage","hide","oops","remove","undo"]},{"title":"fa-solid fa-trash-can","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"fa-regular fa-trash-can","searchTerms":["delete","garbage","hide","remove","trash-o"]},{"title":"fa-solid fa-trash-can-arrow-up","searchTerms":["back","control z","delete","garbage","hide","oops","remove","undo"]},{"title":"fa-solid fa-tree","searchTerms":["bark","evergreen tree","fall","flora","forest","nature","plant","seasonal","tree"]},{"title":"fa-solid fa-tree-city","searchTerms":["building","city","urban"]},{"title":"fa-brands fa-trello","searchTerms":["atlassian"]},{"title":"fa-solid fa-triangle-exclamation","searchTerms":["alert","danger","error","important","notice","notification","notify","problem","warnin","warning"]},{"title":"fa-solid fa-trophy","searchTerms":["achievement","award","cup","game","prize","trophy","winner"]},{"title":"fa-solid fa-trowel","searchTerms":["build","construction","tool"]},{"title":"fa-solid fa-trowel-bricks","searchTerms":["build","construction","reconstruction","tool"]},{"title":"fa-solid fa-truck","searchTerms":["Black Truck","cargo","delivery","delivery truck","shipping","truck","vehicle"]},{"title":"fa-solid fa-truck-arrow-right","searchTerms":["access","fast","shipping","transport"]},{"title":"fa-solid fa-truck-droplet","searchTerms":["thirst","truck","water","water supply"]},{"title":"fa-solid fa-truck-fast","searchTerms":["express","fedex","mail","overnight","package","ups"]},{"title":"fa-solid fa-truck-field","searchTerms":["supplies","truck"]},{"title":"fa-solid fa-truck-field-un","searchTerms":["supplies","truck","united nations"]},{"title":"fa-solid fa-truck-front","searchTerms":["shuttle","truck","van"]},{"title":"fa-solid fa-truck-medical","searchTerms":["ambulance","clinic","covid-19","emergency","emt","er","help","hospital","mobile","support","vehicle"]},{"title":"fa-solid fa-truck-monster","searchTerms":["offroad","vehicle","wheel"]},{"title":"fa-solid fa-truck-moving","searchTerms":["cargo","inventory","rental","vehicle"]},{"title":"fa-solid fa-truck-pickup","searchTerms":["cargo","pick-up","pickup","pickup truck","truck","vehicle"]},{"title":"fa-solid fa-truck-plane","searchTerms":["airplane","plane","transportation","truck","vehicle"]},{"title":"fa-solid fa-truck-ramp-box","searchTerms":["box","cargo","delivery","inventory","moving","rental","vehicle"]},{"title":"fa-solid fa-tty","searchTerms":["communication","deaf","telephone","teletypewriter","text"]},{"title":"fa-brands fa-tumblr","searchTerms":[]},{"title":"fa-solid fa-turkish-lira-sign","searchTerms":["Turkish Lira Sign","currency"]},{"title":"fa-solid fa-turn-down","searchTerms":["arrow","down","level-down","right arrow curving down"]},{"title":"fa-solid fa-turn-up","searchTerms":["arrow","level-up","right arrow curving up"]},{"title":"fa-solid fa-tv","searchTerms":["computer","display","monitor","television"]},{"title":"fa-brands fa-twitch","searchTerms":[]},{"title":"fa-brands fa-twitter","searchTerms":["social network","tweet"]},{"title":"fa-brands fa-typo3","searchTerms":[]},{"title":"fa-solid fa-u","searchTerms":["Latin Capital Letter U","Latin Small Letter U","letter"]},{"title":"fa-brands fa-uber","searchTerms":[]},{"title":"fa-brands fa-ubuntu","searchTerms":["linux","operating system","os"]},{"title":"fa-brands fa-uikit","searchTerms":[]},{"title":"fa-brands fa-umbraco","searchTerms":[]},{"title":"fa-solid fa-umbrella","searchTerms":["protection","rain","storm","wet"]},{"title":"fa-solid fa-umbrella-beach","searchTerms":["beach","beach with umbrella","protection","recreation","sand","shade","summer","sun","umbrella"]},{"title":"fa-brands fa-uncharted","searchTerms":[]},{"title":"fa-solid fa-underline","searchTerms":["edit","emphasis","format","text","writing"]},{"title":"fa-brands fa-uniregistry","searchTerms":[]},{"title":"fa-brands fa-unity","searchTerms":[]},{"title":"fa-solid fa-universal-access","searchTerms":["users-people"]},{"title":"fa-solid fa-unlock","searchTerms":["admin","lock","open","password","private","protect","unlock","unlocked"]},{"title":"fa-solid fa-unlock-keyhole","searchTerms":["admin","lock","password","private","protect"]},{"title":"fa-brands fa-unsplash","searchTerms":[]},{"title":"fa-brands fa-untappd","searchTerms":[]},{"title":"fa-solid fa-up-down","searchTerms":["Up Down Black Arrow","arrow","arrows-v","expand","portrait","resize","tall","up-down arrow","vertical"]},{"title":"fa-solid fa-up-down-left-right","searchTerms":["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{"title":"fa-solid fa-up-long","searchTerms":["long-arrow-up","upload"]},{"title":"fa-solid fa-up-right-and-down-left-from-center","searchTerms":["arrows","bigger","enlarge","fullscreen","resize"]},{"title":"fa-solid fa-up-right-from-square","searchTerms":["external-link","new","open","share"]},{"title":"fa-solid fa-upload","searchTerms":["hard drive","import","publish"]},{"title":"fa-brands fa-ups","searchTerms":["United Parcel Service","package","shipping"]},{"title":"fa-brands fa-usb","searchTerms":[]},{"title":"fa-solid fa-user","searchTerms":["adult","bust","bust in silhouette","gender-neutral","person","profile","silhouette","unspecified gender","users-people"]},{"title":"fa-regular fa-user","searchTerms":["adult","bust","bust in silhouette","gender-neutral","person","profile","silhouette","unspecified gender","users-people"]},{"title":"fa-solid fa-user-astronaut","searchTerms":["avatar","clothing","cosmonaut","nasa","space","suit"]},{"title":"fa-solid fa-user-check","searchTerms":["users-people"]},{"title":"fa-solid fa-user-clock","searchTerms":["users-people"]},{"title":"fa-solid fa-user-doctor","searchTerms":["covid-19","health","job","medical","nurse","occupation","physician","profile","surgeon","worker"]},{"title":"fa-solid fa-user-gear","searchTerms":["users-people"]},{"title":"fa-solid fa-user-graduate","searchTerms":["users-people"]},{"title":"fa-solid fa-user-group","searchTerms":["bust","busts in silhouette","silhouette","users-people"]},{"title":"fa-solid fa-user-injured","searchTerms":["users-people"]},{"title":"fa-solid fa-user-large","searchTerms":["users-people"]},{"title":"fa-solid fa-user-large-slash","searchTerms":["users-people"]},{"title":"fa-solid fa-user-lock","searchTerms":["users-people"]},{"title":"fa-solid fa-user-minus","searchTerms":["delete","negative","remove"]},{"title":"fa-solid fa-user-ninja","searchTerms":["assassin","avatar","dangerous","deadly","fighter","hidden","ninja","sneaky","stealth"]},{"title":"fa-solid fa-user-nurse","searchTerms":["covid-19","doctor","health","md","medical","midwife","physician","practitioner","surgeon","worker"]},{"title":"fa-solid fa-user-pen","searchTerms":["users-people"]},{"title":"fa-solid fa-user-plus","searchTerms":["add","avatar","positive","sign up","signup","team"]},{"title":"fa-solid fa-user-secret","searchTerms":["detective","sleuth","spy","users-people"]},{"title":"fa-solid fa-user-shield","searchTerms":["protect","safety"]},{"title":"fa-solid fa-user-slash","searchTerms":["ban","delete","remove"]},{"title":"fa-solid fa-user-tag","searchTerms":["users-people"]},{"title":"fa-solid fa-user-tie","searchTerms":["avatar","business","clothing","formal","professional","suit"]},{"title":"fa-solid fa-user-xmark","searchTerms":["archive","delete","remove","x"]},{"title":"fa-solid fa-users","searchTerms":["users-people"]},{"title":"fa-solid fa-users-between-lines","searchTerms":["covered","group","people"]},{"title":"fa-solid fa-users-gear","searchTerms":["users-people"]},{"title":"fa-solid fa-users-line","searchTerms":["group","need","people"]},{"title":"fa-solid fa-users-rays","searchTerms":["affected","focused","group","people"]},{"title":"fa-solid fa-users-rectangle","searchTerms":["focus","group","people","reached"]},{"title":"fa-solid fa-users-slash","searchTerms":["users-people"]},{"title":"fa-solid fa-users-viewfinder","searchTerms":["focus","group","people","targeted"]},{"title":"fa-brands fa-usps","searchTerms":["american","package","shipping","usa"]},{"title":"fa-brands fa-ussunnah","searchTerms":[]},{"title":"fa-solid fa-utensils","searchTerms":["cooking","cutlery","dining","dinner","eat","food","fork","fork and knife","knife","restaurant"]},{"title":"fa-solid fa-v","searchTerms":["Latin Capital Letter V","Latin Small Letter V","letter"]},{"title":"fa-brands fa-vaadin","searchTerms":[]},{"title":"fa-solid fa-van-shuttle","searchTerms":["airport","bus","machine","minibus","public-transportation","transportation","travel","vehicle"]},{"title":"fa-solid fa-vault","searchTerms":["bank","important","lock","money","safe"]},{"title":"fa-solid fa-vector-square","searchTerms":["anchors","lines","object","render","shape"]},{"title":"fa-solid fa-venus","searchTerms":["female","female sign","gender","woman"]},{"title":"fa-solid fa-venus-double","searchTerms":["Doubled Female Sign","female","gender","lesbian"]},{"title":"fa-solid fa-venus-mars","searchTerms":["Interlocked Female and Male Sign","female","gender","heterosexual","male"]},{"title":"fa-solid fa-vest","searchTerms":["biker","fashion","style"]},{"title":"fa-solid fa-vest-patches","searchTerms":["biker","fashion","style"]},{"title":"fa-brands fa-viacoin","searchTerms":[]},{"title":"fa-brands fa-viadeo","searchTerms":[]},{"title":"fa-solid fa-vial","searchTerms":["ampule","chemist","chemistry","experiment","lab","sample","science","test","test tube"]},{"title":"fa-solid fa-vial-circle-check","searchTerms":["ampule","chemist","chemistry","not affected","ok","okay","success","test tube","tube","vaccine"]},{"title":"fa-solid fa-vial-virus","searchTerms":["ampule","coronavirus","covid-19","flue","infection","lab","laboratory","pandemic","test","test tube","vaccine"]},{"title":"fa-solid fa-vials","searchTerms":["ampule","experiment","lab","sample","science","test","test tube"]},{"title":"fa-brands fa-viber","searchTerms":[]},{"title":"fa-solid fa-video","searchTerms":["camera","film","movie","record","video-camera"]},{"title":"fa-solid fa-video-slash","searchTerms":["add","create","film","new","positive","record","video"]},{"title":"fa-solid fa-vihara","searchTerms":["buddhism","buddhist","building","monastery"]},{"title":"fa-brands fa-vimeo","searchTerms":[]},{"title":"fa-brands fa-vimeo-v","searchTerms":["vimeo"]},{"title":"fa-brands fa-vine","searchTerms":[]},{"title":"fa-solid fa-virus","searchTerms":["bug","coronavirus","covid-19","flu","health","infection","pandemic","sick","vaccine","viral"]},{"title":"fa-solid fa-virus-covid","searchTerms":["bug","covid-19","flu","health","infection","pandemic","vaccine","viral","virus"]},{"title":"fa-solid fa-virus-covid-slash","searchTerms":["bug","covid-19","flu","health","infection","pandemic","vaccine","viral","virus"]},{"title":"fa-solid fa-virus-slash","searchTerms":["bug","coronavirus","covid-19","cure","eliminate","flu","health","infection","pandemic","sick","vaccine","viral"]},{"title":"fa-solid fa-viruses","searchTerms":["bugs","coronavirus","covid-19","flu","health","infection","multiply","pandemic","sick","spread","vaccine","viral"]},{"title":"fa-brands fa-vk","searchTerms":[]},{"title":"fa-brands fa-vnv","searchTerms":[]},{"title":"fa-solid fa-voicemail","searchTerms":["answer","inbox","message","phone"]},{"title":"fa-solid fa-volcano","searchTerms":["caldera","eruption","lava","magma","mountain","smoke","volcano"]},{"title":"fa-solid fa-volleyball","searchTerms":["ball","beach","game","olympics","sport","volleyball"]},{"title":"fa-solid fa-volume-high","searchTerms":["audio","higher","loud","louder","music","sound","speaker","speaker high volume"]},{"title":"fa-solid fa-volume-low","searchTerms":["audio","lower","music","quieter","soft","sound","speaker","speaker low volume"]},{"title":"fa-solid fa-volume-off","searchTerms":["audio","ban","music","mute","quiet","silent","sound"]},{"title":"fa-solid fa-volume-xmark","searchTerms":["audio","music","quiet","sound","speaker"]},{"title":"fa-solid fa-vr-cardboard","searchTerms":["3d","augment","google","reality","virtual"]},{"title":"fa-brands fa-vuejs","searchTerms":[]},{"title":"fa-solid fa-w","searchTerms":["Latin Capital Letter W","Latin Small Letter W","letter"]},{"title":"fa-solid fa-walkie-talkie","searchTerms":["communication","copy","intercom","over","portable","radio","two way radio"]},{"title":"fa-solid fa-wallet","searchTerms":["billfold","cash","currency","money"]},{"title":"fa-solid fa-wand-magic","searchTerms":["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{"title":"fa-solid fa-wand-magic-sparkles","searchTerms":["auto","magic","magic wand","trick","witch","wizard"]},{"title":"fa-solid fa-wand-sparkles","searchTerms":["autocomplete","automatic","fantasy","halloween","holiday","magic","weapon","witch","wizard"]},{"title":"fa-solid fa-warehouse","searchTerms":["building","capacity","garage","inventory","storage"]},{"title":"fa-brands fa-watchman-monitoring","searchTerms":[]},{"title":"fa-solid fa-water","searchTerms":["lake","liquid","ocean","sea","swim","wet"]},{"title":"fa-solid fa-water-ladder","searchTerms":["ladder","recreation","swim","water"]},{"title":"fa-solid fa-wave-square","searchTerms":["frequency","pulse","signal"]},{"title":"fa-brands fa-waze","searchTerms":[]},{"title":"fa-brands fa-weebly","searchTerms":[]},{"title":"fa-brands fa-weibo","searchTerms":[]},{"title":"fa-solid fa-weight-hanging","searchTerms":["anvil","heavy","measurement"]},{"title":"fa-solid fa-weight-scale","searchTerms":["health","measurement","scale","weight"]},{"title":"fa-brands fa-weixin","searchTerms":[]},{"title":"fa-brands fa-whatsapp","searchTerms":[]},{"title":"fa-solid fa-wheat-awn","searchTerms":["agriculture","autumn","fall","farming","grain"]},{"title":"fa-solid fa-wheat-awn-circle-exclamation","searchTerms":["affected","famine","food","gluten","hunger","starve","straw"]},{"title":"fa-solid fa-wheelchair","searchTerms":["users-people"]},{"title":"fa-solid fa-wheelchair-move","searchTerms":["access","handicap","impairment","physical","wheelchair symbol"]},{"title":"fa-solid fa-whiskey-glass","searchTerms":["alcohol","bar","beverage","bourbon","drink","glass","liquor","neat","rye","scotch","shot","tumbler","tumbler glass","whisky"]},{"title":"fa-brands fa-whmcs","searchTerms":[]},{"title":"fa-solid fa-wifi","searchTerms":["connection","hotspot","internet","network","wireless"]},{"title":"fa-brands fa-wikipedia-w","searchTerms":[]},{"title":"fa-solid fa-wind","searchTerms":["air","blow","breeze","fall","seasonal","weather"]},{"title":"fa-solid fa-window-maximize","searchTerms":["Maximize","browser","computer","development","expand"]},{"title":"fa-regular fa-window-maximize","searchTerms":["Maximize","browser","computer","development","expand"]},{"title":"fa-solid fa-window-minimize","searchTerms":["Minimize","browser","collapse","computer","development"]},{"title":"fa-regular fa-window-minimize","searchTerms":["Minimize","browser","collapse","computer","development"]},{"title":"fa-solid fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"fa-regular fa-window-restore","searchTerms":["browser","computer","development"]},{"title":"fa-brands fa-windows","searchTerms":["microsoft","operating system","os"]},{"title":"fa-solid fa-wine-bottle","searchTerms":["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{"title":"fa-solid fa-wine-glass","searchTerms":["alcohol","bar","beverage","cabernet","drink","glass","grapes","merlot","sauvignon","wine","wine glass"]},{"title":"fa-solid fa-wine-glass-empty","searchTerms":["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{"title":"fa-brands fa-wirsindhandwerk","searchTerms":[]},{"title":"fa-brands fa-wix","searchTerms":[]},{"title":"fa-brands fa-wizards-of-the-coast","searchTerms":["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{"title":"fa-brands fa-wodu","searchTerms":[]},{"title":"fa-brands fa-wolf-pack-battalion","searchTerms":[]},{"title":"fa-solid fa-won-sign","searchTerms":["Won Sign","currency"]},{"title":"fa-brands fa-wordpress","searchTerms":[]},{"title":"fa-brands fa-wordpress-simple","searchTerms":[]},{"title":"fa-solid fa-worm","searchTerms":["dirt","garden","worm","wriggle"]},{"title":"fa-brands fa-wpbeginner","searchTerms":[]},{"title":"fa-brands fa-wpexplorer","searchTerms":[]},{"title":"fa-brands fa-wpforms","searchTerms":[]},{"title":"fa-brands fa-wpressr","searchTerms":["rendact"]},{"title":"fa-solid fa-wrench","searchTerms":["construction","fix","mechanic","plumbing","settings","spanner","tool","update","wrench"]},{"title":"fa-solid fa-x","searchTerms":["Latin Capital Letter X","Latin Small Letter X","letter"]},{"title":"fa-solid fa-x-ray","searchTerms":["health","medical","radiological images","radiology","skeleton"]},{"title":"fa-brands fa-x-twitter","searchTerms":[" elon"," twitter"," x"]},{"title":"fa-brands fa-xbox","searchTerms":[]},{"title":"fa-brands fa-xing","searchTerms":[]},{"title":"fa-solid fa-xmark","searchTerms":["Cancellation X","Multiplication Sign","Multiplication X","cancel","close","cross","cross mark","error","exit","incorrect","mark","multiplication","multiply","notice","notification","notify","problem","sign","wrong","x","\u00d7"]},{"title":"fa-solid fa-xmarks-lines","searchTerms":["barricade","barrier","fence","poison","roadblock"]},{"title":"fa-solid fa-y","searchTerms":["Latin Capital Letter Y","Latin Small Letter Y","letter","yay","yes"]},{"title":"fa-brands fa-y-combinator","searchTerms":[]},{"title":"fa-brands fa-yahoo","searchTerms":[]},{"title":"fa-brands fa-yammer","searchTerms":[]},{"title":"fa-brands fa-yandex","searchTerms":[]},{"title":"fa-brands fa-yandex-international","searchTerms":[]},{"title":"fa-brands fa-yarn","searchTerms":[]},{"title":"fa-brands fa-yelp","searchTerms":[]},{"title":"fa-solid fa-yen-sign","searchTerms":["Yen Sign","currency"]},{"title":"fa-solid fa-yin-yang","searchTerms":["daoism","opposites","religion","tao","taoism","taoist","yang","yin","yin yang"]},{"title":"fa-brands fa-yoast","searchTerms":[]},{"title":"fa-brands fa-youtube","searchTerms":["film","video","youtube-play","youtube-square"]},{"title":"fa-solid fa-z","searchTerms":["Latin Capital Letter Z","Latin Small Letter Z","letter"]},{"title":"fa-brands fa-zhihu","searchTerms":[]}] + }); +}); \ No newline at end of file diff --git a/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.min.js b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.min.js new file mode 100644 index 0000000..a64525c --- /dev/null +++ b/vendor/ayecode/wp-font-awesome-settings/assets/js/fa-iconpicker-v6.min.js @@ -0,0 +1 @@ +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{a(jQuery)}})(function(a){a.ui=a.ui||{};var b=a.ui.version="1.12.1";(function(){var b,c=Math.max,d=Math.abs,e=/left|center|right/,f=/top|center|bottom/,g=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,i=/%$/,j=a.fn.pos;function k(a,b,c){return[parseFloat(a[0])*(i.test(a[0])?b/100:1),parseFloat(a[1])*(i.test(a[1])?c/100:1)]}function l(b,c){return parseInt(a.css(b,c),10)||0}function m(b){var c=b[0];if(c.nodeType===9){return{width:b.width(),height:b.height(),offset:{top:0,left:0}}}if(a.isWindow(c)){return{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}}if(c.preventDefault){return{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}}return{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.pos={scrollbarWidth:function(){if(b!==undefined){return b}var c,d,e=a("
              "+"
              "),f=e.children()[0];a("body").append(e);c=f.offsetWidth;e.css("overflow","scroll");d=f.offsetWidth;if(c===d){d=e[0].clientWidth}e.remove();return b=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e=c==="scroll"||c==="auto"&&b.width0?"right":"center",vertical:k<0?"top":i>0?"bottom":"middle"};if(nc(d(i),d(k))){l.important="horizontal"}else{l.important="vertical"}b.using.call(this,a,l)}}g.offset(a.extend(z,{using:f}))})};a.ui.pos={_trigger:function(a,b,c,d){if(b.elem){b.elem.trigger({type:c,position:a,positionData:b,triggered:d})}},fit:{left:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitLeft");var e=d.within,f=e.isWindow?e.scrollLeft:e.offset.left,g=e.width,h=b.left-d.collisionPosition.marginLeft,i=f-h,j=h+d.collisionWidth-g-f,k;if(d.collisionWidth>g){if(i>0&&j<=0){k=b.left+i+d.collisionWidth-g-f;b.left+=i-k}else if(j>0&&i<=0){b.left=f}else{if(i>j){b.left=f+g-d.collisionWidth}else{b.left=f}}}else if(i>0){b.left+=i}else if(j>0){b.left-=j}else{b.left=c(b.left-h,b.left)}a.ui.pos._trigger(b,d,"posCollided","fitLeft")},top:function(b,d){a.ui.pos._trigger(b,d,"posCollide","fitTop");var e=d.within,f=e.isWindow?e.scrollTop:e.offset.top,g=d.within.height,h=b.top-d.collisionPosition.marginTop,i=f-h,j=h+d.collisionHeight-g-f,k;if(d.collisionHeight>g){if(i>0&&j<=0){k=b.top+i+d.collisionHeight-g-f;b.top+=i-k}else if(j>0&&i<=0){b.top=f}else{if(i>j){b.top=f+g-d.collisionHeight}else{b.top=f}}}else if(i>0){b.top+=i}else if(j>0){b.top-=j}else{b.top=c(b.top-h,b.top)}a.ui.pos._trigger(b,d,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var e=c.within,f=e.offset.left+e.scrollLeft,g=e.width,h=e.isWindow?e.scrollLeft:e.offset.left,i=b.left-c.collisionPosition.marginLeft,j=i-h,k=i+c.collisionWidth-g-h,l=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,m=c.at[0]==="left"?c.targetWidth:c.at[0]==="right"?-c.targetWidth:0,n=-2*c.offset[0],o,p;if(j<0){o=b.left+l+m+n+c.collisionWidth-g-f;if(o<0||o0){p=b.left-c.collisionPosition.marginLeft+l+m+n-h;if(p>0||d(p)0){p=b.top-c.collisionPosition.marginTop+m+n+o-h;if(p>0||d(p)10&&e<11;b.innerHTML="";c.removeChild(b)})()})();var c=a.ui.position});(function(a){"use strict";if(typeof define==="function"&&define.amd){define(["jquery"],a)}else if(window.jQuery&&!window.jQuery.fn.iconpicker){a(window.jQuery)}})(function(a){"use strict";var b={isEmpty:function(a){return a===false||a===""||a===null||a===undefined},isEmptyObject:function(a){return this.isEmpty(a)===true||a.length===0},isElement:function(b){return a(b).length>0},isString:function(a){return typeof a==="string"||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return a.inArray(b,c)!==-1},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}};var c=function(d,e){this._id=c._idCounter++;this.element=a(d).addClass("iconpicker-element");this._trigger("iconpickerCreate",{iconpickerValue:this.iconpickerValue});this.options=a.extend({},c.defaultOptions,this.element.data(),e);this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates);this.options.originalPlacement=this.options.placement;this.container=b.isElement(this.options.container)?a(this.options.container):false;if(this.container===false){if(this.element.is(".dropdown-toggle")){this.container=a("~ .dropdown-menu:first",this.element)}else{this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element}}this.container.addClass("iconpicker-container");if(this.isDropdownMenu()){this.options.placement="inline"}this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):false;if(this.input===false){this.input=this.container.find(this.options.input);if(!this.input.is("input,textarea")){this.input=false}}this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component);if(this.component.length===0){this.component=false}else{this.component.find("i").addClass("iconpicker-component")}this._createPopover();this._createIconpicker();if(this.getAcceptButton().length===0){this.options.mustAccept=false}if(this.isInputGroup()){this.container.parent().append(this.popover)}else{this.container.append(this.popover)}this._bindElementEvents();this._bindWindowEvents();this.update(this.options.selected);if(this.isInline()){this.show()}this._trigger("iconpickerCreated",{iconpickerValue:this.iconpickerValue})};c._idCounter=0;c.defaultOptions={title:false,selected:false,defaultValue:false,placement:"bottom",collision:"none",animation:true,hideOnSelect:true,showFooter:false,searchInFooter:false,mustAccept:false,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return a},input:"input,.iconpicker-input",inputSearch:false,container:false,component:".input-group-addon,.iconpicker-component",templates:{popover:'
              '+'
              ',footer:'',buttons:''+' ',search:'',iconpicker:'
              ',iconpickerItem:''}};c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");if(!!b){b[c].apply(b,d)}})};c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{};this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(!!this.options.title){c.append(a('
              '+this.options.title+"
              "))}if(this.hasSeparatedSearchInput()&&!this.options.searchInFooter){c.append(this.options.templates.search)}else if(!this.options.title){c.remove()}if(this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);if(this.hasSeparatedSearchInput()&&this.options.searchInFooter){d.append(a(this.options.templates.search))}if(!b.isEmpty(this.options.templates.buttons)){d.append(a(this.options.templates.buttons))}this.popover.append(d)}if(this.options.animation===true){this.popover.addClass("fade")}return this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);if(d.is("i")){d=d.parent()}b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue});if(b.options.mustAccept===false){b.update(d.data("iconpickerValue"));b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})}else{b.update(d.data("iconpickerValue"),true)}if(b.options.hideOnSelect&&b.options.mustAccept===false){b.hide()}};for(var d in this.options.icons){if(typeof this.options.icons[d].title==="string"){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title));e.data("iconpickerValue",this.options.icons[d].title).on("click.iconpicker",c);this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d].title));if(this.options.icons[d].searchTerms.length>0){var f="";for(var g=0;g0){a.attr("class",this.options.fullClassFormatter(this.iconpickerValue))}else{this.component.html(this.getHtml())}}},_updateFormGroupStatus:function(a){if(this.hasInput()){if(a!==false){this.input.parents(".form-group:first").removeClass("has-error")}else{this.input.parents(".form-group:first").addClass("has-error")}return true}return false},getValid:function(c){if(!b.isString(c)){c=""}var d=c==="";c=a.trim(c);var e=false;for(var f=0;f'},setSourceValue:function(a){a=this.setValue(a);if(a!==false&&a!==""){if(this.hasInput()){this.input.val(this.iconpickerValue)}else{this.element.data("iconpickerValue",this.iconpickerValue)}this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})}return a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;if(this.hasInput()){b=this.input.val()}else{b=this.element.data("iconpickerValue")}if(b===undefined||b===""||b===null||b===false){b=a}return b},hasInput:function(){return this.input!==false},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===true},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==false&&!this.isInputSearch()},hasComponent:function(){return this.component!==false},hasContainer:function(){return this.container!==false},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c)){this.iconpicker.find(".iconpicker-item").show();return a(false)}else{var d=[];this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this);var e=b.attr("title").toLowerCase();var f=b.attr("data-search-terms")?b.attr("data-search-terms").toLowerCase():"";e=e+" "+f;var g=false;try{g=new RegExp("(^|\\W)"+c,"g")}catch(a){g=false}if(g!==false&&e.match(g)){d.push(b);b.show()}else{b.hide()}});return d}},show:function(){if(this.popover.hasClass("show")){return false}a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide");this._trigger("iconpickerShow",{iconpickerValue:this.iconpickerValue});this.updatePlacement();this.popover.addClass("show");setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block");this._trigger("iconpickerShown",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},hide:function(){if(!this.popover.hasClass("show")){return false}this._trigger("iconpickerHide",{iconpickerValue:this.iconpickerValue});this.popover.removeClass("show");setTimeout(a.proxy(function(){this.popover.css("display","none");this.getSearchInput().val("");this.filter("");this._trigger("iconpickerHidden",{iconpickerValue:this.iconpickerValue})},this),this.options.animation?300:1)},toggle:function(){if(this.popover.is(":visible")){this.hide()}else{this.show(true)}},update:function(a,b){a=a?a:this.getSourceValue(this.iconpickerValue);this._trigger("iconpickerUpdate",{iconpickerValue:this.iconpickerValue});if(b===true){a=this.setValue(a)}else{a=this.setSourceValue(a);this._updateFormGroupStatus(a!==false)}this._updateComponents();this._trigger("iconpickerUpdated",{iconpickerValue:this.iconpickerValue});return a},destroy:function(){this._trigger("iconpickerDestroy",{iconpickerValue:this.iconpickerValue});this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");this._unbindElementEvents();this._unbindWindowEvents();a(this.popover).remove();this._trigger("iconpickerDestroyed",{iconpickerValue:this.iconpickerValue})},disable:function(){if(this.hasInput()){this.input.prop("disabled",true);return true}return false},enable:function(){if(this.hasInput()){this.input.prop("disabled",false);return true}return false},isDisabled:function(){if(this.hasInput()){return this.input.prop("disabled")===true}return false},isInline:function(){return this.options.placement==="inline"||this.popover.hasClass("inline")}};a.iconpicker=c;a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);if(!d.data("iconpicker")){d.data("iconpicker",new c(this,typeof b==="object"?b:{}))}})};c.defaultOptions=a.extend(c.defaultOptions,{icons:[{title:"fa-solid fa-0",searchTerms:["Digit Zero","nada","none","zero","zilch"]},{title:"fa-solid fa-1",searchTerms:["Digit One","one"]},{title:"fa-solid fa-2",searchTerms:["Digit Two","two"]},{title:"fa-solid fa-3",searchTerms:["Digit Three","three"]},{title:"fa-solid fa-4",searchTerms:["Digit Four","four"]},{title:"fa-solid fa-5",searchTerms:["Digit Five","five"]},{title:"fa-solid fa-6",searchTerms:["Digit Six","six"]},{title:"fa-solid fa-7",searchTerms:["Digit Seven","seven"]},{title:"fa-solid fa-8",searchTerms:["Digit Eight","eight"]},{title:"fa-solid fa-9",searchTerms:["Digit Nine","nine"]},{title:"fa-brands fa-42-group",searchTerms:[]},{title:"fa-brands fa-500px",searchTerms:[]},{title:"fa-solid fa-a",searchTerms:["Latin Capital Letter A","Latin Small Letter A","letter"]},{title:"fa-brands fa-accessible-icon",searchTerms:["accessibility","handicap","person","wheelchair","wheelchair-alt"]},{title:"fa-brands fa-accusoft",searchTerms:[]},{title:"fa-solid fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"fa-regular fa-address-book",searchTerms:["contact","directory","index","little black book","rolodex"]},{title:"fa-solid fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile","registration"]},{title:"fa-regular fa-address-card",searchTerms:["about","contact","id","identification","postcard","profile","registration"]},{title:"fa-brands fa-adn",searchTerms:[]},{title:"fa-brands fa-adversal",searchTerms:[]},{title:"fa-brands fa-affiliatetheme",searchTerms:[]},{title:"fa-brands fa-airbnb",searchTerms:[]},{title:"fa-brands fa-algolia",searchTerms:[]},{title:"fa-solid fa-align-center",searchTerms:["format","middle","paragraph","text"]},{title:"fa-solid fa-align-justify",searchTerms:["format","paragraph","text"]},{title:"fa-solid fa-align-left",searchTerms:["format","paragraph","text"]},{title:"fa-solid fa-align-right",searchTerms:["format","paragraph","text"]},{title:"fa-brands fa-alipay",searchTerms:[]},{title:"fa-brands fa-amazon",searchTerms:[]},{title:"fa-brands fa-amazon-pay",searchTerms:[]},{title:"fa-brands fa-amilia",searchTerms:[]},{title:"fa-solid fa-anchor",searchTerms:["anchor","berth","boat","dock","embed","link","maritime","moor","port","secure","ship","tool"]},{title:"fa-solid fa-anchor-circle-check",searchTerms:["marina","not affected","ok","okay","port"]},{title:"fa-solid fa-anchor-circle-exclamation",searchTerms:["affected","marina","port"]},{title:"fa-solid fa-anchor-circle-xmark",searchTerms:["destroy","marina","port"]},{title:"fa-solid fa-anchor-lock",searchTerms:["closed","lockdown","marina","port","quarantine"]},{title:"fa-brands fa-android",searchTerms:["robot"]},{title:"fa-brands fa-angellist",searchTerms:[]},{title:"fa-solid fa-angle-down",searchTerms:["Down Arrowhead","arrow","caret","download","expand"]},{title:"fa-solid fa-angle-left",searchTerms:["Single Left-Pointing Angle Quotation Mark","arrow","back","caret","less","previous"]},{title:"fa-solid fa-angle-right",searchTerms:["Single Right-Pointing Angle Quotation Mark","arrow","care","forward","more","next"]},{title:"fa-solid fa-angle-up",searchTerms:["Up Arrowhead","arrow","caret","collapse","upload"]},{title:"fa-solid fa-angles-down",searchTerms:["arrows","caret","download","expand"]},{title:"fa-solid fa-angles-left",searchTerms:["Left-Pointing Double Angle Quotation Mark","arrows","back","caret","laquo","previous","quote"]},{title:"fa-solid fa-angles-right",searchTerms:["Right-Pointing Double Angle Quotation Mark","arrows","caret","forward","more","next","quote","raquo"]},{title:"fa-solid fa-angles-up",searchTerms:["arrows","caret","collapse","upload"]},{title:"fa-brands fa-angrycreative",searchTerms:[]},{title:"fa-brands fa-angular",searchTerms:[]},{title:"fa-solid fa-ankh",searchTerms:["Ankh","amulet","copper","coptic christianity","copts","crux ansata","egypt","venus"]},{title:"fa-brands fa-app-store",searchTerms:[]},{title:"fa-brands fa-app-store-ios",searchTerms:[]},{title:"fa-brands fa-apper",searchTerms:[]},{title:"fa-brands fa-apple",searchTerms:["fruit","ios","mac","operating system","os","osx"]},{title:"fa-brands fa-apple-pay",searchTerms:[]},{title:"fa-solid fa-apple-whole",searchTerms:["apple","fall","fruit","fuji","green","green apple","macintosh","orchard","red","red apple","seasonal","vegan"]},{title:"fa-solid fa-archway",searchTerms:["arc","monument","road","street","tunnel"]},{title:"fa-solid fa-arrow-down",searchTerms:["Downwards Arrow","download"]},{title:"fa-solid fa-arrow-down-1-9",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fa-solid fa-arrow-down-9-1",searchTerms:["arrange","filter","numbers","order","sort-numeric-asc"]},{title:"fa-solid fa-arrow-down-a-z",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fa-solid fa-arrow-down-long",searchTerms:["download","long-arrow-down"]},{title:"fa-solid fa-arrow-down-short-wide",searchTerms:["arrange","filter","order","sort-amount-asc"]},{title:"fa-solid fa-arrow-down-up-across-line",searchTerms:["border","crossing","transfer"]},{title:"fa-solid fa-arrow-down-up-lock",searchTerms:["border","closed","crossing","lockdown","quarantine","transfer"]},{title:"fa-solid fa-arrow-down-wide-short",searchTerms:["arrange","filter","number","order","sort-amount-asc"]},{title:"fa-solid fa-arrow-down-z-a",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-asc"]},{title:"fa-solid fa-arrow-left",searchTerms:["Leftwards Arrow","back","previous"]},{title:"fa-solid fa-arrow-left-long",searchTerms:["back","long-arrow-left","previous"]},{title:"fa-solid fa-arrow-pointer",searchTerms:["arrow","cursor","select"]},{title:"fa-solid fa-arrow-right",searchTerms:["Rightwards Arrow","forward","next"]},{title:"fa-solid fa-arrow-right-arrow-left",searchTerms:["Rightwards Arrow Over Leftwards Arrow","arrow","arrows","reciprocate","return","swap","transfer"]},{title:"fa-solid fa-arrow-right-from-bracket",searchTerms:["arrow","exit","leave","log out","logout"]},{title:"fa-solid fa-arrow-right-long",searchTerms:["forward","long-arrow-right","next"]},{title:"fa-solid fa-arrow-right-to-bracket",searchTerms:["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{title:"fa-solid fa-arrow-right-to-city",searchTerms:["building","city","exodus","rural","urban"]},{title:"fa-solid fa-arrow-rotate-left",searchTerms:["Anticlockwise Open Circle Arrow","back","control z","exchange","oops","return","rotate","swap"]},{title:"fa-solid fa-arrow-rotate-right",searchTerms:["Clockwise Open Circle Arrow","forward","refresh","reload","repeat"]},{title:"fa-solid fa-arrow-trend-down",searchTerms:["line","stocks","trend"]},{title:"fa-solid fa-arrow-trend-up",searchTerms:["line","stocks","trend"]},{title:"fa-solid fa-arrow-turn-down",searchTerms:["arrow"]},{title:"fa-solid fa-arrow-turn-up",searchTerms:["arrow"]},{title:"fa-solid fa-arrow-up",searchTerms:["Upwards Arrow","forward","upload"]},{title:"fa-solid fa-arrow-up-1-9",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fa-solid fa-arrow-up-9-1",searchTerms:["arrange","filter","numbers","order","sort-numeric-desc"]},{title:"fa-solid fa-arrow-up-a-z",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fa-solid fa-arrow-up-from-bracket",searchTerms:["share","transfer","upload"]},{title:"fa-solid fa-arrow-up-from-ground-water",searchTerms:["groundwater","spring","water supply","water table"]},{title:"fa-solid fa-arrow-up-from-water-pump",searchTerms:["flood","groundwater","pump","submersible","sump pump"]},{title:"fa-solid fa-arrow-up-long",searchTerms:["long-arrow-up","upload"]},{title:"fa-solid fa-arrow-up-right-dots",searchTerms:["growth","increase","population"]},{title:"fa-solid fa-arrow-up-right-from-square",searchTerms:["new","open","send","share"]},{title:"fa-solid fa-arrow-up-short-wide",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fa-solid fa-arrow-up-wide-short",searchTerms:["arrange","filter","order","sort-amount-desc"]},{title:"fa-solid fa-arrow-up-z-a",searchTerms:["alphabetical","arrange","filter","order","sort-alpha-desc"]},{title:"fa-solid fa-arrows-down-to-line",searchTerms:["scale down","sink"]},{title:"fa-solid fa-arrows-down-to-people",searchTerms:["affected","focus","targeted"]},{title:"fa-solid fa-arrows-left-right",searchTerms:["expand","horizontal","landscape","resize","wide"]},{title:"fa-solid fa-arrows-left-right-to-line",searchTerms:["analysis","expand","gap"]},{title:"fa-solid fa-arrows-rotate",searchTerms:["Clockwise Right and Left Semicircle Arrows","exchange","refresh","reload","rotate","swap"]},{title:"fa-solid fa-arrows-spin",searchTerms:["cycle","rotate","spin","whirl"]},{title:"fa-solid fa-arrows-split-up-and-left",searchTerms:["agile","split"]},{title:"fa-solid fa-arrows-to-circle",searchTerms:["center","concentrate","coordinate","coordination","focal point","focus"]},{title:"fa-solid fa-arrows-to-dot",searchTerms:["assembly point","center","condense","focus","minimize"]},{title:"fa-solid fa-arrows-to-eye",searchTerms:["center","coordinated assessment","focus"]},{title:"fa-solid fa-arrows-turn-right",searchTerms:["arrows"]},{title:"fa-solid fa-arrows-turn-to-dots",searchTerms:["destination","nexus"]},{title:"fa-solid fa-arrows-up-down",searchTerms:["expand","portrait","resize","tall","vertical"]},{title:"fa-solid fa-arrows-up-down-left-right",searchTerms:["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{title:"fa-solid fa-arrows-up-to-line",searchTerms:["rise","scale up"]},{title:"fa-brands fa-artstation",searchTerms:[]},{title:"fa-solid fa-asterisk",searchTerms:["Asterisk","Heavy Asterisk","annotation","details","reference","star"]},{title:"fa-brands fa-asymmetrik",searchTerms:[]},{title:"fa-solid fa-at",searchTerms:["Commercial At","address","author","e-mail","email","fluctuate","handle"]},{title:"fa-brands fa-atlassian",searchTerms:[]},{title:"fa-solid fa-atom",searchTerms:["atheism","atheist","atom","atom symbol","chemistry","electron","ion","isotope","neutron","nuclear","proton","science"]},{title:"fa-brands fa-audible",searchTerms:[]},{title:"fa-solid fa-audio-description",searchTerms:["blind","narration","video","visual"]},{title:"fa-solid fa-austral-sign",searchTerms:["Austral Sign","currency"]},{title:"fa-brands fa-autoprefixer",searchTerms:[]},{title:"fa-brands fa-avianex",searchTerms:[]},{title:"fa-brands fa-aviato",searchTerms:[]},{title:"fa-solid fa-award",searchTerms:["honor","praise","prize","recognition","ribbon","trophy"]},{title:"fa-brands fa-aws",searchTerms:[]},{title:"fa-solid fa-b",searchTerms:["Latin Capital Letter B","Latin Small Letter B","letter"]},{title:"fa-solid fa-baby",searchTerms:["users-people"]},{title:"fa-solid fa-baby-carriage",searchTerms:["buggy","carrier","infant","push","stroller","transportation","walk","wheels"]},{title:"fa-solid fa-backward",searchTerms:["arrow","double","fast reverse button","previous","rewind"]},{title:"fa-solid fa-backward-fast",searchTerms:["arrow","beginning","first","last track button","previous","previous scene","previous track","rewind","start","triangle"]},{title:"fa-solid fa-backward-step",searchTerms:["beginning","first","previous","rewind","start"]},{title:"fa-solid fa-bacon",searchTerms:["bacon","blt","breakfast","food","ham","lard","meat","pancetta","pork","rasher"]},{title:"fa-solid fa-bacteria",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fa-solid fa-bacterium",searchTerms:["antibiotic","antibody","covid-19","health","organism","sick"]},{title:"fa-solid fa-bag-shopping",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fa-solid fa-bahai",searchTerms:["bahai","bahá'í","star"]},{title:"fa-solid fa-baht-sign",searchTerms:["currency"]},{title:"fa-solid fa-ban",searchTerms:["abort","ban","block","cancel","delete","entry","forbidden","hide","no","not","prohibit","prohibited","remove","stop","trash"]},{title:"fa-solid fa-ban-smoking",searchTerms:["ban","cancel","forbidden","no","no smoking","non-smoking","not","prohibited","smoking"]},{title:"fa-solid fa-bandage",searchTerms:["adhesive bandage","bandage","boo boo","first aid","ouch"]},{title:"fa-brands fa-bandcamp",searchTerms:[]},{title:"fa-solid fa-bangladeshi-taka-sign",searchTerms:["bdt","currency","tk"]},{title:"fa-solid fa-barcode",searchTerms:["info","laser","price","scan","upc"]},{title:"fa-solid fa-bars",searchTerms:["checklist","drag","hamburger","list","menu","nav","navigation","ol","reorder","settings","todo","ul"]},{title:"fa-solid fa-bars-progress",searchTerms:["checklist","downloading","downloads","loading","poll","progress","project management","settings","to do"]},{title:"fa-solid fa-bars-staggered",searchTerms:["flow","list","timeline"]},{title:"fa-solid fa-baseball",searchTerms:["ball","baseball","foul","glove","hardball","league","leather","mlb","softball","sport","underarm"]},{title:"fa-solid fa-baseball-bat-ball",searchTerms:["bat","league","mlb","slugger","softball","sport"]},{title:"fa-solid fa-basket-shopping",searchTerms:["buy","checkout","grocery","payment","purchase"]},{title:"fa-solid fa-basketball",searchTerms:["ball","basketball","dribble","dunk","hoop","nba"]},{title:"fa-solid fa-bath",searchTerms:["bath","bathtub","clean","shower","tub","wash"]},{title:"fa-solid fa-battery-empty",searchTerms:["charge","dead","power","status"]},{title:"fa-solid fa-battery-full",searchTerms:["batter","battery","charge","power","status"]},{title:"fa-solid fa-battery-half",searchTerms:["charge","power","status"]},{title:"fa-solid fa-battery-quarter",searchTerms:["charge","low","power","status"]},{title:"fa-solid fa-battery-three-quarters",searchTerms:["charge","power","status"]},{title:"fa-brands fa-battle-net",searchTerms:[]},{title:"fa-solid fa-bed",searchTerms:["hospital","hotel","lodging","mattress","patient","person in bed","rest","sleep","travel"]},{title:"fa-solid fa-bed-pulse",searchTerms:["EKG","bed","electrocardiogram","health","hospital","life","patient","vital"]},{title:"fa-solid fa-beer-mug-empty",searchTerms:["alcohol","ale","bar","beverage","brew","brewery","drink","foam","lager","liquor","mug","stein"]},{title:"fa-brands fa-behance",searchTerms:[]},{title:"fa-solid fa-bell",searchTerms:["alarm","alert","bel","bell","chime","notification","reminder"]},{title:"fa-regular fa-bell",searchTerms:["alarm","alert","bel","bell","chime","notification","reminder"]},{title:"fa-solid fa-bell-concierge",searchTerms:["attention","bell","bellhop","bellhop bell","hotel","receptionist","service","support"]},{title:"fa-solid fa-bell-slash",searchTerms:["alert","bell","bell with slash","cancel","disabled","forbidden","mute","notification","off","quiet","reminder","silent"]},{title:"fa-regular fa-bell-slash",searchTerms:["alert","bell","bell with slash","cancel","disabled","forbidden","mute","notification","off","quiet","reminder","silent"]},{title:"fa-solid fa-bezier-curve",searchTerms:["curves","illustrator","lines","path","vector"]},{title:"fa-solid fa-bicycle",searchTerms:["bicycle","bike","gears","pedal","transportation","vehicle"]},{title:"fa-brands fa-bilibili",searchTerms:[]},{title:"fa-brands fa-bimobject",searchTerms:[]},{title:"fa-solid fa-binoculars",searchTerms:["glasses","magnify","scenic","spyglass","view"]},{title:"fa-solid fa-biohazard",searchTerms:["biohazard","covid-19","danger","dangerous","epidemic","hazmat","medical","pandemic","radioactive","sign","toxic","waste","zombie"]},{title:"fa-brands fa-bitbucket",searchTerms:["atlassian","bitbucket-square","git"]},{title:"fa-brands fa-bitcoin",searchTerms:[]},{title:"fa-solid fa-bitcoin-sign",searchTerms:["Bitcoin Sign","currency"]},{title:"fa-brands fa-bity",searchTerms:[]},{title:"fa-brands fa-black-tie",searchTerms:[]},{title:"fa-brands fa-blackberry",searchTerms:[]},{title:"fa-solid fa-blender",searchTerms:["cocktail","milkshake","mixer","puree","smoothie"]},{title:"fa-solid fa-blender-phone",searchTerms:["appliance","cocktail","fantasy","milkshake","mixer","puree","silly","smoothie"]},{title:"fa-solid fa-blog",searchTerms:["journal","log","online","personal","post","web 2.0","wordpress","writing"]},{title:"fa-brands fa-blogger",searchTerms:[]},{title:"fa-brands fa-blogger-b",searchTerms:[]},{title:"fa-brands fa-bluetooth",searchTerms:["signal"]},{title:"fa-brands fa-bluetooth-b",searchTerms:[]},{title:"fa-solid fa-bold",searchTerms:["emphasis","format","text"]},{title:"fa-solid fa-bolt",searchTerms:["charge","danger","electric","electricity","flash","high voltage","lightning","voltage","weather","zap"]},{title:"fa-solid fa-bolt-lightning",searchTerms:["electricity","flash","lightning","weather","zap"]},{title:"fa-solid fa-bomb",searchTerms:["bomb","comic","error","explode","fuse","grenade","warning"]},{title:"fa-solid fa-bone",searchTerms:["bone","calcium","dog","skeletal","skeleton","tibia"]},{title:"fa-solid fa-bong",searchTerms:["aparatus","cannabis","marijuana","pipe","smoke","smoking"]},{title:"fa-solid fa-book",searchTerms:["book","cover","decorated","diary","documentation","journal","library","notebook","notebook with decorative cover","read","research"]},{title:"fa-solid fa-book-atlas",searchTerms:["book","directions","geography","globe","library","map","research","travel","wayfinding"]},{title:"fa-solid fa-book-bible",searchTerms:["book","catholicism","christianity","god","holy"]},{title:"fa-solid fa-book-bookmark",searchTerms:["library","research"]},{title:"fa-solid fa-book-journal-whills",searchTerms:["book","force","jedi","sith","star wars","yoda"]},{title:"fa-solid fa-book-medical",searchTerms:["diary","documentation","health","history","journal","library","read","record","research"]},{title:"fa-solid fa-book-open",searchTerms:["Book","book","flyer","library","notebook","open","open book","pamphlet","reading","research"]},{title:"fa-solid fa-book-open-reader",searchTerms:["flyer","library","notebook","open book","pamphlet","reading","research"]},{title:"fa-solid fa-book-quran",searchTerms:["book","islam","muslim","religion"]},{title:"fa-solid fa-book-skull",searchTerms:["Dungeons & Dragons","crossbones","d","dark arts","death","dnd","documentation","evil","fantasy","halloween","holiday","library","necronomicon","read","research","skull","spell"]},{title:"fa-solid fa-book-tanakh",searchTerms:["book","jewish","judaism","religion"]},{title:"fa-solid fa-bookmark",searchTerms:["bookmark","favorite","library","mark","marker","read","remember","research","save"]},{title:"fa-regular fa-bookmark",searchTerms:["bookmark","favorite","library","mark","marker","read","remember","research","save"]},{title:"fa-brands fa-bootstrap",searchTerms:[]},{title:"fa-solid fa-border-all",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fa-solid fa-border-none",searchTerms:["cell","grid","outline","stroke","table"]},{title:"fa-solid fa-border-top-left",searchTerms:["cell","outline","stroke","table"]},{title:"fa-solid fa-bore-hole",searchTerms:["bore","bury","drill","hole"]},{title:"fa-brands fa-bots",searchTerms:[]},{title:"fa-solid fa-bottle-droplet",searchTerms:["alcohol","drink","oil","olive oil","wine"]},{title:"fa-solid fa-bottle-water",searchTerms:["h2o","plastic","water"]},{title:"fa-solid fa-bowl-food",searchTerms:["catfood","dogfood","food","rice"]},{title:"fa-solid fa-bowl-rice",searchTerms:["boiled","cooked","cooked rice","rice","steamed"]},{title:"fa-solid fa-bowling-ball",searchTerms:["alley","candlepin","gutter","lane","strike","tenpin"]},{title:"fa-solid fa-box",searchTerms:["archive","box","container","package","parcel","storage"]},{title:"fa-solid fa-box-archive",searchTerms:["box","package","save","storage"]},{title:"fa-solid fa-box-open",searchTerms:["archive","container","package","storage","unpack"]},{title:"fa-solid fa-box-tissue",searchTerms:["cough","covid-19","kleenex","mucus","nose","sneeze","snot"]},{title:"fa-solid fa-boxes-packing",searchTerms:["archive","box","package","storage","supplies"]},{title:"fa-solid fa-boxes-stacked",searchTerms:["archives","inventory","storage","warehouse"]},{title:"fa-solid fa-braille",searchTerms:["alphabet","blind","dots","raised","vision"]},{title:"fa-solid fa-brain",searchTerms:["brain","cerebellum","gray matter","intellect","intelligent","medulla oblongata","mind","noodle","wit"]},{title:"fa-solid fa-brazilian-real-sign",searchTerms:["brazilian real sign","currency"]},{title:"fa-solid fa-bread-slice",searchTerms:["bake","bakery","baking","dough","flour","gluten","grain","sandwich","sourdough","toast","wheat","yeast"]},{title:"fa-solid fa-bridge",searchTerms:["bridge","road"]},{title:"fa-solid fa-bridge-circle-check",searchTerms:["bridge","not affected","ok","okay","road"]},{title:"fa-solid fa-bridge-circle-exclamation",searchTerms:["affected","bridge","road"]},{title:"fa-solid fa-bridge-circle-xmark",searchTerms:["bridge","destroy","road"]},{title:"fa-solid fa-bridge-lock",searchTerms:["bridge","closed","lockdown","quarantine","road"]},{title:"fa-solid fa-bridge-water",searchTerms:["bridge","road"]},{title:"fa-solid fa-briefcase",searchTerms:["bag","briefcas","briefcase","business","luggage","office","work"]},{title:"fa-solid fa-briefcase-medical",searchTerms:["doctor","emt","first aid","health"]},{title:"fa-solid fa-broom",searchTerms:["broom","clean","cleaning","firebolt","fly","halloween","nimbus 2000","quidditch","sweep","sweeping","witch"]},{title:"fa-solid fa-broom-ball",searchTerms:["ball","bludger","broom","golden snitch","harry potter","hogwarts","quaffle","sport","wizard"]},{title:"fa-solid fa-brush",searchTerms:["art","bristles","color","handle","paint"]},{title:"fa-brands fa-btc",searchTerms:[]},{title:"fa-solid fa-bucket",searchTerms:["bucket","pail","sandcastle"]},{title:"fa-brands fa-buffer",searchTerms:[]},{title:"fa-solid fa-bug",searchTerms:["beetle","error","glitch","insect","repair","report"]},{title:"fa-solid fa-bug-slash",searchTerms:["beetle","fix","glitch","insect","optimize","repair","report","warning"]},{title:"fa-solid fa-bugs",searchTerms:["bedbug","infestation","lice","plague","ticks"]},{title:"fa-solid fa-building",searchTerms:["apartment","building","business","city","company","office","office building","urban","work"]},{title:"fa-regular fa-building",searchTerms:["apartment","building","business","city","company","office","office building","urban","work"]},{title:"fa-solid fa-building-circle-arrow-right",searchTerms:["building","city","distribution center","office"]},{title:"fa-solid fa-building-circle-check",searchTerms:["building","city","not affected","office","ok","okay"]},{title:"fa-solid fa-building-circle-exclamation",searchTerms:["affected","building","city","office"]},{title:"fa-solid fa-building-circle-xmark",searchTerms:["building","city","destroy","office"]},{title:"fa-solid fa-building-columns",searchTerms:["bank","building","college","education","institution","museum","students"]},{title:"fa-solid fa-building-flag",searchTerms:[" city","building","diplomat","embassy","flag","headquarters","united nations"]},{title:"fa-solid fa-building-lock",searchTerms:["building","city","closed","lock","lockdown","quarantine","secure"]},{title:"fa-solid fa-building-ngo",searchTerms:[" city","building","non governmental organization","office"]},{title:"fa-solid fa-building-shield",searchTerms:["building","city","police","protect","safety"]},{title:"fa-solid fa-building-un",searchTerms:["building","city","office","united nations"]},{title:"fa-solid fa-building-user",searchTerms:["apartment","building","city"]},{title:"fa-solid fa-building-wheat",searchTerms:["agriculture","building","city","usda"]},{title:"fa-solid fa-bullhorn",searchTerms:["Bullhorn","announcement","broadcast","loud","louder","loudspeaker","megaphone","public address","share"]},{title:"fa-solid fa-bullseye",searchTerms:["archery","goal","objective","strategy","target"]},{title:"fa-solid fa-burger",searchTerms:["bacon","beef","burger","burger king","cheeseburger","fast food","grill","ground beef","mcdonalds","sandwich"]},{title:"fa-brands fa-buromobelexperte",searchTerms:[]},{title:"fa-solid fa-burst",searchTerms:["boom","crash","explosion"]},{title:"fa-solid fa-bus",searchTerms:["bus","oncoming","oncoming bus","public transportation","transportation","travel","vehicle"]},{title:"fa-solid fa-bus-simple",searchTerms:["mta","public transportation","transportation","travel","vehicle"]},{title:"fa-solid fa-business-time",searchTerms:["alarm","briefcase","business socks","clock","flight of the conchords","reminder","wednesday"]},{title:"fa-brands fa-buy-n-large",searchTerms:[]},{title:"fa-brands fa-buysellads",searchTerms:[]},{title:"fa-solid fa-c",searchTerms:["Latin Capital Letter C","Latin Small Letter C","letter"]},{title:"fa-solid fa-cable-car",searchTerms:["aerial tramway","cable","gondola","lift","mountain","mountain cableway","tram","tramway","trolley"]},{title:"fa-solid fa-cake-candles",searchTerms:["anniversary","bakery","birthday","birthday cake","cake","candles","celebration","dessert","frosting","holiday","party","pastry","sweet"]},{title:"fa-solid fa-calculator",searchTerms:["Pocket Calculator","abacus","addition","arithmetic","counting","math","multiplication","subtraction"]},{title:"fa-solid fa-calendar",searchTerms:["calendar","calendar-o","date","day","event","month","schedule","tear-off calendar","time","when","year"]},{title:"fa-regular fa-calendar",searchTerms:["calendar","calendar-o","date","day","event","month","schedule","tear-off calendar","time","when","year"]},{title:"fa-solid fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","day","done","event","month","ok","schedule","select","success","tick","time","todo","when","year"]},{title:"fa-regular fa-calendar-check",searchTerms:["accept","agree","appointment","confirm","correct","date","day","done","event","month","ok","schedule","select","success","tick","time","todo","when","year"]},{title:"fa-solid fa-calendar-day",searchTerms:["date","day","detail","event","focus","month","schedule","single day","time","today","when","year"]},{title:"fa-solid fa-calendar-days",searchTerms:["calendar","date","day","event","month","schedule","time","when","year"]},{title:"fa-regular fa-calendar-days",searchTerms:["calendar","date","day","event","month","schedule","time","when","year"]},{title:"fa-solid fa-calendar-minus",searchTerms:["calendar","date","day","delete","event","month","negative","remove","schedule","time","when","year"]},{title:"fa-regular fa-calendar-minus",searchTerms:["calendar","date","day","delete","event","month","negative","remove","schedule","time","when","year"]},{title:"fa-solid fa-calendar-plus",searchTerms:["add","calendar","create","date","day","event","month","new","positive","schedule","time","when","year"]},{title:"fa-regular fa-calendar-plus",searchTerms:["add","calendar","create","date","day","event","month","new","positive","schedule","time","when","year"]},{title:"fa-solid fa-calendar-week",searchTerms:["date","day","detail","event","focus","month","schedule","single week","time","today","when","year"]},{title:"fa-solid fa-calendar-xmark",searchTerms:["archive","calendar","date","day","delete","event","month","remove","schedule","time","when","x","year"]},{title:"fa-regular fa-calendar-xmark",searchTerms:["archive","calendar","date","day","delete","event","month","remove","schedule","time","when","x","year"]},{title:"fa-solid fa-camera",searchTerms:["image","lens","photo","picture","record","shutter","video"]},{title:"fa-solid fa-camera-retro",searchTerms:["camera","image","lens","photo","picture","record","shutter","video"]},{title:"fa-solid fa-camera-rotate",searchTerms:["flip","front-facing","photo","selfie"]},{title:"fa-solid fa-campground",searchTerms:["camping","fall","outdoors","teepee","tent","tipi"]},{title:"fa-brands fa-canadian-maple-leaf",searchTerms:["canada","flag","flora","nature","plant"]},{title:"fa-solid fa-candy-cane",searchTerms:["candy","christmas","holiday","mint","peppermint","striped","xmas"]},{title:"fa-solid fa-cannabis",searchTerms:["bud","chronic","drugs","endica","endo","ganja","marijuana","mary jane","pot","reefer","sativa","spliff","weed","whacky-tabacky"]},{title:"fa-solid fa-capsules",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fa-solid fa-car",searchTerms:["auto","automobile","car","oncoming","oncoming automobile","sedan","transportation","travel","vehicle"]},{title:"fa-solid fa-car-battery",searchTerms:["auto","electric","mechanic","power"]},{title:"fa-solid fa-car-burst",searchTerms:["accident","auto","automobile","insurance","sedan","transportation","vehicle","wreck"]},{title:"fa-solid fa-car-on",searchTerms:["alarm","car","carjack","warning"]},{title:"fa-solid fa-car-rear",searchTerms:["auto","automobile","sedan","transportation","travel","vehicle"]},{title:"fa-solid fa-car-side",searchTerms:["auto","automobile","car","sedan","transportation","travel","vehicle"]},{title:"fa-solid fa-car-tunnel",searchTerms:["road","tunnel"]},{title:"fa-solid fa-caravan",searchTerms:["camper","motor home","rv","trailer","travel"]},{title:"fa-solid fa-caret-down",searchTerms:["arrow","dropdown","expand","menu","more","triangle"]},{title:"fa-solid fa-caret-left",searchTerms:["arrow","back","previous","triangle"]},{title:"fa-solid fa-caret-right",searchTerms:["arrow","forward","next","triangle"]},{title:"fa-solid fa-caret-up",searchTerms:["arrow","collapse","triangle"]},{title:"fa-solid fa-carrot",searchTerms:["bugs bunny","carrot","food","orange","vegan","vegetable"]},{title:"fa-solid fa-cart-arrow-down",searchTerms:["download","save","shopping"]},{title:"fa-solid fa-cart-flatbed",searchTerms:["carry","inventory","shipping","transport"]},{title:"fa-solid fa-cart-flatbed-suitcase",searchTerms:["airport","bag","baggage","suitcase","travel"]},{title:"fa-solid fa-cart-plus",searchTerms:["add","create","new","positive","shopping"]},{title:"fa-solid fa-cart-shopping",searchTerms:["buy","cart","checkout","grocery","payment","purchase","shopping","shopping cart","trolley"]},{title:"fa-solid fa-cash-register",searchTerms:["buy","cha-ching","change","checkout","commerce","leaerboard","machine","pay","payment","purchase","store"]},{title:"fa-solid fa-cat",searchTerms:["cat","feline","halloween","holiday","kitten","kitty","meow","pet"]},{title:"fa-brands fa-cc-amazon-pay",searchTerms:[]},{title:"fa-brands fa-cc-amex",searchTerms:["amex"]},{title:"fa-brands fa-cc-apple-pay",searchTerms:[]},{title:"fa-brands fa-cc-diners-club",searchTerms:[]},{title:"fa-brands fa-cc-discover",searchTerms:[]},{title:"fa-brands fa-cc-jcb",searchTerms:[]},{title:"fa-brands fa-cc-mastercard",searchTerms:[]},{title:"fa-brands fa-cc-paypal",searchTerms:[]},{title:"fa-brands fa-cc-stripe",searchTerms:[]},{title:"fa-brands fa-cc-visa",searchTerms:[]},{title:"fa-solid fa-cedi-sign",searchTerms:["Cedi Sign","currency"]},{title:"fa-solid fa-cent-sign",searchTerms:["Cent Sign","currency"]},{title:"fa-brands fa-centercode",searchTerms:[]},{title:"fa-brands fa-centos",searchTerms:["linux","operating system","os"]},{title:"fa-solid fa-certificate",searchTerms:["badge","star","verified"]},{title:"fa-solid fa-chair",searchTerms:["chair","furniture","seat","sit"]},{title:"fa-solid fa-chalkboard",searchTerms:["blackboard","learning","school","teaching","whiteboard","writing"]},{title:"fa-solid fa-chalkboard-user",searchTerms:["blackboard","instructor","learning","professor","school","whiteboard","writing"]},{title:"fa-solid fa-champagne-glasses",searchTerms:["alcohol","bar","beverage","celebrate","celebration","champagne","clink","clinking glasses","drink","glass","holiday","new year's eve","party","toast"]},{title:"fa-solid fa-charging-station",searchTerms:["electric","ev","tesla","vehicle"]},{title:"fa-solid fa-chart-area",searchTerms:["analytics","area","chart","graph"]},{title:"fa-solid fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"fa-regular fa-chart-bar",searchTerms:["analytics","bar","chart","graph"]},{title:"fa-solid fa-chart-column",searchTerms:["bar","bar chart","chart","graph","track","trend"]},{title:"fa-solid fa-chart-gantt",searchTerms:["chart","graph","track","trend"]},{title:"fa-solid fa-chart-line",searchTerms:["activity","analytics","chart","dashboard","gain","graph","increase","line"]},{title:"fa-solid fa-chart-pie",searchTerms:["analytics","chart","diagram","graph","pie"]},{title:"fa-solid fa-chart-simple",searchTerms:["analytics","bar","chart","column","graph","row","trend"]},{title:"fa-solid fa-check",searchTerms:["Check Mark","accept","agree","check","check mark","checkmark","confirm","correct","done","mark","notice","notification","notify","ok","select","success","tick","todo","yes","✓"]},{title:"fa-solid fa-check-double",searchTerms:["accept","agree","checkmark","confirm","correct","done","notice","notification","notify","ok","select","success","tick","todo"]},{title:"fa-solid fa-check-to-slot",searchTerms:["accept","cast","election","politics","positive","voting","yes"]},{title:"fa-solid fa-cheese",searchTerms:["cheddar","curd","gouda","melt","parmesan","sandwich","swiss","wedge"]},{title:"fa-solid fa-chess",searchTerms:["board","castle","checkmate","game","king","rook","strategy","tournament"]},{title:"fa-solid fa-chess-bishop",searchTerms:["Black Chess Bishop","board","checkmate","game","strategy"]},{title:"fa-regular fa-chess-bishop",searchTerms:["Black Chess Bishop","board","checkmate","game","strategy"]},{title:"fa-solid fa-chess-board",searchTerms:["board","checkmate","game","strategy"]},{title:"fa-solid fa-chess-king",searchTerms:["Black Chess King","board","checkmate","game","strategy"]},{title:"fa-regular fa-chess-king",searchTerms:["Black Chess King","board","checkmate","game","strategy"]},{title:"fa-solid fa-chess-knight",searchTerms:["Black Chess Knight","board","checkmate","game","horse","strategy"]},{title:"fa-regular fa-chess-knight",searchTerms:["Black Chess Knight","board","checkmate","game","horse","strategy"]},{title:"fa-solid fa-chess-pawn",searchTerms:["board","checkmate","chess","chess pawn","dupe","expendable","game","strategy"]},{title:"fa-regular fa-chess-pawn",searchTerms:["board","checkmate","chess","chess pawn","dupe","expendable","game","strategy"]},{title:"fa-solid fa-chess-queen",searchTerms:["Black Chess Queen","board","checkmate","game","strategy"]},{title:"fa-regular fa-chess-queen",searchTerms:["Black Chess Queen","board","checkmate","game","strategy"]},{title:"fa-solid fa-chess-rook",searchTerms:["Black Chess Rook","board","castle","checkmate","game","strategy"]},{title:"fa-regular fa-chess-rook",searchTerms:["Black Chess Rook","board","castle","checkmate","game","strategy"]},{title:"fa-solid fa-chevron-down",searchTerms:["arrow","download","expand"]},{title:"fa-solid fa-chevron-left",searchTerms:["Left-Pointing Angle Bracket","arrow","back","bracket","previous"]},{title:"fa-solid fa-chevron-right",searchTerms:["Right-Pointing Angle Bracket","arrow","bracket","forward","next"]},{title:"fa-solid fa-chevron-up",searchTerms:["arrow","collapse","upload"]},{title:"fa-solid fa-child",searchTerms:["boy","girl","kid","toddler","young","youth"]},{title:"fa-solid fa-child-combatant",searchTerms:["combatant"]},{title:"fa-solid fa-child-dress",searchTerms:["boy","girl","kid","toddler","young","youth"]},{title:"fa-solid fa-child-reaching",searchTerms:["boy","girl","kid","toddler","young","youth"]},{title:"fa-solid fa-children",searchTerms:["boy","child","girl","kid","kids","young","youth"]},{title:"fa-brands fa-chrome",searchTerms:["browser"]},{title:"fa-brands fa-chromecast",searchTerms:[]},{title:"fa-solid fa-church",searchTerms:["Christian","building","cathedral","chapel","church","community","cross","religion"]},{title:"fa-solid fa-circle",searchTerms:["Black Circle","Black Large Circle","black circle","blue","blue circle","brown","brown circle","chart","circle","circle-thin","diameter","dot","ellipse","fill","geometric","green","green circle","notification","orange","orange circle","progress","purple","purple circle","red","red circle","round","white circle","yellow","yellow circle"]},{title:"fa-regular fa-circle",searchTerms:["Black Circle","Black Large Circle","black circle","blue","blue circle","brown","brown circle","chart","circle","circle-thin","diameter","dot","ellipse","fill","geometric","green","green circle","notification","orange","orange circle","progress","purple","purple circle","red","red circle","round","white circle","yellow","yellow circle"]},{title:"fa-solid fa-circle-arrow-down",searchTerms:["download"]},{title:"fa-solid fa-circle-arrow-left",searchTerms:["back","previous"]},{title:"fa-solid fa-circle-arrow-right",searchTerms:["forward","next"]},{title:"fa-solid fa-circle-arrow-up",searchTerms:["upload"]},{title:"fa-solid fa-circle-check",searchTerms:["accept","affected","agree","clear","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fa-regular fa-circle-check",searchTerms:["accept","affected","agree","clear","confirm","correct","done","ok","select","success","tick","todo","yes"]},{title:"fa-solid fa-circle-chevron-down",searchTerms:["arrow","download","dropdown","menu","more"]},{title:"fa-solid fa-circle-chevron-left",searchTerms:["arrow","back","previous"]},{title:"fa-solid fa-circle-chevron-right",searchTerms:["arrow","forward","next"]},{title:"fa-solid fa-circle-chevron-up",searchTerms:["arrow","collapse","upload"]},{title:"fa-solid fa-circle-dollar-to-slot",searchTerms:["contribute","generosity","gift","give"]},{title:"fa-solid fa-circle-dot",searchTerms:["bullseye","button","geometric","notification","radio","radio button","target"]},{title:"fa-regular fa-circle-dot",searchTerms:["bullseye","button","geometric","notification","radio","radio button","target"]},{title:"fa-solid fa-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"fa-regular fa-circle-down",searchTerms:["arrow-circle-o-down","download"]},{title:"fa-solid fa-circle-exclamation",searchTerms:["affect","alert","damage","danger","error","important","notice","notification","notify","problem","warning"]},{title:"fa-solid fa-circle-h",searchTerms:["Circled Latin Capital Letter H","clinic","covid-19","emergency","letter","map"]},{title:"fa-solid fa-circle-half-stroke",searchTerms:["Circle with Left Half Black","adjust","chart","contrast","dark","fill","light","pie","progress","saturation"]},{title:"fa-solid fa-circle-info",searchTerms:["details","help","information","more","support"]},{title:"fa-solid fa-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"fa-regular fa-circle-left",searchTerms:["arrow-circle-o-left","back","previous"]},{title:"fa-solid fa-circle-minus",searchTerms:["delete","hide","negative","remove","shape","trash"]},{title:"fa-solid fa-circle-nodes",searchTerms:["cluster","connect","network"]},{title:"fa-solid fa-circle-notch",searchTerms:["circle-o-notch","diameter","dot","ellipse","round","spinner"]},{title:"fa-solid fa-circle-pause",searchTerms:["hold","wait"]},{title:"fa-regular fa-circle-pause",searchTerms:["hold","wait"]},{title:"fa-solid fa-circle-play",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fa-regular fa-circle-play",searchTerms:["audio","music","playing","sound","start","video"]},{title:"fa-solid fa-circle-plus",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fa-solid fa-circle-question",searchTerms:["help","information","support","unknown"]},{title:"fa-regular fa-circle-question",searchTerms:["help","information","support","unknown"]},{title:"fa-solid fa-circle-radiation",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","sign","warning"]},{title:"fa-solid fa-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"fa-regular fa-circle-right",searchTerms:["arrow-circle-o-right","forward","next"]},{title:"fa-solid fa-circle-stop",searchTerms:["block","box","circle","square"]},{title:"fa-regular fa-circle-stop",searchTerms:["block","box","circle","square"]},{title:"fa-solid fa-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fa-regular fa-circle-up",searchTerms:["arrow-circle-o-up"]},{title:"fa-solid fa-circle-user",searchTerms:["users-people"]},{title:"fa-regular fa-circle-user",searchTerms:["users-people"]},{title:"fa-solid fa-circle-xmark",searchTerms:["close","cross","destroy","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fa-regular fa-circle-xmark",searchTerms:["close","cross","destroy","exit","incorrect","notice","notification","notify","problem","wrong","x"]},{title:"fa-solid fa-city",searchTerms:["buildings","busy","city","cityscape","skyscrapers","urban","windows"]},{title:"fa-solid fa-clapperboard",searchTerms:["camera","clapper","clapper board","director","film","movie","record"]},{title:"fa-solid fa-clipboard",searchTerms:["clipboar","clipboard","copy","notes","paste","record"]},{title:"fa-regular fa-clipboard",searchTerms:["clipboar","clipboard","copy","notes","paste","record"]},{title:"fa-solid fa-clipboard-check",searchTerms:["accept","agree","confirm","done","ok","select","success","tick","todo","yes"]},{title:"fa-solid fa-clipboard-list",searchTerms:["checklist","completed","done","finished","intinerary","ol","schedule","tick","todo","ul"]},{title:"fa-solid fa-clipboard-question",searchTerms:["assistance","interview","query","question"]},{title:"fa-solid fa-clipboard-user",searchTerms:["attendance","record","roster","staff"]},{title:"fa-solid fa-clock",searchTerms:["00","4","4:00","clock","date","four","four o’clock","hour","late","minute","o'clock","o’clock","schedule","ticking","time","timer","timestamp","watch"]},{title:"fa-regular fa-clock",searchTerms:["00","4","4:00","clock","date","four","four o’clock","hour","late","minute","o'clock","o’clock","schedule","ticking","time","timer","timestamp","watch"]},{title:"fa-solid fa-clock-rotate-left",searchTerms:["Rewind","clock","reverse","time","time machine","time travel"]},{title:"fa-solid fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"fa-regular fa-clone",searchTerms:["arrange","copy","duplicate","paste"]},{title:"fa-solid fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"fa-regular fa-closed-captioning",searchTerms:["cc","deaf","hearing","subtitle","subtitling","text","video"]},{title:"fa-solid fa-cloud",searchTerms:["atmosphere","cloud","fog","overcast","save","upload","weather"]},{title:"fa-solid fa-cloud-arrow-down",searchTerms:["download","export","save"]},{title:"fa-solid fa-cloud-arrow-up",searchTerms:["import","save","upload"]},{title:"fa-solid fa-cloud-bolt",searchTerms:["bolt","cloud","cloud with lightning","lightning","precipitation","rain","storm","weather"]},{title:"fa-solid fa-cloud-meatball",searchTerms:["FLDSMDFR","food","spaghetti","storm"]},{title:"fa-solid fa-cloud-moon",searchTerms:["crescent","evening","lunar","night","partly cloudy","sky"]},{title:"fa-solid fa-cloud-moon-rain",searchTerms:["crescent","evening","lunar","night","partly cloudy","precipitation","rain","sky","storm"]},{title:"fa-solid fa-cloud-rain",searchTerms:["Rain","cloud","cloud with rain","precipitation","rain","sky","storm"]},{title:"fa-solid fa-cloud-showers-heavy",searchTerms:["precipitation","rain","sky","storm"]},{title:"fa-solid fa-cloud-showers-water",searchTerms:["cloud","deluge","flood","rain","storm","surge"]},{title:"fa-solid fa-cloud-sun",searchTerms:["clear","cloud","day","daytime","fall","outdoors","overcast","partly cloudy","sun","sun behind cloud"]},{title:"fa-solid fa-cloud-sun-rain",searchTerms:["cloud","day","overcast","precipitation","rain","storm","summer","sun","sun behind rain cloud","sunshower"]},{title:"fa-brands fa-cloudflare",searchTerms:[]},{title:"fa-brands fa-cloudscale",searchTerms:[]},{title:"fa-brands fa-cloudsmith",searchTerms:[]},{title:"fa-brands fa-cloudversify",searchTerms:[]},{title:"fa-solid fa-clover",searchTerms:["4","charm","clover","four","four leaf clover","four-leaf clover","leaf","leprechaun","luck","lucky"]},{title:"fa-brands fa-cmplid",searchTerms:[]},{title:"fa-solid fa-code",searchTerms:["brackets","code","development","html"]},{title:"fa-solid fa-code-branch",searchTerms:["branch","git","github","rebase","svn","vcs","version"]},{title:"fa-solid fa-code-commit",searchTerms:["commit","git","github","hash","rebase","svn","vcs","version"]},{title:"fa-solid fa-code-compare",searchTerms:["compare","git","github","svn","version"]},{title:"fa-solid fa-code-fork",searchTerms:["fork","git","github","svn","version"]},{title:"fa-solid fa-code-merge",searchTerms:["git","github","merge","pr","rebase","svn","vcs","version"]},{title:"fa-solid fa-code-pull-request",searchTerms:["git","github","pr","svn","version"]},{title:"fa-brands fa-codepen",searchTerms:[]},{title:"fa-brands fa-codiepie",searchTerms:[]},{title:"fa-solid fa-coins",searchTerms:["currency","dime","financial","gold","money","penny"]},{title:"fa-solid fa-colon-sign",searchTerms:["Colon Sign","currency"]},{title:"fa-solid fa-comment",searchTerms:["Right Speech Bubble","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-regular fa-comment",searchTerms:["Right Speech Bubble","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-solid fa-comment-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fa-solid fa-comment-dots",searchTerms:["balloon","bubble","chat","comic","commenting","conversation","dialog","feedback","message","more","note","notification","reply","sms","speech","speech balloon","texting"]},{title:"fa-regular fa-comment-dots",searchTerms:["balloon","bubble","chat","comic","commenting","conversation","dialog","feedback","message","more","note","notification","reply","sms","speech","speech balloon","texting"]},{title:"fa-solid fa-comment-medical",searchTerms:["advice","bubble","chat","commenting","conversation","diagnose","feedback","message","note","notification","prescription","sms","speech","texting"]},{title:"fa-solid fa-comment-slash",searchTerms:["bubble","cancel","chat","commenting","conversation","feedback","message","mute","note","notification","quiet","sms","speech","texting"]},{title:"fa-solid fa-comment-sms",searchTerms:["chat","conversation","message","mobile","notification","phone","sms","texting"]},{title:"fa-solid fa-comments",searchTerms:["Two Speech Bubbles","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-regular fa-comments",searchTerms:["Two Speech Bubbles","bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-solid fa-comments-dollar",searchTerms:["bubble","chat","commenting","conversation","feedback","message","money","note","notification","pay","sms","speech","spend","texting","transfer"]},{title:"fa-solid fa-compact-disc",searchTerms:["Optical Disc Icon","album","blu-ray","bluray","cd","computer","disc","disk","dvd","media","movie","music","optical","optical disk","record","video","vinyl"]},{title:"fa-solid fa-compass",searchTerms:["compass","directions","directory","location","magnetic","menu","navigation","orienteering","safari","travel"]},{title:"fa-regular fa-compass",searchTerms:["compass","directions","directory","location","magnetic","menu","navigation","orienteering","safari","travel"]},{title:"fa-solid fa-compass-drafting",searchTerms:["design","map","mechanical drawing","plot","plotting"]},{title:"fa-solid fa-compress",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fa-solid fa-computer",searchTerms:["computer","desktop","display","monitor","tower"]},{title:"fa-solid fa-computer-mouse",searchTerms:["click","computer","computer mouse","cursor","input","peripheral"]},{title:"fa-brands fa-confluence",searchTerms:["atlassian"]},{title:"fa-brands fa-connectdevelop",searchTerms:[]},{title:"fa-brands fa-contao",searchTerms:[]},{title:"fa-solid fa-cookie",searchTerms:["baked good","chips","chocolate","cookie","dessert","eat","snack","sweet","treat"]},{title:"fa-solid fa-cookie-bite",searchTerms:["baked good","bitten","chips","chocolate","eat","snack","sweet","treat"]},{title:"fa-solid fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"fa-regular fa-copy",searchTerms:["clone","duplicate","file","files-o","paper","paste"]},{title:"fa-solid fa-copyright",searchTerms:["brand","c","copyright","mark","register","trademark"]},{title:"fa-regular fa-copyright",searchTerms:["brand","c","copyright","mark","register","trademark"]},{title:"fa-brands fa-cotton-bureau",searchTerms:["clothing","t-shirts","tshirts"]},{title:"fa-solid fa-couch",searchTerms:["chair","cushion","furniture","relax","sofa"]},{title:"fa-solid fa-cow",searchTerms:["agriculture","animal","beef","bovine","co","cow","farm","fauna","livestock","mammal","milk","moo"]},{title:"fa-brands fa-cpanel",searchTerms:[]},{title:"fa-brands fa-creative-commons",searchTerms:[]},{title:"fa-brands fa-creative-commons-by",searchTerms:[]},{title:"fa-brands fa-creative-commons-nc",searchTerms:[]},{title:"fa-brands fa-creative-commons-nc-eu",searchTerms:[]},{title:"fa-brands fa-creative-commons-nc-jp",searchTerms:[]},{title:"fa-brands fa-creative-commons-nd",searchTerms:[]},{title:"fa-brands fa-creative-commons-pd",searchTerms:[]},{title:"fa-brands fa-creative-commons-pd-alt",searchTerms:[]},{title:"fa-brands fa-creative-commons-remix",searchTerms:[]},{title:"fa-brands fa-creative-commons-sa",searchTerms:[]},{title:"fa-brands fa-creative-commons-sampling",searchTerms:[]},{title:"fa-brands fa-creative-commons-sampling-plus",searchTerms:[]},{title:"fa-brands fa-creative-commons-share",searchTerms:[]},{title:"fa-brands fa-creative-commons-zero",searchTerms:[]},{title:"fa-solid fa-credit-card",searchTerms:["buy","card","checkout","credit","credit card","credit-card-alt","debit","money","payment","purchase"]},{title:"fa-regular fa-credit-card",searchTerms:["buy","card","checkout","credit","credit card","credit-card-alt","debit","money","payment","purchase"]},{title:"fa-brands fa-critical-role",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fa-solid fa-crop",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fa-solid fa-crop-simple",searchTerms:["design","frame","mask","resize","shrink"]},{title:"fa-solid fa-cross",searchTerms:["Christian","Heavy Latin Cross","catholicism","christianity","church","cross","jesus","latin cross","religion"]},{title:"fa-solid fa-crosshairs",searchTerms:["aim","bullseye","gpd","picker","position"]},{title:"fa-solid fa-crow",searchTerms:["bird","bullfrog","fauna","halloween","holiday","toad"]},{title:"fa-solid fa-crown",searchTerms:["award","clothing","crown","favorite","king","queen","royal","tiara"]},{title:"fa-solid fa-crutch",searchTerms:["cane","injury","mobility","wheelchair"]},{title:"fa-solid fa-cruzeiro-sign",searchTerms:["Cruzeiro Sign","currency"]},{title:"fa-brands fa-css3",searchTerms:["code"]},{title:"fa-brands fa-css3-alt",searchTerms:[]},{title:"fa-solid fa-cube",searchTerms:["3d","block","dice","package","square","tesseract"]},{title:"fa-solid fa-cubes",searchTerms:["3d","block","dice","package","pyramid","square","stack","tesseract"]},{title:"fa-solid fa-cubes-stacked",searchTerms:["blocks","cubes","sugar"]},{title:"fa-brands fa-cuttlefish",searchTerms:[]},{title:"fa-solid fa-d",searchTerms:["Latin Capital Letter D","Latin Small Letter D","letter"]},{title:"fa-brands fa-d-and-d",searchTerms:[]},{title:"fa-brands fa-d-and-d-beyond",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","gaming","tabletop"]},{title:"fa-brands fa-dailymotion",searchTerms:[]},{title:"fa-brands fa-dashcube",searchTerms:[]},{title:"fa-solid fa-database",searchTerms:["computer","development","directory","memory","storage"]},{title:"fa-brands fa-debian",searchTerms:[]},{title:"fa-brands fa-deezer",searchTerms:[]},{title:"fa-solid fa-delete-left",searchTerms:["Erase to the Left","command","delete","erase","keyboard","undo"]},{title:"fa-brands fa-delicious",searchTerms:[]},{title:"fa-solid fa-democrat",searchTerms:["american","democratic party","donkey","election","left","left-wing","liberal","politics","usa"]},{title:"fa-brands fa-deploydog",searchTerms:[]},{title:"fa-brands fa-deskpro",searchTerms:[]},{title:"fa-solid fa-desktop",searchTerms:["computer","cpu","demo","desktop","desktop computer","device","imac","machine","monitor","pc","screen"]},{title:"fa-brands fa-dev",searchTerms:[]},{title:"fa-brands fa-deviantart",searchTerms:[]},{title:"fa-solid fa-dharmachakra",searchTerms:["Buddhist","buddhism","buddhist","dharma","religion","wheel","wheel of dharma"]},{title:"fa-brands fa-dhl",searchTerms:["Dalsey","Hillblom and Lynn","german","package","shipping"]},{title:"fa-solid fa-diagram-next",searchTerms:["cells","chart","gantt","row","subtask","successor","table"]},{title:"fa-solid fa-diagram-predecessor",searchTerms:["cells","chart","gantt","predecessor","previous","row","subtask","table"]},{title:"fa-solid fa-diagram-project",searchTerms:["chart","graph","network","pert"]},{title:"fa-solid fa-diagram-successor",searchTerms:["cells","chart","gantt","next","row","subtask","successor","table"]},{title:"fa-solid fa-diamond",searchTerms:["card","cards","diamond suit","game","gem","gemstone","poker","suit"]},{title:"fa-solid fa-diamond-turn-right",searchTerms:["map","navigation","sign","turn"]},{title:"fa-brands fa-diaspora",searchTerms:[]},{title:"fa-solid fa-dice",searchTerms:["chance","dice","die","gambling","game","game die","roll"]},{title:"fa-solid fa-dice-d20",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fa-solid fa-dice-d6",searchTerms:["Dungeons & Dragons","chance","d","dnd","fantasy","gambling","game","roll"]},{title:"fa-solid fa-dice-five",searchTerms:["Die Face-5","chance","gambling","game","roll"]},{title:"fa-solid fa-dice-four",searchTerms:["Die Face-4","chance","gambling","game","roll"]},{title:"fa-solid fa-dice-one",searchTerms:["Die Face-1","chance","gambling","game","roll"]},{title:"fa-solid fa-dice-six",searchTerms:["Die Face-6","chance","gambling","game","roll"]},{title:"fa-solid fa-dice-three",searchTerms:["Die Face-3","chance","gambling","game","roll"]},{title:"fa-solid fa-dice-two",searchTerms:["Die Face-2","chance","gambling","game","roll"]},{title:"fa-brands fa-digg",searchTerms:[]},{title:"fa-brands fa-digital-ocean",searchTerms:[]},{title:"fa-brands fa-discord",searchTerms:[]},{title:"fa-brands fa-discourse",searchTerms:[]},{title:"fa-solid fa-disease",searchTerms:["bacteria","cancer","coronavirus","covid-19","flu","illness","infection","pandemic","sickness","virus"]},{title:"fa-solid fa-display",searchTerms:["Screen","computer","desktop","imac"]},{title:"fa-solid fa-divide",searchTerms:["Division Sign","arithmetic","calculus","divide","division","math","sign","÷"]},{title:"fa-solid fa-dna",searchTerms:["biologist","dna","double helix","evolution","gene","genetic","genetics","helix","life","molecule","protein"]},{title:"fa-brands fa-dochub",searchTerms:[]},{title:"fa-brands fa-docker",searchTerms:[]},{title:"fa-solid fa-dog",searchTerms:["animal","canine","dog","fauna","mammal","pet","pooch","puppy","woof"]},{title:"fa-solid fa-dollar-sign",searchTerms:["Dollar Sign","currency","dollar","heavy dollar sign","money"]},{title:"fa-solid fa-dolly",searchTerms:["carry","shipping","transport"]},{title:"fa-solid fa-dong-sign",searchTerms:["Dong Sign","currency"]},{title:"fa-solid fa-door-closed",searchTerms:["doo","door","enter","exit","locked"]},{title:"fa-solid fa-door-open",searchTerms:["enter","exit","welcome"]},{title:"fa-solid fa-dove",searchTerms:["bird","dove","fauna","fly","flying","peace","war"]},{title:"fa-solid fa-down-left-and-up-right-to-center",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fa-solid fa-down-long",searchTerms:["download","long-arrow-down"]},{title:"fa-solid fa-download",searchTerms:["export","hard drive","save","transfer"]},{title:"fa-brands fa-draft2digital",searchTerms:[]},{title:"fa-solid fa-dragon",searchTerms:["Dungeons & Dragons","d","dnd","dragon","fairy tale","fantasy","fire","lizard","serpent"]},{title:"fa-solid fa-draw-polygon",searchTerms:["anchors","lines","object","render","shape"]},{title:"fa-brands fa-dribbble",searchTerms:[]},{title:"fa-brands fa-dropbox",searchTerms:[]},{title:"fa-solid fa-droplet",searchTerms:["cold","color","comic","drop","droplet","raindrop","sweat","waterdrop"]},{title:"fa-solid fa-droplet-slash",searchTerms:["color","drop","droplet","raindrop","waterdrop"]},{title:"fa-solid fa-drum",searchTerms:["drum","drumsticks","instrument","music","percussion","snare","sound"]},{title:"fa-solid fa-drum-steelpan",searchTerms:["calypso","instrument","music","percussion","reggae","snare","sound","steel","tropical"]},{title:"fa-solid fa-drumstick-bite",searchTerms:["bone","chicken","leg","meat","poultry","turkey"]},{title:"fa-brands fa-drupal",searchTerms:[]},{title:"fa-solid fa-dumbbell",searchTerms:["exercise","gym","strength","weight","weight-lifting"]},{title:"fa-solid fa-dumpster",searchTerms:["alley","bin","commercial","trash","waste"]},{title:"fa-solid fa-dumpster-fire",searchTerms:["alley","bin","commercial","danger","dangerous","euphemism","flame","heat","hot","trash","waste"]},{title:"fa-solid fa-dungeon",searchTerms:["Dungeons & Dragons","building","d","dnd","door","entrance","fantasy","gate"]},{title:"fa-brands fa-dyalog",searchTerms:[]},{title:"fa-solid fa-e",searchTerms:["Latin Capital Letter E","Latin Small Letter E","letter"]},{title:"fa-solid fa-ear-deaf",searchTerms:["ear","hearing","sign language"]},{title:"fa-solid fa-ear-listen",searchTerms:["amplify","audio","deaf","ear","headset","hearing","sound"]},{title:"fa-brands fa-earlybirds",searchTerms:[]},{title:"fa-solid fa-earth-africa",searchTerms:["africa","all","country","earth","europe","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fa-solid fa-earth-americas",searchTerms:["all","america","country","earth","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fa-solid fa-earth-asia",searchTerms:["all","asia","australia","country","earth","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fa-solid fa-earth-europe",searchTerms:["all","country","earth","europe","global","globe","gps","language","localize","location","map","online","place","planet","translate","travel","world"]},{title:"fa-solid fa-earth-oceania",searchTerms:["all","australia","country","earth","global","globe","gps","language","localize","location","map","melanesia","micronesia","new zealand","online","place","planet","polynesia","translate","travel","world"]},{title:"fa-brands fa-ebay",searchTerms:[]},{title:"fa-brands fa-edge",searchTerms:["browser","ie"]},{title:"fa-brands fa-edge-legacy",searchTerms:[]},{title:"fa-solid fa-egg",searchTerms:["breakfast","chicken","easter","egg","food","shell","yolk"]},{title:"fa-solid fa-eject",searchTerms:["abort","cancel","cd","discharge","eject","eject button"]},{title:"fa-brands fa-elementor",searchTerms:[]},{title:"fa-solid fa-elevator",searchTerms:["accessibility","elevator","hoist","lift","users-people"]},{title:"fa-solid fa-ellipsis",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","pacman","reorder","settings","ul"]},{title:"fa-solid fa-ellipsis-vertical",searchTerms:["dots","drag","kebab","list","menu","nav","navigation","ol","reorder","settings","ul"]},{title:"fa-brands fa-ello",searchTerms:[]},{title:"fa-brands fa-ember",searchTerms:[]},{title:"fa-brands fa-empire",searchTerms:[]},{title:"fa-solid fa-envelope",searchTerms:["Back of Envelope","e-mail","email","envelope","letter","mail","message","notification","support"]},{title:"fa-regular fa-envelope",searchTerms:["Back of Envelope","e-mail","email","envelope","letter","mail","message","notification","support"]},{title:"fa-solid fa-envelope-circle-check",searchTerms:["check","email","envelope","mail","not affected","ok","okay","read","sent"]},{title:"fa-solid fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fa-regular fa-envelope-open",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fa-solid fa-envelope-open-text",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fa-solid fa-envelopes-bulk",searchTerms:["archive","envelope","letter","post office","postal","postcard","send","stamp","usps"]},{title:"fa-brands fa-envira",searchTerms:["leaf"]},{title:"fa-solid fa-equals",searchTerms:["Equals Sign","arithmetic","even","match","math"]},{title:"fa-solid fa-eraser",searchTerms:["art","delete","remove","rubber"]},{title:"fa-brands fa-erlang",searchTerms:[]},{title:"fa-brands fa-ethereum",searchTerms:[]},{title:"fa-solid fa-ethernet",searchTerms:["cable","cat 5","cat 6","connection","hardware","internet","network","wired"]},{title:"fa-brands fa-etsy",searchTerms:[]},{title:"fa-solid fa-euro-sign",searchTerms:["Euro Sign","currency"]},{title:"fa-brands fa-evernote",searchTerms:[]},{title:"fa-solid fa-exclamation",searchTerms:["!","Exclamation Mark","alert","danger","error","exclamation","important","mark","notice","notification","notify","outlined","problem","punctuation","red exclamation mark","warning","white exclamation mark"]},{title:"fa-solid fa-expand",searchTerms:["bigger","crop","enlarge","focus","fullscreen","resize","viewfinder"]},{title:"fa-brands fa-expeditedssl",searchTerms:[]},{title:"fa-solid fa-explosion",searchTerms:["blast","blowup","boom","crash","detonation","explosion"]},{title:"fa-solid fa-eye",searchTerms:["body","eye","look","optic","see","seen","show","sight","views","visible"]},{title:"fa-regular fa-eye",searchTerms:["body","eye","look","optic","see","seen","show","sight","views","visible"]},{title:"fa-solid fa-eye-dropper",searchTerms:["beaker","clone","color","copy","eyedropper","pipette"]},{title:"fa-solid fa-eye-low-vision",searchTerms:["blind","eye","sight"]},{title:"fa-solid fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"fa-regular fa-eye-slash",searchTerms:["blind","hide","show","toggle","unseen","views","visible","visiblity"]},{title:"fa-solid fa-f",searchTerms:["Latin Capital Letter F","Latin Small Letter F","letter"]},{title:"fa-solid fa-face-angry",searchTerms:["angry","angry face","disapprove","emoticon","face","mad","upset"]},{title:"fa-regular fa-face-angry",searchTerms:["angry","angry face","disapprove","emoticon","face","mad","upset"]},{title:"fa-solid fa-face-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"fa-regular fa-face-dizzy",searchTerms:["dazed","dead","disapprove","emoticon","face"]},{title:"fa-solid fa-face-flushed",searchTerms:["dazed","embarrassed","emoticon","face","flushed","flushed face"]},{title:"fa-regular fa-face-flushed",searchTerms:["dazed","embarrassed","emoticon","face","flushed","flushed face"]},{title:"fa-solid fa-face-frown",searchTerms:["disapprove","emoticon","face","frown","frowning face","rating","sad"]},{title:"fa-regular fa-face-frown",searchTerms:["disapprove","emoticon","face","frown","frowning face","rating","sad"]},{title:"fa-solid fa-face-frown-open",searchTerms:["disapprove","emoticon","face","frown","frowning face with open mouth","mouth","open","rating","sad"]},{title:"fa-regular fa-face-frown-open",searchTerms:["disapprove","emoticon","face","frown","frowning face with open mouth","mouth","open","rating","sad"]},{title:"fa-solid fa-face-grimace",searchTerms:["cringe","emoticon","face","grimace","grimacing face","teeth"]},{title:"fa-regular fa-face-grimace",searchTerms:["cringe","emoticon","face","grimace","grimacing face","teeth"]},{title:"fa-solid fa-face-grin",searchTerms:["emoticon","face","grin","grinning face","laugh","smile"]},{title:"fa-regular fa-face-grin",searchTerms:["emoticon","face","grin","grinning face","laugh","smile"]},{title:"fa-solid fa-face-grin-beam",searchTerms:["emoticon","eye","face","grinning face with smiling eyes","laugh","mouth","open","smile"]},{title:"fa-regular fa-face-grin-beam",searchTerms:["emoticon","eye","face","grinning face with smiling eyes","laugh","mouth","open","smile"]},{title:"fa-solid fa-face-grin-beam-sweat",searchTerms:["cold","embarass","emoticon","face","grinning face with sweat","open","smile","sweat"]},{title:"fa-regular fa-face-grin-beam-sweat",searchTerms:["cold","embarass","emoticon","face","grinning face with sweat","open","smile","sweat"]},{title:"fa-solid fa-face-grin-hearts",searchTerms:["emoticon","eye","face","love","smile","smiling face with heart-eyes"]},{title:"fa-regular fa-face-grin-hearts",searchTerms:["emoticon","eye","face","love","smile","smiling face with heart-eyes"]},{title:"fa-solid fa-face-grin-squint",searchTerms:["emoticon","face","grinning squinting face","laugh","mouth","satisfied","smile"]},{title:"fa-regular fa-face-grin-squint",searchTerms:["emoticon","face","grinning squinting face","laugh","mouth","satisfied","smile"]},{title:"fa-solid fa-face-grin-squint-tears",searchTerms:["emoticon","face","floor","happy","laugh","rolling","rolling on the floor laughing","smile"]},{title:"fa-regular fa-face-grin-squint-tears",searchTerms:["emoticon","face","floor","happy","laugh","rolling","rolling on the floor laughing","smile"]},{title:"fa-solid fa-face-grin-stars",searchTerms:["emoticon","eyes","face","grinning","star","star-struck","starry-eyed"]},{title:"fa-regular fa-face-grin-stars",searchTerms:["emoticon","eyes","face","grinning","star","star-struck","starry-eyed"]},{title:"fa-solid fa-face-grin-tears",searchTerms:["LOL","emoticon","face","face with tears of joy","joy","laugh","tear"]},{title:"fa-regular fa-face-grin-tears",searchTerms:["LOL","emoticon","face","face with tears of joy","joy","laugh","tear"]},{title:"fa-solid fa-face-grin-tongue",searchTerms:["LOL","emoticon","face","face with tongue","tongue"]},{title:"fa-regular fa-face-grin-tongue",searchTerms:["LOL","emoticon","face","face with tongue","tongue"]},{title:"fa-solid fa-face-grin-tongue-squint",searchTerms:["LOL","emoticon","eye","face","horrible","squinting face with tongue","taste","tongue"]},{title:"fa-regular fa-face-grin-tongue-squint",searchTerms:["LOL","emoticon","eye","face","horrible","squinting face with tongue","taste","tongue"]},{title:"fa-solid fa-face-grin-tongue-wink",searchTerms:["LOL","emoticon","eye","face","joke","tongue","wink","winking face with tongue"]},{title:"fa-regular fa-face-grin-tongue-wink",searchTerms:["LOL","emoticon","eye","face","joke","tongue","wink","winking face with tongue"]},{title:"fa-solid fa-face-grin-wide",searchTerms:["emoticon","face","grinning face with big eyes","laugh","mouth","open","smile"]},{title:"fa-regular fa-face-grin-wide",searchTerms:["emoticon","face","grinning face with big eyes","laugh","mouth","open","smile"]},{title:"fa-solid fa-face-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"fa-regular fa-face-grin-wink",searchTerms:["emoticon","face","flirt","laugh","smile"]},{title:"fa-solid fa-face-kiss",searchTerms:["beso","emoticon","face","kiss","kissing face","love","smooch"]},{title:"fa-regular fa-face-kiss",searchTerms:["beso","emoticon","face","kiss","kissing face","love","smooch"]},{title:"fa-solid fa-face-kiss-beam",searchTerms:["beso","emoticon","eye","face","kiss","kissing face with smiling eyes","love","smile","smooch"]},{title:"fa-regular fa-face-kiss-beam",searchTerms:["beso","emoticon","eye","face","kiss","kissing face with smiling eyes","love","smile","smooch"]},{title:"fa-solid fa-face-kiss-wink-heart",searchTerms:["beso","emoticon","face","face blowing a kiss","kiss","love","smooch"]},{title:"fa-regular fa-face-kiss-wink-heart",searchTerms:["beso","emoticon","face","face blowing a kiss","kiss","love","smooch"]},{title:"fa-solid fa-face-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"fa-regular fa-face-laugh",searchTerms:["LOL","emoticon","face","laugh","smile"]},{title:"fa-solid fa-face-laugh-beam",searchTerms:["LOL","beaming face with smiling eyes","emoticon","eye","face","grin","happy","smile"]},{title:"fa-regular fa-face-laugh-beam",searchTerms:["LOL","beaming face with smiling eyes","emoticon","eye","face","grin","happy","smile"]},{title:"fa-solid fa-face-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fa-regular fa-face-laugh-squint",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fa-solid fa-face-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fa-regular fa-face-laugh-wink",searchTerms:["LOL","emoticon","face","happy","smile"]},{title:"fa-solid fa-face-meh",searchTerms:["deadpan","emoticon","face","meh","neutral","neutral face","rating"]},{title:"fa-regular fa-face-meh",searchTerms:["deadpan","emoticon","face","meh","neutral","neutral face","rating"]},{title:"fa-solid fa-face-meh-blank",searchTerms:["emoticon","face","face without mouth","mouth","neutral","quiet","rating","silent"]},{title:"fa-regular fa-face-meh-blank",searchTerms:["emoticon","face","face without mouth","mouth","neutral","quiet","rating","silent"]},{title:"fa-solid fa-face-rolling-eyes",searchTerms:["emoticon","eyeroll","eyes","face","face with rolling eyes","neutral","rating","rolling"]},{title:"fa-regular fa-face-rolling-eyes",searchTerms:["emoticon","eyeroll","eyes","face","face with rolling eyes","neutral","rating","rolling"]},{title:"fa-solid fa-face-sad-cry",searchTerms:["cry","emoticon","face","loudly crying face","sad","sob","tear","tears"]},{title:"fa-regular fa-face-sad-cry",searchTerms:["cry","emoticon","face","loudly crying face","sad","sob","tear","tears"]},{title:"fa-solid fa-face-sad-tear",searchTerms:["cry","crying face","emoticon","face","sad","tear","tears"]},{title:"fa-regular fa-face-sad-tear",searchTerms:["cry","crying face","emoticon","face","sad","tear","tears"]},{title:"fa-solid fa-face-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied","slightly smiling face","smile"]},{title:"fa-regular fa-face-smile",searchTerms:["approve","emoticon","face","happy","rating","satisfied","slightly smiling face","smile"]},{title:"fa-solid fa-face-smile-beam",searchTerms:["blush","emoticon","eye","face","happy","positive","smile","smiling face with smiling eyes"]},{title:"fa-regular fa-face-smile-beam",searchTerms:["blush","emoticon","eye","face","happy","positive","smile","smiling face with smiling eyes"]},{title:"fa-solid fa-face-smile-wink",searchTerms:["emoticon","face","happy","hint","joke","wink","winking face"]},{title:"fa-regular fa-face-smile-wink",searchTerms:["emoticon","face","happy","hint","joke","wink","winking face"]},{title:"fa-solid fa-face-surprise",searchTerms:["emoticon","face","face with open mouth","mouth","open","shocked","sympathy"]},{title:"fa-regular fa-face-surprise",searchTerms:["emoticon","face","face with open mouth","mouth","open","shocked","sympathy"]},{title:"fa-solid fa-face-tired",searchTerms:["angry","emoticon","face","grumpy","tired","tired face","upset"]},{title:"fa-regular fa-face-tired",searchTerms:["angry","emoticon","face","grumpy","tired","tired face","upset"]},{title:"fa-brands fa-facebook",searchTerms:["facebook-official","social network"]},{title:"fa-brands fa-facebook-f",searchTerms:["facebook"]},{title:"fa-brands fa-facebook-messenger",searchTerms:[]},{title:"fa-solid fa-fan",searchTerms:["ac","air conditioning","blade","blower","cool","hot"]},{title:"fa-brands fa-fantasy-flight-games",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fa-solid fa-faucet",searchTerms:["covid-19","drinking","drip","house","hygiene","kitchen","potable","potable water","sanitation","sink","water"]},{title:"fa-solid fa-faucet-drip",searchTerms:["drinking","drip","house","hygiene","kitchen","potable","potable water","sanitation","sink","water"]},{title:"fa-solid fa-fax",searchTerms:["Fax Icon","business","communicate","copy","facsimile","fax","fax machine","send"]},{title:"fa-solid fa-feather",searchTerms:["bird","feather","flight","light","plucked","plumage","quill","write"]},{title:"fa-solid fa-feather-pointed",searchTerms:["bird","light","plucked","quill","write"]},{title:"fa-brands fa-fedex",searchTerms:["Federal Express","package","shipping"]},{title:"fa-brands fa-fedora",searchTerms:["linux","operating system","os"]},{title:"fa-solid fa-ferry",searchTerms:["barge","boat","carry","ferryboat","ship"]},{title:"fa-brands fa-figma",searchTerms:["app","design","interface"]},{title:"fa-solid fa-file",searchTerms:["Empty Document","document","new","page","page facing up","pdf","resume"]},{title:"fa-regular fa-file",searchTerms:["Empty Document","document","new","page","page facing up","pdf","resume"]},{title:"fa-solid fa-file-arrow-down",searchTerms:["document","export","save"]},{title:"fa-solid fa-file-arrow-up",searchTerms:["document","import","page","save"]},{title:"fa-solid fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"fa-regular fa-file-audio",searchTerms:["document","mp3","music","page","play","sound"]},{title:"fa-solid fa-file-circle-check",searchTerms:["document","file","not affected","ok","okay","paper"]},{title:"fa-solid fa-file-circle-exclamation",searchTerms:["document","file","paper"]},{title:"fa-solid fa-file-circle-minus",searchTerms:["document","file","paper"]},{title:"fa-solid fa-file-circle-plus",searchTerms:["add","document","file","new","page","paper","pdf"]},{title:"fa-solid fa-file-circle-question",searchTerms:["document","file","paper"]},{title:"fa-solid fa-file-circle-xmark",searchTerms:["document","file","paper"]},{title:"fa-solid fa-file-code",searchTerms:["css","development","document","html"]},{title:"fa-regular fa-file-code",searchTerms:["css","development","document","html"]},{title:"fa-solid fa-file-contract",searchTerms:["agreement","binding","document","legal","signature"]},{title:"fa-solid fa-file-csv",searchTerms:["document","excel","numbers","spreadsheets","table"]},{title:"fa-solid fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"fa-regular fa-file-excel",searchTerms:["csv","document","numbers","spreadsheets","table"]},{title:"fa-solid fa-file-export",searchTerms:["download","save"]},{title:"fa-solid fa-file-image",searchTerms:["Document with Picture","document","image","jpg","photo","png"]},{title:"fa-regular fa-file-image",searchTerms:["Document with Picture","document","image","jpg","photo","png"]},{title:"fa-solid fa-file-import",searchTerms:["copy","document","send","upload"]},{title:"fa-solid fa-file-invoice",searchTerms:["account","bill","charge","document","payment","receipt"]},{title:"fa-solid fa-file-invoice-dollar",searchTerms:["$","account","bill","charge","document","dollar-sign","money","payment","receipt","usd"]},{title:"fa-solid fa-file-lines",searchTerms:["Document","Document with Text","document","file-text","invoice","new","page","pdf"]},{title:"fa-regular fa-file-lines",searchTerms:["Document","Document with Text","document","file-text","invoice","new","page","pdf"]},{title:"fa-solid fa-file-medical",searchTerms:["document","health","history","prescription","record"]},{title:"fa-solid fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"fa-regular fa-file-pdf",searchTerms:["acrobat","document","preview","save"]},{title:"fa-solid fa-file-pen",searchTerms:["edit","memo","pen","pencil","update","write"]},{title:"fa-solid fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"fa-regular fa-file-powerpoint",searchTerms:["display","document","keynote","presentation"]},{title:"fa-solid fa-file-prescription",searchTerms:["document","drugs","medical","medicine","rx"]},{title:"fa-solid fa-file-shield",searchTerms:["antivirus","data","document","protect","safe","safety","secure"]},{title:"fa-solid fa-file-signature",searchTerms:["John Hancock","contract","document","name"]},{title:"fa-solid fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"fa-regular fa-file-video",searchTerms:["document","m4v","movie","mp4","play"]},{title:"fa-solid fa-file-waveform",searchTerms:["document","health","history","prescription","record"]},{title:"fa-solid fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"fa-regular fa-file-word",searchTerms:["document","edit","page","text","writing"]},{title:"fa-solid fa-file-zipper",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"fa-regular fa-file-zipper",searchTerms:[".zip","bundle","compress","compression","download","zip"]},{title:"fa-solid fa-fill",searchTerms:["bucket","color","paint","paint bucket"]},{title:"fa-solid fa-fill-drip",searchTerms:["bucket","color","drop","paint","paint bucket","spill"]},{title:"fa-solid fa-film",searchTerms:["cinema","film","film frames","frames","movie","strip","video"]},{title:"fa-solid fa-filter",searchTerms:["funnel","options","separate","sort"]},{title:"fa-solid fa-filter-circle-dollar",searchTerms:["filter","money","options","separate","sort"]},{title:"fa-solid fa-filter-circle-xmark",searchTerms:["cancel","funnel","options","remove","separate","sort"]},{title:"fa-solid fa-fingerprint",searchTerms:["human","id","identification","lock","smudge","touch","unique","unlock"]},{title:"fa-solid fa-fire",searchTerms:["burn","caliente","fire","flame","heat","hot","popular","tool"]},{title:"fa-solid fa-fire-burner",searchTerms:["cook","fire","flame","kitchen","stove"]},{title:"fa-solid fa-fire-extinguisher",searchTerms:["burn","caliente","extinguish","fire","fire extinguisher","fire fighter","flame","heat","hot","quench","rescue"]},{title:"fa-solid fa-fire-flame-curved",searchTerms:["burn","caliente","flame","heat","hot","popular"]},{title:"fa-solid fa-fire-flame-simple",searchTerms:["caliente","energy","fire","flame","gas","heat","hot"]},{title:"fa-brands fa-firefox",searchTerms:["browser"]},{title:"fa-brands fa-firefox-browser",searchTerms:["browser"]},{title:"fa-brands fa-first-order",searchTerms:[]},{title:"fa-brands fa-first-order-alt",searchTerms:[]},{title:"fa-brands fa-firstdraft",searchTerms:[]},{title:"fa-solid fa-fish",searchTerms:["Pisces","fauna","fish","gold","seafood","swimming","zodiac"]},{title:"fa-solid fa-fish-fins",searchTerms:["fish","fishery","pisces","seafood"]},{title:"fa-solid fa-flag",searchTerms:["black flag","country","notice","notification","notify","pole","report","symbol","waving"]},{title:"fa-regular fa-flag",searchTerms:["black flag","country","notice","notification","notify","pole","report","symbol","waving"]},{title:"fa-solid fa-flag-checkered",searchTerms:["checkered","chequered","chequered flag","finish","notice","notification","notify","pole","racing","report","start","symbol","win"]},{title:"fa-solid fa-flag-usa",searchTerms:["betsy ross","country","fla","flag: United States","old glory","stars","stripes","symbol"]},{title:"fa-solid fa-flask",searchTerms:["beaker","chemicals","experiment","experimental","labs","liquid","potion","science","vial"]},{title:"fa-solid fa-flask-vial",searchTerms:[" beaker"," chemicals"," experiment"," experimental"," labs"," liquid"," science"," vial","ampule","chemistry","lab","laboratory","potion","test","test tube"]},{title:"fa-brands fa-flickr",searchTerms:[]},{title:"fa-brands fa-flipboard",searchTerms:[]},{title:"fa-solid fa-floppy-disk",searchTerms:["Black Hard Shell Floppy Disk","computer","disk","download","floppy","floppy disk","floppy-o"]},{title:"fa-regular fa-floppy-disk",searchTerms:["Black Hard Shell Floppy Disk","computer","disk","download","floppy","floppy disk","floppy-o"]},{title:"fa-solid fa-florin-sign",searchTerms:["currency"]},{title:"fa-brands fa-fly",searchTerms:[]},{title:"fa-solid fa-folder",searchTerms:["Black Folder","archive","directory","document","file","file folder","folder"]},{title:"fa-regular fa-folder",searchTerms:["Black Folder","archive","directory","document","file","file folder","folder"]},{title:"fa-solid fa-folder-closed",searchTerms:["file"]},{title:"fa-regular fa-folder-closed",searchTerms:["file"]},{title:"fa-solid fa-folder-minus",searchTerms:["archive","delete","directory","document","file","negative","remove"]},{title:"fa-solid fa-folder-open",searchTerms:["Open Folder","archive","directory","document","empty","file","folder","new","open","open file folder"]},{title:"fa-regular fa-folder-open",searchTerms:["Open Folder","archive","directory","document","empty","file","folder","new","open","open file folder"]},{title:"fa-solid fa-folder-plus",searchTerms:["add","archive","create","directory","document","file","new","positive"]},{title:"fa-solid fa-folder-tree",searchTerms:["archive","directory","document","file","search","structure"]},{title:"fa-solid fa-font",searchTerms:["alphabet","glyph","text","type","typeface"]},{title:"fa-solid fa-font-awesome",searchTerms:["awesome","flag","font","icons","typeface"]},{title:"fa-regular fa-font-awesome",searchTerms:["awesome","flag","font","icons","typeface"]},{title:"fa-brands fa-font-awesome",searchTerms:["awesome","flag","font","icons","typeface"]},{title:"fa-brands fa-fonticons",searchTerms:[]},{title:"fa-brands fa-fonticons-fi",searchTerms:[]},{title:"fa-solid fa-football",searchTerms:["american","american football","ball","fall","football","nfl","pigskin","seasonal"]},{title:"fa-brands fa-fort-awesome",searchTerms:["castle"]},{title:"fa-brands fa-fort-awesome-alt",searchTerms:["castle"]},{title:"fa-brands fa-forumbee",searchTerms:[]},{title:"fa-solid fa-forward",searchTerms:["arrow","double","fast","fast-forward button","forward","next","skip"]},{title:"fa-solid fa-forward-fast",searchTerms:["arrow","end","last","next","next scene","next track","next track button","triangle"]},{title:"fa-solid fa-forward-step",searchTerms:["end","last","next"]},{title:"fa-brands fa-foursquare",searchTerms:[]},{title:"fa-solid fa-franc-sign",searchTerms:["French Franc Sign","currency"]},{title:"fa-brands fa-free-code-camp",searchTerms:[]},{title:"fa-brands fa-freebsd",searchTerms:[]},{title:"fa-solid fa-frog",searchTerms:["amphibian","bullfrog","fauna","hop","kermit","kiss","prince","ribbit","toad","wart"]},{title:"fa-brands fa-fulcrum",searchTerms:[]},{title:"fa-solid fa-futbol",searchTerms:["ball","football","mls","soccer","soccer ball"]},{title:"fa-regular fa-futbol",searchTerms:["ball","football","mls","soccer","soccer ball"]},{title:"fa-solid fa-g",searchTerms:["Latin Capital Letter G","Latin Small Letter G","letter"]},{title:"fa-brands fa-galactic-republic",searchTerms:["politics","star wars"]},{title:"fa-brands fa-galactic-senate",searchTerms:["star wars"]},{title:"fa-solid fa-gamepad",searchTerms:["arcade","controller","d-pad","joystick","video","video game"]},{title:"fa-solid fa-gas-pump",searchTerms:["car","diesel","fuel","fuel pump","fuelpump","gas","gasoline","petrol","pump","station"]},{title:"fa-solid fa-gauge",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fa-solid fa-gauge-high",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fa-solid fa-gauge-simple",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fa-solid fa-gauge-simple-high",searchTerms:["dashboard","fast","odometer","speed","speedometer"]},{title:"fa-solid fa-gavel",searchTerms:["hammer","judge","law","lawyer","opinion"]},{title:"fa-solid fa-gear",searchTerms:["cog","cogwheel","gear","mechanical","settings","sprocket","tool","wheel"]},{title:"fa-solid fa-gears",searchTerms:["gears","mechanical","settings","sprocket","wheel"]},{title:"fa-solid fa-gem",searchTerms:["diamond","gem","gem stone","jewel","jewelry","sapphire","stone","treasure"]},{title:"fa-regular fa-gem",searchTerms:["diamond","gem","gem stone","jewel","jewelry","sapphire","stone","treasure"]},{title:"fa-solid fa-genderless",searchTerms:["androgynous","asexual","gender","sexless"]},{title:"fa-brands fa-get-pocket",searchTerms:[]},{title:"fa-brands fa-gg",searchTerms:[]},{title:"fa-brands fa-gg-circle",searchTerms:[]},{title:"fa-solid fa-ghost",searchTerms:["apparition","blinky","clyde","creature","face","fairy tale","fantasy","floating","ghost","halloween","holiday","inky","monster","pacman","pinky","spirit"]},{title:"fa-solid fa-gift",searchTerms:["box","celebration","christmas","generosity","gift","giving","holiday","party","present","wrapped","wrapped gift","xmas"]},{title:"fa-solid fa-gifts",searchTerms:["christmas","generosity","giving","holiday","party","present","wrapped","xmas"]},{title:"fa-brands fa-git",searchTerms:[]},{title:"fa-brands fa-git-alt",searchTerms:[]},{title:"fa-brands fa-github",searchTerms:["octocat"]},{title:"fa-brands fa-github-alt",searchTerms:["octocat"]},{title:"fa-brands fa-gitkraken",searchTerms:[]},{title:"fa-brands fa-gitlab",searchTerms:["Axosoft"]},{title:"fa-brands fa-gitter",searchTerms:[]},{title:"fa-solid fa-glass-water",searchTerms:["potable","water"]},{title:"fa-solid fa-glass-water-droplet",searchTerms:["potable","water"]},{title:"fa-solid fa-glasses",searchTerms:["hipster","nerd","reading","sight","spectacles","vision"]},{title:"fa-brands fa-glide",searchTerms:[]},{title:"fa-brands fa-glide-g",searchTerms:[]},{title:"fa-solid fa-globe",searchTerms:["all","coordinates","country","earth","global","globe","globe with meridians","gps","internet","language","localize","location","map","meridians","network","online","place","planet","translate","travel","world"]},{title:"fa-brands fa-gofore",searchTerms:[]},{title:"fa-brands fa-golang",searchTerms:[]},{title:"fa-solid fa-golf-ball-tee",searchTerms:["caddy","eagle","putt","tee"]},{title:"fa-brands fa-goodreads",searchTerms:[]},{title:"fa-brands fa-goodreads-g",searchTerms:[]},{title:"fa-brands fa-google",searchTerms:[]},{title:"fa-brands fa-google-drive",searchTerms:[]},{title:"fa-brands fa-google-pay",searchTerms:[]},{title:"fa-brands fa-google-play",searchTerms:[]},{title:"fa-brands fa-google-plus",searchTerms:["google-plus-circle","google-plus-official"]},{title:"fa-brands fa-google-plus-g",searchTerms:["google-plus","social network"]},{title:"fa-brands fa-google-wallet",searchTerms:[]},{title:"fa-solid fa-gopuram",searchTerms:["building","entrance","hinduism","temple","tower"]},{title:"fa-solid fa-graduation-cap",searchTerms:["cap","celebration","ceremony","clothing","college","graduate","graduation","graduation cap","hat","learning","school","student"]},{title:"fa-brands fa-gratipay",searchTerms:["favorite","heart","like","love"]},{title:"fa-brands fa-grav",searchTerms:[]},{title:"fa-solid fa-greater-than",searchTerms:["Greater-Than Sign","arithmetic","compare","math"]},{title:"fa-solid fa-greater-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fa-solid fa-grip",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fa-solid fa-grip-lines",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fa-solid fa-grip-lines-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fa-solid fa-grip-vertical",searchTerms:["affordance","drag","drop","grab","handle"]},{title:"fa-brands fa-gripfire",searchTerms:[]},{title:"fa-solid fa-group-arrows-rotate",searchTerms:["community","engagement","spin","sync"]},{title:"fa-brands fa-grunt",searchTerms:[]},{title:"fa-solid fa-guarani-sign",searchTerms:["Guarani Sign","currency"]},{title:"fa-brands fa-guilded",searchTerms:[]},{title:"fa-solid fa-guitar",searchTerms:["acoustic","instrument","music","rock","rock and roll","song","strings"]},{title:"fa-brands fa-gulp",searchTerms:[]},{title:"fa-solid fa-gun",searchTerms:["firearm","pistol","weapon"]},{title:"fa-solid fa-h",searchTerms:["Latin Capital Letter H","Latin Small Letter H","letter"]},{title:"fa-brands fa-hacker-news",searchTerms:[]},{title:"fa-brands fa-hackerrank",searchTerms:[]},{title:"fa-solid fa-hammer",searchTerms:["admin","fix","hammer","recovery","repair","settings","tool"]},{title:"fa-solid fa-hamsa",searchTerms:["amulet","christianity","islam","jewish","judaism","muslim","protection"]},{title:"fa-solid fa-hand",searchTerms:["Raised Hand","backhand","game","halt","palm","raised","raised back of hand","roshambo","stop"]},{title:"fa-regular fa-hand",searchTerms:["Raised Hand","backhand","game","halt","palm","raised","raised back of hand","roshambo","stop"]},{title:"fa-solid fa-hand-back-fist",searchTerms:["fist","game","roshambo"]},{title:"fa-regular fa-hand-back-fist",searchTerms:["fist","game","roshambo"]},{title:"fa-solid fa-hand-dots",searchTerms:["allergy","freckles","hand","hives","palm","pox","skin","spots"]},{title:"fa-solid fa-hand-fist",searchTerms:["Dungeons & Dragons","clenched","d","dnd","fantasy","fist","hand","ki","monk","punch","raised fist","resist","strength","unarmed combat"]},{title:"fa-solid fa-hand-holding",searchTerms:["carry","lift"]},{title:"fa-solid fa-hand-holding-dollar",searchTerms:["$","carry","dollar sign","donation","giving","lift","money","price"]},{title:"fa-solid fa-hand-holding-droplet",searchTerms:["carry","covid-19","drought","grow","lift","sanitation"]},{title:"fa-solid fa-hand-holding-hand",searchTerms:["care","give","help","hold","protect"]},{title:"fa-solid fa-hand-holding-heart",searchTerms:["carry","charity","gift","lift","package"]},{title:"fa-solid fa-hand-holding-medical",searchTerms:["care","covid-19","donate","help"]},{title:"fa-solid fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"fa-regular fa-hand-lizard",searchTerms:["game","roshambo"]},{title:"fa-solid fa-hand-middle-finger",searchTerms:["finger","flip the bird","gesture","hand","hate","middle finger","rude"]},{title:"fa-solid fa-hand-peace",searchTerms:["hand","rest","truce","v","victory","victory hand"]},{title:"fa-regular fa-hand-peace",searchTerms:["hand","rest","truce","v","victory","victory hand"]},{title:"fa-solid fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"fa-regular fa-hand-point-down",searchTerms:["finger","hand-o-down","point"]},{title:"fa-solid fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"fa-regular fa-hand-point-left",searchTerms:["back","finger","hand-o-left","left","point","previous"]},{title:"fa-solid fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"fa-regular fa-hand-point-right",searchTerms:["finger","forward","hand-o-right","next","point","right"]},{title:"fa-solid fa-hand-point-up",searchTerms:["finger","hand","hand-o-up","index","index pointing up","point","up"]},{title:"fa-regular fa-hand-point-up",searchTerms:["finger","hand","hand-o-up","index","index pointing up","point","up"]},{title:"fa-solid fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"fa-regular fa-hand-pointer",searchTerms:["arrow","cursor","select"]},{title:"fa-solid fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"fa-regular fa-hand-scissors",searchTerms:["cut","game","roshambo"]},{title:"fa-solid fa-hand-sparkles",searchTerms:["clean","covid-19","hygiene","magic","palm","soap","wash"]},{title:"fa-solid fa-hand-spock",searchTerms:["finger","hand","live long","palm","prosper","salute","spock","star trek","vulcan","vulcan salute"]},{title:"fa-regular fa-hand-spock",searchTerms:["finger","hand","live long","palm","prosper","salute","spock","star trek","vulcan","vulcan salute"]},{title:"fa-solid fa-handcuffs",searchTerms:["arrest","criminal","handcuffs","jail","lock","police","wrist"]},{title:"fa-solid fa-hands",searchTerms:["Translate","asl","deaf","hands"]},{title:"fa-solid fa-hands-asl-interpreting",searchTerms:["asl","deaf","finger","hand","interpret","speak"]},{title:"fa-solid fa-hands-bound",searchTerms:["abduction","bound","handcuff","wrist"]},{title:"fa-solid fa-hands-bubbles",searchTerms:["covid-19","hygiene","soap","wash"]},{title:"fa-solid fa-hands-clapping",searchTerms:["applause","clap","clapping hands","hand"]},{title:"fa-solid fa-hands-holding",searchTerms:["carry","hold","lift"]},{title:"fa-solid fa-hands-holding-child",searchTerms:["care","give","help","hold","protect"]},{title:"fa-solid fa-hands-holding-circle",searchTerms:["circle","gift","protection"]},{title:"fa-solid fa-hands-praying",searchTerms:["kneel","preach","religion","worship"]},{title:"fa-solid fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"fa-regular fa-handshake",searchTerms:["agreement","greeting","meeting","partnership"]},{title:"fa-solid fa-handshake-angle",searchTerms:["aid","assistance","handshake","partnership","volunteering"]},{title:"fa-solid fa-handshake-simple",searchTerms:["agreement","greeting","hand","handshake","meeting","partnership","shake"]},{title:"fa-solid fa-handshake-simple-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fa-solid fa-handshake-slash",searchTerms:["broken","covid-19","social distance"]},{title:"fa-solid fa-hanukiah",searchTerms:["candelabrum","candle","candlestick","hanukkah","jewish","judaism","light","menorah","religion"]},{title:"fa-solid fa-hard-drive",searchTerms:["Hard Disk","cpu","hard drive","harddrive","machine","save","storage"]},{title:"fa-regular fa-hard-drive",searchTerms:["Hard Disk","cpu","hard drive","harddrive","machine","save","storage"]},{title:"fa-brands fa-hashnode",searchTerms:[]},{title:"fa-solid fa-hashtag",searchTerms:["Number Sign","Twitter","instagram","pound","social media","tag"]},{title:"fa-solid fa-hat-cowboy",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fa-solid fa-hat-cowboy-side",searchTerms:["buckaroo","horse","jackeroo","john b.","old west","pardner","ranch","rancher","rodeo","western","wrangler"]},{title:"fa-solid fa-hat-wizard",searchTerms:["Dungeons & Dragons","accessory","buckle","clothing","d","dnd","fantasy","halloween","head","holiday","mage","magic","pointy","witch"]},{title:"fa-solid fa-head-side-cough",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fa-solid fa-head-side-cough-slash",searchTerms:["cough","covid-19","germs","lungs","respiratory","sick"]},{title:"fa-solid fa-head-side-mask",searchTerms:["breath","coronavirus","covid-19","filter","flu","infection","pandemic","respirator","virus"]},{title:"fa-solid fa-head-side-virus",searchTerms:["cold","coronavirus","covid-19","flu","infection","pandemic","sick"]},{title:"fa-solid fa-heading",searchTerms:["format","header","text","title"]},{title:"fa-solid fa-headphones",searchTerms:["audio","earbud","headphone","listen","music","sound","speaker"]},{title:"fa-solid fa-headphones-simple",searchTerms:["audio","listen","music","sound","speaker"]},{title:"fa-solid fa-headset",searchTerms:["audio","gamer","gaming","listen","live chat","microphone","shot caller","sound","support","telemarketer"]},{title:"fa-solid fa-heart",searchTerms:["black","black heart","blue","blue heart","brown","brown heart","card","evil","favorite","game","green","green heart","heart","heart suit","like","love","orange","orange heart","purple","purple heart","red heart","relationship","valentine","white","white heart","wicked","yellow","yellow heart"]},{title:"fa-regular fa-heart",searchTerms:["black","black heart","blue","blue heart","brown","brown heart","card","evil","favorite","game","green","green heart","heart","heart suit","like","love","orange","orange heart","purple","purple heart","red heart","relationship","valentine","white","white heart","wicked","yellow","yellow heart"]},{title:"fa-solid fa-heart-circle-bolt",searchTerms:["cardiogram","ekg","electric","heart","love","pacemaker"]},{title:"fa-solid fa-heart-circle-check",searchTerms:["favorite","heart","love","not affected","ok","okay"]},{title:"fa-solid fa-heart-circle-exclamation",searchTerms:["favorite","heart","love"]},{title:"fa-solid fa-heart-circle-minus",searchTerms:["favorite","heart","love"]},{title:"fa-solid fa-heart-circle-plus",searchTerms:["favorite","heart","love"]},{title:"fa-solid fa-heart-circle-xmark",searchTerms:["favorite","heart","love"]},{title:"fa-solid fa-heart-crack",searchTerms:["break","breakup","broken","broken heart","crushed","dislike","dumped","grief","love","lovesick","relationship","sad"]},{title:"fa-solid fa-heart-pulse",searchTerms:["ekg","electrocardiogram","health","lifeline","vital signs"]},{title:"fa-solid fa-helicopter",searchTerms:["airwolf","apache","chopper","flight","fly","helicopter","travel","vehicle"]},{title:"fa-solid fa-helicopter-symbol",searchTerms:["chopper","helicopter","landing pad","whirlybird"]},{title:"fa-solid fa-helmet-safety",searchTerms:["construction","hardhat","helmet","safety"]},{title:"fa-solid fa-helmet-un",searchTerms:["helmet","united nations"]},{title:"fa-solid fa-highlighter",searchTerms:["edit","marker","sharpie","update","write"]},{title:"fa-solid fa-hill-avalanche",searchTerms:["mudslide","snow","winter"]},{title:"fa-solid fa-hill-rockslide",searchTerms:["mudslide"]},{title:"fa-solid fa-hippo",searchTerms:["animal","fauna","hippo","hippopotamus","hungry","mammal"]},{title:"fa-brands fa-hips",searchTerms:[]},{title:"fa-brands fa-hire-a-helper",searchTerms:[]},{title:"fa-brands fa-hive",searchTerms:[]},{title:"fa-solid fa-hockey-puck",searchTerms:["ice","nhl","sport"]},{title:"fa-solid fa-holly-berry",searchTerms:["catwoman","christmas","decoration","flora","halle","holiday","ororo munroe","plant","storm","xmas"]},{title:"fa-brands fa-hooli",searchTerms:[]},{title:"fa-brands fa-hornbill",searchTerms:[]},{title:"fa-solid fa-horse",searchTerms:["equestrian","equus","fauna","horse","mammmal","mare","neigh","pony","racehorse","racing"]},{title:"fa-solid fa-horse-head",searchTerms:["equus","fauna","mammmal","mare","neigh","pony"]},{title:"fa-solid fa-hospital",searchTerms:["building","covid-19","doctor","emergency room","hospital","medical center","medicine"]},{title:"fa-regular fa-hospital",searchTerms:["building","covid-19","doctor","emergency room","hospital","medical center","medicine"]},{title:"fa-solid fa-hospital-user",searchTerms:["covid-19","doctor","network","patient","primary care"]},{title:"fa-solid fa-hot-tub-person",searchTerms:["jacuzzi","spa"]},{title:"fa-solid fa-hotdog",searchTerms:["bun","chili","frankfurt","frankfurter","hot dog","hotdog","kosher","polish","sandwich","sausage","vienna","weiner"]},{title:"fa-solid fa-hotel",searchTerms:["building","hotel","inn","lodging","motel","resort","travel"]},{title:"fa-brands fa-hotjar",searchTerms:[]},{title:"fa-solid fa-hourglass",searchTerms:["hour","hourglass","hourglass not done","minute","sand","stopwatch","time","timer"]},{title:"fa-regular fa-hourglass",searchTerms:["hour","hourglass","hourglass not done","minute","sand","stopwatch","time","timer"]},{title:"fa-solid fa-hourglass-end",searchTerms:["hour","hourglass done","minute","sand","stopwatch","time","timer"]},{title:"fa-solid fa-hourglass-half",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fa-regular fa-hourglass-half",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fa-solid fa-hourglass-start",searchTerms:["hour","minute","sand","stopwatch","time"]},{title:"fa-solid fa-house",searchTerms:["abode","building","home","house","main","residence"]},{title:"fa-solid fa-house-chimney",searchTerms:["abode","building","chimney","house","main","residence","smokestack"]},{title:"fa-solid fa-house-chimney-crack",searchTerms:["building","devastation","disaster","earthquake","home","insurance"]},{title:"fa-solid fa-house-chimney-medical",searchTerms:["covid-19","doctor","general practitioner","hospital","infirmary","medicine","office","outpatient"]},{title:"fa-solid fa-house-chimney-user",searchTerms:["covid-19","home","isolation","quarantine"]},{title:"fa-solid fa-house-chimney-window",searchTerms:["abode","building","family","home","residence"]},{title:"fa-solid fa-house-circle-check",searchTerms:["abode","home","house","not affected","ok","okay"]},{title:"fa-solid fa-house-circle-exclamation",searchTerms:["abode","affected","home","house"]},{title:"fa-solid fa-house-circle-xmark",searchTerms:["abode","destroy","home","house"]},{title:"fa-solid fa-house-crack",searchTerms:["building","devastation","disaster","earthquake","home","insurance"]},{title:"fa-solid fa-house-fire",searchTerms:["burn","emergency","home"]},{title:"fa-solid fa-house-flag",searchTerms:["camp","home"]},{title:"fa-solid fa-house-flood-water",searchTerms:["damage","flood","water"]},{title:"fa-solid fa-house-flood-water-circle-arrow-right",searchTerms:["damage","flood","water"]},{title:"fa-solid fa-house-laptop",searchTerms:["computer","covid-19","device","office","remote","work from home"]},{title:"fa-solid fa-house-lock",searchTerms:["closed","home","house","lockdown","quarantine"]},{title:"fa-solid fa-house-medical",searchTerms:["covid-19","doctor","facility","general practitioner","health","hospital","infirmary","medicine","office","outpatient"]},{title:"fa-solid fa-house-medical-circle-check",searchTerms:["clinic","hospital","not affected","ok","okay"]},{title:"fa-solid fa-house-medical-circle-exclamation",searchTerms:["affected","clinic","hospital"]},{title:"fa-solid fa-house-medical-circle-xmark",searchTerms:["clinic","destroy","hospital"]},{title:"fa-solid fa-house-medical-flag",searchTerms:["clinic","hospital","mash"]},{title:"fa-solid fa-house-signal",searchTerms:["abode","building","connect","family","home","residence","smart home","wifi"]},{title:"fa-solid fa-house-tsunami",searchTerms:["damage","flood","tidal wave","wave"]},{title:"fa-solid fa-house-user",searchTerms:["house"]},{title:"fa-brands fa-houzz",searchTerms:[]},{title:"fa-solid fa-hryvnia-sign",searchTerms:["Hryvnia Sign","currency"]},{title:"fa-brands fa-html5",searchTerms:[]},{title:"fa-brands fa-hubspot",searchTerms:[]},{title:"fa-solid fa-hurricane",searchTerms:["coriolis effect","eye","storm","tropical cyclone","typhoon"]},{title:"fa-solid fa-i",searchTerms:["Latin Capital Letter I","Latin Small Letter I","letter"]},{title:"fa-solid fa-i-cursor",searchTerms:["editing","i-beam","type","writing"]},{title:"fa-solid fa-ice-cream",searchTerms:["chocolate","cone","cream","dessert","frozen","ice","ice cream","scoop","sorbet","sweet","vanilla","yogurt"]},{title:"fa-solid fa-icicles",searchTerms:["cold","frozen","hanging","ice","seasonal","sharp"]},{title:"fa-solid fa-icons",searchTerms:["bolt","emoji","heart","image","music","photo","symbols"]},{title:"fa-solid fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"fa-regular fa-id-badge",searchTerms:["address","contact","identification","license","profile"]},{title:"fa-solid fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile","registration"]},{title:"fa-regular fa-id-card",searchTerms:["contact","demographics","document","identification","issued","profile","registration"]},{title:"fa-solid fa-id-card-clip",searchTerms:["contact","demographics","document","identification","issued","profile"]},{title:"fa-brands fa-ideal",searchTerms:[]},{title:"fa-solid fa-igloo",searchTerms:["dome","dwelling","eskimo","home","house","ice","snow"]},{title:"fa-solid fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"fa-regular fa-image",searchTerms:["album","landscape","photo","picture"]},{title:"fa-solid fa-image-portrait",searchTerms:["id","image","photo","picture","selfie"]},{title:"fa-solid fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"fa-regular fa-images",searchTerms:["album","landscape","photo","picture"]},{title:"fa-brands fa-imdb",searchTerms:[]},{title:"fa-solid fa-inbox",searchTerms:["archive","desk","email","mail","message"]},{title:"fa-solid fa-indent",searchTerms:["align","justify","paragraph","tab"]},{title:"fa-solid fa-indian-rupee-sign",searchTerms:["Indian Rupee Sign","currency"]},{title:"fa-solid fa-industry",searchTerms:["building","factory","industrial","manufacturing","mill","warehouse"]},{title:"fa-solid fa-infinity",searchTerms:["Infinity","eternity","forever","infinity","math","unbounded","universal"]},{title:"fa-solid fa-info",searchTerms:["details","help","information","more","support"]},{title:"fa-brands fa-instagram",searchTerms:[]},{title:"fa-brands fa-instalod",searchTerms:[]},{title:"fa-brands fa-intercom",searchTerms:["app","customer","messenger"]},{title:"fa-brands fa-internet-explorer",searchTerms:["browser","ie"]},{title:"fa-brands fa-invision",searchTerms:["app","design","interface"]},{title:"fa-brands fa-ioxhost",searchTerms:[]},{title:"fa-solid fa-italic",searchTerms:["edit","emphasis","font","format","text","type"]},{title:"fa-brands fa-itch-io",searchTerms:[]},{title:"fa-brands fa-itunes",searchTerms:[]},{title:"fa-brands fa-itunes-note",searchTerms:[]},{title:"fa-solid fa-j",searchTerms:["Latin Capital Letter J","Latin Small Letter J","letter"]},{title:"fa-solid fa-jar",searchTerms:["jam","jelly","storage"]},{title:"fa-solid fa-jar-wheat",searchTerms:["flour","storage"]},{title:"fa-brands fa-java",searchTerms:[]},{title:"fa-solid fa-jedi",searchTerms:["crest","force","sith","skywalker","star wars","yoda"]},{title:"fa-brands fa-jedi-order",searchTerms:["star wars"]},{title:"fa-brands fa-jenkins",searchTerms:[]},{title:"fa-solid fa-jet-fighter",searchTerms:["airforce","airplane","airport","fast","fly","goose","marines","maverick","military","plane","quick","top gun","transportation","travel"]},{title:"fa-solid fa-jet-fighter-up",searchTerms:["airforce","airplane","airport","fast","fly","goose","marines","maverick","military","plane","quick","top gun","transportation","travel"]},{title:"fa-brands fa-jira",searchTerms:["atlassian"]},{title:"fa-brands fa-joget",searchTerms:[]},{title:"fa-solid fa-joint",searchTerms:["blunt","cannabis","doobie","drugs","marijuana","roach","smoke","smoking","spliff"]},{title:"fa-brands fa-joomla",searchTerms:[]},{title:"fa-brands fa-js",searchTerms:[]},{title:"fa-brands fa-jsfiddle",searchTerms:[]},{title:"fa-solid fa-jug-detergent",searchTerms:["detergent","laundry","soap","wash"]},{title:"fa-solid fa-k",searchTerms:["Latin Capital Letter K","Latin Small Letter K","letter"]},{title:"fa-solid fa-kaaba",searchTerms:["Muslim","building","cube","islam","kaaba","muslim","religion"]},{title:"fa-brands fa-kaggle",searchTerms:[]},{title:"fa-solid fa-key",searchTerms:["key","lock","password","private","secret","unlock"]},{title:"fa-brands fa-keybase",searchTerms:[]},{title:"fa-solid fa-keyboard",searchTerms:["accessory","computer","edit","input","keyboard","text","type","write"]},{title:"fa-regular fa-keyboard",searchTerms:["accessory","computer","edit","input","keyboard","text","type","write"]},{title:"fa-brands fa-keycdn",searchTerms:[]},{title:"fa-solid fa-khanda",searchTerms:["Adi Shakti","chakkar","sikh","sikhism","sword"]},{title:"fa-brands fa-kickstarter",searchTerms:[]},{title:"fa-brands fa-kickstarter-k",searchTerms:[]},{title:"fa-solid fa-kip-sign",searchTerms:["Kip Sign","currency"]},{title:"fa-solid fa-kit-medical",searchTerms:["emergency","emt","health","medical","rescue"]},{title:"fa-solid fa-kitchen-set",searchTerms:["chef","cook","cup","kitchen","pan","pot","skillet"]},{title:"fa-solid fa-kiwi-bird",searchTerms:["bird","fauna","new zealand"]},{title:"fa-brands fa-korvue",searchTerms:[]},{title:"fa-solid fa-l",searchTerms:["Latin Capital Letter L","Latin Small Letter L","letter"]},{title:"fa-solid fa-land-mine-on",searchTerms:["bomb","danger","explosion","war"]},{title:"fa-solid fa-landmark",searchTerms:["building","classical","historic","memorable","monument","museum","politics"]},{title:"fa-solid fa-landmark-dome",searchTerms:["building","historic","memorable","monument","politics"]},{title:"fa-solid fa-landmark-flag",searchTerms:["capitol","flag","landmark","memorial"]},{title:"fa-solid fa-language",searchTerms:["dialect","idiom","localize","speech","translate","vernacular"]},{title:"fa-solid fa-laptop",searchTerms:["computer","cpu","dell","demo","device","laptop","mac","macbook","machine","pc","personal"]},{title:"fa-solid fa-laptop-code",searchTerms:["computer","cpu","dell","demo","develop","device","mac","macbook","machine","pc"]},{title:"fa-solid fa-laptop-file",searchTerms:["computer","education","laptop","learning","remote work"]},{title:"fa-solid fa-laptop-medical",searchTerms:["computer","device","ehr","electronic health records","history"]},{title:"fa-brands fa-laravel",searchTerms:[]},{title:"fa-solid fa-lari-sign",searchTerms:["Lari Sign","currency"]},{title:"fa-brands fa-lastfm",searchTerms:[]},{title:"fa-solid fa-layer-group",searchTerms:["arrange","develop","layers","map","stack"]},{title:"fa-solid fa-leaf",searchTerms:["eco","flora","nature","plant","vegan"]},{title:"fa-brands fa-leanpub",searchTerms:[]},{title:"fa-solid fa-left-long",searchTerms:["back","long-arrow-left","previous"]},{title:"fa-solid fa-left-right",searchTerms:["arrow","arrows-h","expand","horizontal","landscape","left-right arrow","resize","wide"]},{title:"fa-solid fa-lemon",searchTerms:["citrus","fruit","lemon","lemonade","lime","tart"]},{title:"fa-regular fa-lemon",searchTerms:["citrus","fruit","lemon","lemonade","lime","tart"]},{title:"fa-brands fa-less",searchTerms:[]},{title:"fa-solid fa-less-than",searchTerms:["Less-Than Sign","arithmetic","compare","math"]},{title:"fa-solid fa-less-than-equal",searchTerms:["arithmetic","compare","math"]},{title:"fa-solid fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"fa-regular fa-life-ring",searchTerms:["coast guard","help","overboard","save","support"]},{title:"fa-solid fa-lightbulb",searchTerms:[" comic"," electric"," idea"," innovation"," inspiration"," light"," light bulb"," bulb","bulb","comic","electric","energy","idea","inspiration","mechanical"]},{title:"fa-regular fa-lightbulb",searchTerms:[" comic"," electric"," idea"," innovation"," inspiration"," light"," light bulb"," bulb","bulb","comic","electric","energy","idea","inspiration","mechanical"]},{title:"fa-brands fa-line",searchTerms:[]},{title:"fa-solid fa-lines-leaning",searchTerms:["canted","domino","falling","resilience","resilient","tipped"]},{title:"fa-solid fa-link",searchTerms:["attach","attachment","chain","connect","lin","link"]},{title:"fa-solid fa-link-slash",searchTerms:["attachment","chain","chain-broken","remove"]},{title:"fa-brands fa-linkedin",searchTerms:["linkedin-square"]},{title:"fa-brands fa-linkedin-in",searchTerms:["linkedin"]},{title:"fa-brands fa-linode",searchTerms:[]},{title:"fa-brands fa-linux",searchTerms:["tux"]},{title:"fa-solid fa-lira-sign",searchTerms:["Lira Sign","currency"]},{title:"fa-solid fa-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fa-solid fa-list-check",searchTerms:["checklist","downloading","downloads","loading","progress","project management","settings","to do"]},{title:"fa-solid fa-list-ol",searchTerms:["checklist","completed","done","finished","numbers","ol","todo","ul"]},{title:"fa-solid fa-list-ul",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fa-solid fa-litecoin-sign",searchTerms:["currency"]},{title:"fa-solid fa-location-arrow",searchTerms:["address","compass","coordinate","direction","gps","map","navigation","place"]},{title:"fa-solid fa-location-crosshairs",searchTerms:["address","coordinate","direction","gps","location","map","navigation","place","where"]},{title:"fa-solid fa-location-dot",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fa-solid fa-location-pin",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fa-solid fa-location-pin-lock",searchTerms:["closed","lockdown","map","quarantine"]},{title:"fa-solid fa-lock",searchTerms:["admin","closed","lock","locked","open","password","private","protect","security"]},{title:"fa-solid fa-lock-open",searchTerms:["admin","lock","open","password","private","protect","security","unlock"]},{title:"fa-solid fa-locust",searchTerms:["horde","infestation","locust","plague","swarm"]},{title:"fa-solid fa-lungs",searchTerms:["air","breath","covid-19","exhalation","inhalation","lungs","organ","respiration","respiratory"]},{title:"fa-solid fa-lungs-virus",searchTerms:["breath","coronavirus","covid-19","flu","infection","pandemic","respiratory","sick"]},{title:"fa-brands fa-lyft",searchTerms:[]},{title:"fa-solid fa-m",searchTerms:["Latin Capital Letter M","Latin Small Letter M","letter"]},{title:"fa-brands fa-magento",searchTerms:[]},{title:"fa-solid fa-magnet",searchTerms:["Attract","attraction","horseshoe","lodestone","magnet","magnetic","tool"]},{title:"fa-solid fa-magnifying-glass",searchTerms:["bigger","enlarge","find","glass","magnify","magnifying","magnifying glass tilted left","preview","search","tool","zoom"]},{title:"fa-solid fa-magnifying-glass-arrow-right",searchTerms:["find","next","search"]},{title:"fa-solid fa-magnifying-glass-chart",searchTerms:[" data"," graph"," intelligence","analysis","chart","market"]},{title:"fa-solid fa-magnifying-glass-dollar",searchTerms:["bigger","enlarge","find","magnify","money","preview","zoom"]},{title:"fa-solid fa-magnifying-glass-location",searchTerms:["bigger","enlarge","find","magnify","preview","zoom"]},{title:"fa-solid fa-magnifying-glass-minus",searchTerms:["minify","negative","smaller","zoom","zoom out"]},{title:"fa-solid fa-magnifying-glass-plus",searchTerms:["bigger","enlarge","magnify","positive","zoom","zoom in"]},{title:"fa-brands fa-mailchimp",searchTerms:[]},{title:"fa-solid fa-manat-sign",searchTerms:["Manat Sign","currency"]},{title:"fa-brands fa-mandalorian",searchTerms:[]},{title:"fa-solid fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel","world","world map"]},{title:"fa-regular fa-map",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel","world","world map"]},{title:"fa-solid fa-map-location",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fa-solid fa-map-location-dot",searchTerms:["address","coordinates","destination","gps","localize","location","map","navigation","paper","pin","place","point of interest","position","route","travel"]},{title:"fa-solid fa-map-pin",searchTerms:["address","agree","coordinates","destination","gps","localize","location","map","marker","navigation","pin","place","position","pushpin","round pushpin","travel"]},{title:"fa-brands fa-markdown",searchTerms:[]},{title:"fa-solid fa-marker",searchTerms:["design","edit","sharpie","update","write"]},{title:"fa-solid fa-mars",searchTerms:["gender","male","male sign","man"]},{title:"fa-solid fa-mars-and-venus",searchTerms:["Male and Female Sign","female","gender","intersex","male","transgender"]},{title:"fa-solid fa-mars-and-venus-burst",searchTerms:["gender","violence"]},{title:"fa-solid fa-mars-double",searchTerms:["Doubled Male Sign","gay","gender","male","men"]},{title:"fa-solid fa-mars-stroke",searchTerms:["Male with Stroke Sign","gender","transgender"]},{title:"fa-solid fa-mars-stroke-right",searchTerms:["Horizontal Male with Stroke Sign","gender"]},{title:"fa-solid fa-mars-stroke-up",searchTerms:["Vertical Male with Stroke Sign","gender"]},{title:"fa-solid fa-martini-glass",searchTerms:["alcohol","bar","beverage","cocktail","cocktail glass","drink","glass","liquor"]},{title:"fa-solid fa-martini-glass-citrus",searchTerms:["alcohol","beverage","drink","gin","glass","margarita","martini","vodka"]},{title:"fa-solid fa-martini-glass-empty",searchTerms:["alcohol","bar","beverage","drink","liquor"]},{title:"fa-solid fa-mask",searchTerms:["carnivale","costume","disguise","halloween","secret","super hero"]},{title:"fa-solid fa-mask-face",searchTerms:["breath","coronavirus","covid-19","filter","flu","infection","pandemic","respirator","virus"]},{title:"fa-solid fa-mask-ventilator",searchTerms:["breath","gas","mask","oxygen","respirator","ventilator"]},{title:"fa-solid fa-masks-theater",searchTerms:["art","comedy","mask","perform","performing","performing arts","theater","theatre","tragedy"]},{title:"fa-brands fa-mastodon",searchTerms:[]},{title:"fa-solid fa-mattress-pillow",searchTerms:["air mattress","mattress","pillow","rest","sleep"]},{title:"fa-brands fa-maxcdn",searchTerms:[]},{title:"fa-solid fa-maximize",searchTerms:["bigger","enlarge","fullscreen","move","resize"]},{title:"fa-brands fa-mdb",searchTerms:[]},{title:"fa-solid fa-medal",searchTerms:["award","medal","ribbon","sports medal","star","trophy"]},{title:"fa-brands fa-medapps",searchTerms:[]},{title:"fa-brands fa-medium",searchTerms:[]},{title:"fa-brands fa-medrt",searchTerms:[]},{title:"fa-brands fa-meetup",searchTerms:[]},{title:"fa-brands fa-megaport",searchTerms:[]},{title:"fa-solid fa-memory",searchTerms:["DIMM","RAM","hardware","storage","technology"]},{title:"fa-brands fa-mendeley",searchTerms:[]},{title:"fa-solid fa-menorah",searchTerms:["candle","hanukkah","jewish","judaism","light"]},{title:"fa-solid fa-mercury",searchTerms:["Mercury","gender","hybrid","transgender"]},{title:"fa-solid fa-message",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-regular fa-message",searchTerms:["bubble","chat","commenting","conversation","feedback","message","note","notification","sms","speech","texting"]},{title:"fa-brands fa-meta",searchTerms:[]},{title:"fa-solid fa-meteor",searchTerms:["armageddon","asteroid","comet","shooting star","space"]},{title:"fa-brands fa-microblog",searchTerms:[]},{title:"fa-solid fa-microchip",searchTerms:["cpu","hardware","processor","technology"]},{title:"fa-solid fa-microphone",searchTerms:["address","audio","information","podcast","public","record","sing","sound","voice"]},{title:"fa-solid fa-microphone-lines",searchTerms:["audio","mic","microphone","music","podcast","record","sing","sound","studio","studio microphone","voice"]},{title:"fa-solid fa-microphone-lines-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fa-solid fa-microphone-slash",searchTerms:["audio","disable","mute","podcast","record","sing","sound","voice"]},{title:"fa-solid fa-microscope",searchTerms:["covid-19","electron","lens","microscope","optics","science","shrink","testing","tool"]},{title:"fa-brands fa-microsoft",searchTerms:[]},{title:"fa-solid fa-mill-sign",searchTerms:["Mill Sign","currency"]},{title:"fa-solid fa-minimize",searchTerms:["collapse","fullscreen","minimize","move","resize","shrink","smaller"]},{title:"fa-solid fa-minus",searchTerms:["En Dash","Minus Sign","collapse","delete","hide","math","minify","minus","negative","remove","sign","trash","−"]},{title:"fa-solid fa-mitten",searchTerms:["clothing","cold","glove","hands","knitted","seasonal","warmth"]},{title:"fa-brands fa-mix",searchTerms:[]},{title:"fa-brands fa-mixcloud",searchTerms:[]},{title:"fa-brands fa-mixer",searchTerms:[]},{title:"fa-brands fa-mizuni",searchTerms:[]},{title:"fa-solid fa-mobile",searchTerms:["android","call","cell","cell phone","device","mobile","mobile phone","number","phone","screen","telephone","text"]},{title:"fa-solid fa-mobile-button",searchTerms:["apple","call","cell phone","device","iphone","number","screen","telephone"]},{title:"fa-solid fa-mobile-retro",searchTerms:["cellphone","cellular","phone"]},{title:"fa-solid fa-mobile-screen",searchTerms:["android","call","cell phone","device","number","screen","telephone","text"]},{title:"fa-solid fa-mobile-screen-button",searchTerms:["apple","call","cell phone","device","iphone","number","screen","telephone"]},{title:"fa-brands fa-modx",searchTerms:[]},{title:"fa-brands fa-monero",searchTerms:[]},{title:"fa-solid fa-money-bill",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fa-solid fa-money-bill-1",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fa-regular fa-money-bill-1",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fa-solid fa-money-bill-1-wave",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fa-solid fa-money-bill-transfer",searchTerms:["bank","conversion","deposit","money","transfer","withdrawal"]},{title:"fa-solid fa-money-bill-trend-up",searchTerms:["bank","bonds","inflation","market","stocks","trade"]},{title:"fa-solid fa-money-bill-wave",searchTerms:["buy","cash","checkout","money","payment","price","purchase"]},{title:"fa-solid fa-money-bill-wheat",searchTerms:["agribusiness","agriculture","farming","food","livelihood","subsidy"]},{title:"fa-solid fa-money-bills",searchTerms:["atm","cash","money","moolah"]},{title:"fa-solid fa-money-check",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fa-solid fa-money-check-dollar",searchTerms:["bank check","buy","checkout","cheque","money","payment","price","purchase"]},{title:"fa-solid fa-monument",searchTerms:["building","historic","landmark","memorable"]},{title:"fa-solid fa-moon",searchTerms:["Power Sleep Symbol","contrast","crescent","crescent moon","dark","lunar","moon","night"]},{title:"fa-regular fa-moon",searchTerms:["Power Sleep Symbol","contrast","crescent","crescent moon","dark","lunar","moon","night"]},{title:"fa-solid fa-mortar-pestle",searchTerms:["crush","culinary","grind","medical","mix","pharmacy","prescription","spices"]},{title:"fa-solid fa-mosque",searchTerms:["Muslim","building","islam","landmark","mosque","muslim","religion"]},{title:"fa-solid fa-mosquito",searchTerms:["bite","bug","mosquito","west nile"]},{title:"fa-solid fa-mosquito-net",searchTerms:["bite","malaria","mosquito","net"]},{title:"fa-solid fa-motorcycle",searchTerms:["bike","machine","motorcycle","racing","transportation","vehicle"]},{title:"fa-solid fa-mound",searchTerms:["barrier","hill","pitcher","speedbump"]},{title:"fa-solid fa-mountain",searchTerms:["cold","glacier","hiking","hill","landscape","mountain","snow","snow-capped mountain","travel","view"]},{title:"fa-solid fa-mountain-city",searchTerms:["location","rural","urban"]},{title:"fa-solid fa-mountain-sun",searchTerms:["country","hiking","landscape","rural","travel","view"]},{title:"fa-solid fa-mug-hot",searchTerms:["beverage","caliente","cocoa","coffee","cup","drink","holiday","hot","hot beverage","hot chocolate","steam","steaming","tea","warmth"]},{title:"fa-solid fa-mug-saucer",searchTerms:["beverage","breakfast","cafe","drink","fall","morning","mug","seasonal","tea"]},{title:"fa-solid fa-music",searchTerms:["lyrics","melody","music","musical note","note","sing","sound"]},{title:"fa-solid fa-n",searchTerms:["Latin Capital Letter N","Latin Small Letter N","letter","nay","no"]},{title:"fa-solid fa-naira-sign",searchTerms:["Naira Sign","currency"]},{title:"fa-brands fa-napster",searchTerms:[]},{title:"fa-brands fa-neos",searchTerms:[]},{title:"fa-solid fa-network-wired",searchTerms:["computer","connect","ethernet","internet","intranet"]},{title:"fa-solid fa-neuter",searchTerms:["Neuter","gender"]},{title:"fa-solid fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","newspaper","paper","press"]},{title:"fa-regular fa-newspaper",searchTerms:["article","editorial","headline","journal","journalism","news","newspaper","paper","press"]},{title:"fa-brands fa-nfc-directional",searchTerms:["connect","data","near field communication","nfc","scan","signal","transfer","wireless"]},{title:"fa-brands fa-nfc-symbol",searchTerms:["connect","data","near field communication","nfc","scan","signal","transfer","wireless"]},{title:"fa-brands fa-nimblr",searchTerms:[]},{title:"fa-brands fa-node",searchTerms:[]},{title:"fa-brands fa-node-js",searchTerms:[]},{title:"fa-solid fa-not-equal",searchTerms:["arithmetic","compare","math"]},{title:"fa-solid fa-notdef",searchTerms:["close","missing"]},{title:"fa-solid fa-note-sticky",searchTerms:["message","note","paper","reminder","sticker"]},{title:"fa-regular fa-note-sticky",searchTerms:["message","note","paper","reminder","sticker"]},{title:"fa-solid fa-notes-medical",searchTerms:["clipboard","doctor","ehr","health","history","records"]},{title:"fa-brands fa-npm",searchTerms:[]},{title:"fa-brands fa-ns8",searchTerms:[]},{title:"fa-brands fa-nutritionix",searchTerms:[]},{title:"fa-solid fa-o",searchTerms:["Latin Capital Letter O","Latin Small Letter O","letter"]},{title:"fa-solid fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"fa-regular fa-object-group",searchTerms:["combine","copy","design","merge","select"]},{title:"fa-solid fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"fa-regular fa-object-ungroup",searchTerms:["copy","design","merge","select","separate"]},{title:"fa-brands fa-octopus-deploy",searchTerms:[]},{title:"fa-brands fa-odnoklassniki",searchTerms:[]},{title:"fa-brands fa-odysee",searchTerms:[]},{title:"fa-solid fa-oil-can",searchTerms:["auto","crude","gasoline","grease","lubricate","petroleum"]},{title:"fa-solid fa-oil-well",searchTerms:["drill","oil","rig"]},{title:"fa-brands fa-old-republic",searchTerms:["politics","star wars"]},{title:"fa-solid fa-om",searchTerms:["Hindu","buddhism","hinduism","jainism","mantra","om","religion"]},{title:"fa-brands fa-opencart",searchTerms:[]},{title:"fa-brands fa-openid",searchTerms:[]},{title:"fa-brands fa-opera",searchTerms:[]},{title:"fa-brands fa-optin-monster",searchTerms:[]},{title:"fa-brands fa-orcid",searchTerms:[]},{title:"fa-brands fa-osi",searchTerms:[]},{title:"fa-solid fa-otter",searchTerms:["animal","badger","fauna","fishing","fur","mammal","marten","otter","playful"]},{title:"fa-solid fa-outdent",searchTerms:["align","justify","paragraph","tab"]},{title:"fa-solid fa-p",searchTerms:["Latin Capital Letter P","Latin Small Letter P","letter"]},{title:"fa-brands fa-padlet",searchTerms:[]},{title:"fa-brands fa-page4",searchTerms:[]},{title:"fa-brands fa-pagelines",searchTerms:["eco","flora","leaf","leaves","nature","plant","tree"]},{title:"fa-solid fa-pager",searchTerms:["beeper","cell phone","communication","page","pager"]},{title:"fa-solid fa-paint-roller",searchTerms:["acrylic","art","brush","color","fill","paint","pigment","watercolor"]},{title:"fa-solid fa-paintbrush",searchTerms:["acrylic","art","brush","color","fill","paint","paintbrush","painting","pigment","watercolor"]},{title:"fa-solid fa-palette",searchTerms:["acrylic","art","artist palette","brush","color","fill","museum","paint","painting","palette","pigment","watercolor"]},{title:"fa-brands fa-palfed",searchTerms:[]},{title:"fa-solid fa-pallet",searchTerms:["archive","box","inventory","shipping","warehouse"]},{title:"fa-solid fa-panorama",searchTerms:["image","landscape","photo","wide"]},{title:"fa-solid fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"fa-regular fa-paper-plane",searchTerms:["air","float","fold","mail","paper","send"]},{title:"fa-solid fa-paperclip",searchTerms:["attach","attachment","connect","link","papercli","paperclip"]},{title:"fa-solid fa-parachute-box",searchTerms:["aid","assistance","goods","relief","rescue","supplies"]},{title:"fa-solid fa-paragraph",searchTerms:["Pilcrow Sign","edit","format","text","writing"]},{title:"fa-solid fa-passport",searchTerms:["document","id","identification","issued","travel"]},{title:"fa-solid fa-paste",searchTerms:["clipboard","copy","document","paper"]},{title:"fa-regular fa-paste",searchTerms:["clipboard","copy","document","paper"]},{title:"fa-brands fa-patreon",searchTerms:[]},{title:"fa-solid fa-pause",searchTerms:["bar","double","hold","pause","pause button","vertical","wait"]},{title:"fa-solid fa-paw",searchTerms:["animal","cat","dog","pet","print"]},{title:"fa-brands fa-paypal",searchTerms:[]},{title:"fa-solid fa-peace",searchTerms:["peace","peace symbol","serenity","tranquility","truce","war"]},{title:"fa-solid fa-pen",searchTerms:["ballpoint","design","edit","pen","update","write"]},{title:"fa-solid fa-pen-clip",searchTerms:["design","edit","update","write"]},{title:"fa-solid fa-pen-fancy",searchTerms:["black nib","design","edit","fountain","fountain pen","nib","pen","update","write"]},{title:"fa-solid fa-pen-nib",searchTerms:["design","edit","fountain pen","update","write"]},{title:"fa-solid fa-pen-ruler",searchTerms:["design","draft","draw","pencil"]},{title:"fa-solid fa-pen-to-square",searchTerms:["edit","pen","pencil","update","write"]},{title:"fa-regular fa-pen-to-square",searchTerms:["edit","pen","pencil","update","write"]},{title:"fa-solid fa-pencil",searchTerms:["Lower Left Pencil","design","draw","edit","lead","pencil","update","write"]},{title:"fa-solid fa-people-arrows",searchTerms:["distance","isolation","separate","social distancing","users-people"]},{title:"fa-solid fa-people-carry-box",searchTerms:["users-people"]},{title:"fa-solid fa-people-group",searchTerms:["family","group","team"]},{title:"fa-solid fa-people-line",searchTerms:["group","need"]},{title:"fa-solid fa-people-pulling",searchTerms:["forced return","yanking"]},{title:"fa-solid fa-people-robbery",searchTerms:["criminal","hands up","looting","robbery","steal"]},{title:"fa-solid fa-people-roof",searchTerms:["family","group","manage","people","safe","shelter"]},{title:"fa-solid fa-pepper-hot",searchTerms:["buffalo wings","capsicum","chili","chilli","habanero","hot","hot pepper","jalapeno","mexican","pepper","spicy","tabasco","vegetable"]},{title:"fa-brands fa-perbyte",searchTerms:[]},{title:"fa-solid fa-percent",searchTerms:["Percent Sign","discount","fraction","proportion","rate","ratio"]},{title:"fa-brands fa-periscope",searchTerms:[]},{title:"fa-solid fa-person",searchTerms:["man","person standing","stand","standing","woman"]},{title:"fa-solid fa-person-arrow-down-to-line",searchTerms:["ground","indigenous","native"]},{title:"fa-solid fa-person-arrow-up-from-line",searchTerms:["population","rise"]},{title:"fa-solid fa-person-biking",searchTerms:["bicycle","bike","biking","cyclist","pedal","person biking","summer","wheel"]},{title:"fa-solid fa-person-booth",searchTerms:["changing room","curtain","vote","voting"]},{title:"fa-solid fa-person-breastfeeding",searchTerms:["baby","child","infant","mother","nutrition","sustenance"]},{title:"fa-solid fa-person-burst",searchTerms:["abuse","accident","crash","explode","violence"]},{title:"fa-solid fa-person-cane",searchTerms:["aging","cane","elderly","old","staff"]},{title:"fa-solid fa-person-chalkboard",searchTerms:["blackboard","instructor","keynote","lesson","presentation","teacher"]},{title:"fa-solid fa-person-circle-check",searchTerms:["approved","not affected","ok","okay"]},{title:"fa-solid fa-person-circle-exclamation",searchTerms:["affected","alert","lost","missing"]},{title:"fa-solid fa-person-circle-minus",searchTerms:["delete","remove"]},{title:"fa-solid fa-person-circle-plus",searchTerms:["add","found"]},{title:"fa-solid fa-person-circle-question",searchTerms:["lost","missing"]},{title:"fa-solid fa-person-circle-xmark",searchTerms:["dead","removed"]},{title:"fa-solid fa-person-digging",searchTerms:["bury","construction","debris","dig","men at work"]},{title:"fa-solid fa-person-dots-from-line",searchTerms:["allergy","diagnosis"]},{title:"fa-solid fa-person-dress",searchTerms:["man","skirt","woman"]},{title:"fa-solid fa-person-dress-burst",searchTerms:["abuse","accident","crash","explode","violence"]},{title:"fa-solid fa-person-drowning",searchTerms:["drown","emergency","swim"]},{title:"fa-solid fa-person-falling",searchTerms:["accident","fall","trip"]},{title:"fa-solid fa-person-falling-burst",searchTerms:["accident","crash","death","fall","homicide","murder"]},{title:"fa-solid fa-person-half-dress",searchTerms:["gender","man","restroom","transgender","woman"]},{title:"fa-solid fa-person-harassing",searchTerms:["abuse","scream","shame","shout","yell"]},{title:"fa-solid fa-person-hiking",searchTerms:["autumn","fall","hike","mountain","outdoors","summer","walk"]},{title:"fa-solid fa-person-military-pointing",searchTerms:["army","customs","guard"]},{title:"fa-solid fa-person-military-rifle",searchTerms:["armed forces","army","military","rifle","war"]},{title:"fa-solid fa-person-military-to-person",searchTerms:["civilian","coordination","military"]},{title:"fa-solid fa-person-praying",searchTerms:["kneel","place of worship","religion","thank","worship"]},{title:"fa-solid fa-person-pregnant",searchTerms:["baby","birth","child","pregnant","pregnant woman","woman"]},{title:"fa-solid fa-person-rays",searchTerms:["affected","focus","shine"]},{title:"fa-solid fa-person-rifle",searchTerms:["army","combatant","gun","military","rifle","war"]},{title:"fa-solid fa-person-running",searchTerms:["exit","flee","marathon","person running","race","running"]},{title:"fa-solid fa-person-shelter",searchTerms:["house","inside","roof","safe","safety","shelter"]},{title:"fa-solid fa-person-skating",searchTerms:["figure skating","ice","olympics","rink","skate","winter"]},{title:"fa-solid fa-person-skiing",searchTerms:["downhill","olympics","ski","skier","snow","winter"]},{title:"fa-solid fa-person-skiing-nordic",searchTerms:["cross country","olympics","winter"]},{title:"fa-solid fa-person-snowboarding",searchTerms:["olympics","ski","snow","snowboard","snowboarder","winter"]},{title:"fa-solid fa-person-swimming",searchTerms:["ocean","person swimming","pool","sea","swim","water"]},{title:"fa-solid fa-person-through-window",searchTerms:["door","exit","forced entry","leave","robbery","steal","window"]},{title:"fa-solid fa-person-walking",searchTerms:["crosswalk","exercise","hike","move","person walking","walk","walking"]},{title:"fa-solid fa-person-walking-arrow-loop-left",searchTerms:["population return","return"]},{title:"fa-solid fa-person-walking-arrow-right",searchTerms:["exit","internally displaced","leave","refugee"]},{title:"fa-solid fa-person-walking-dashed-line-arrow-right",searchTerms:["exit","refugee"]},{title:"fa-solid fa-person-walking-luggage",searchTerms:["bag","baggage","briefcase","carry-on","deployment","rolling"]},{title:"fa-solid fa-person-walking-with-cane",searchTerms:["blind","cane"]},{title:"fa-solid fa-peseta-sign",searchTerms:["Peseta Sign","currency"]},{title:"fa-solid fa-peso-sign",searchTerms:["Peso Sign","currency"]},{title:"fa-brands fa-phabricator",searchTerms:[]},{title:"fa-brands fa-phoenix-framework",searchTerms:[]},{title:"fa-brands fa-phoenix-squadron",searchTerms:[]},{title:"fa-solid fa-phone",searchTerms:["Left Hand Telephone Receiver","call","earphone","number","phone","receiver","support","telephone","telephone receiver","voice"]},{title:"fa-solid fa-phone-flip",searchTerms:["Right Hand Telephone Receiver","call","earphone","number","support","telephone","voice"]},{title:"fa-solid fa-phone-slash",searchTerms:["call","cancel","earphone","mute","number","support","telephone","voice"]},{title:"fa-solid fa-phone-volume",searchTerms:["call","earphone","number","sound","support","telephone","voice","volume-control-phone"]},{title:"fa-solid fa-photo-film",searchTerms:["av","film","image","library","media"]},{title:"fa-brands fa-php",searchTerms:[]},{title:"fa-brands fa-pied-piper",searchTerms:[]},{title:"fa-brands fa-pied-piper-alt",searchTerms:[]},{title:"fa-brands fa-pied-piper-hat",searchTerms:["clothing"]},{title:"fa-brands fa-pied-piper-pp",searchTerms:[]},{title:"fa-solid fa-piggy-bank",searchTerms:["bank","save","savings"]},{title:"fa-solid fa-pills",searchTerms:["drugs","medicine","prescription","tablets"]},{title:"fa-brands fa-pinterest",searchTerms:[]},{title:"fa-brands fa-pinterest-p",searchTerms:[]},{title:"fa-brands fa-pix",searchTerms:[]},{title:"fa-solid fa-pizza-slice",searchTerms:["cheese","chicago","italian","mozzarella","new york","pepperoni","pie","slice","teenage mutant ninja turtles","tomato"]},{title:"fa-solid fa-place-of-worship",searchTerms:["building","church","holy","mosque","synagogue"]},{title:"fa-solid fa-plane",searchTerms:["airplane","airport","destination","fly","location","mode","travel","trip"]},{title:"fa-solid fa-plane-arrival",searchTerms:["aeroplane","airplane","airplane arrival","airport","arrivals","arriving","destination","fly","land","landing","location","mode","travel","trip"]},{title:"fa-solid fa-plane-circle-check",searchTerms:["airplane","airport","flight","fly","not affected","ok","okay","travel"]},{title:"fa-solid fa-plane-circle-exclamation",searchTerms:["affected","airplane","airport","flight","fly","travel"]},{title:"fa-solid fa-plane-circle-xmark",searchTerms:["airplane","airport","destroy","flight","fly","travel"]},{title:"fa-solid fa-plane-departure",searchTerms:["aeroplane","airplane","airplane departure","airport","check-in","departing","departure","departures","destination","fly","location","mode","take off","taking off","travel","trip"]},{title:"fa-solid fa-plane-lock",searchTerms:["airplane","airport","closed","flight","fly","lockdown","quarantine","travel"]},{title:"fa-solid fa-plane-slash",searchTerms:["airplane mode","airport","canceled","covid-19","delayed","grounded","travel"]},{title:"fa-solid fa-plane-up",searchTerms:["airplane","airport","internet","signal","sky","wifi","wireless"]},{title:"fa-solid fa-plant-wilt",searchTerms:["drought","planting","vegetation","wilt"]},{title:"fa-solid fa-plate-wheat",searchTerms:["bowl","hunger","rations","wheat"]},{title:"fa-solid fa-play",searchTerms:["arrow","audio","music","play","play button","playing","right","sound","start","triangle","video"]},{title:"fa-brands fa-playstation",searchTerms:[]},{title:"fa-solid fa-plug",searchTerms:["connect","electric","electric plug","electricity","online","plug","power"]},{title:"fa-solid fa-plug-circle-bolt",searchTerms:["electric","electricity","plug","power"]},{title:"fa-solid fa-plug-circle-check",searchTerms:["electric","electricity","not affected","ok","okay","plug","power"]},{title:"fa-solid fa-plug-circle-exclamation",searchTerms:["affected","electric","electricity","plug","power"]},{title:"fa-solid fa-plug-circle-minus",searchTerms:["electric","electricity","plug","power"]},{title:"fa-solid fa-plug-circle-plus",searchTerms:["electric","electricity","plug","power"]},{title:"fa-solid fa-plug-circle-xmark",searchTerms:["destroy","electric","electricity","outage","plug","power"]},{title:"fa-solid fa-plus",searchTerms:["+","Plus Sign","add","create","expand","math","new","plus","positive","shape","sign"]},{title:"fa-solid fa-plus-minus",searchTerms:["Plus-Minus Sign","add","math","subtract"]},{title:"fa-solid fa-podcast",searchTerms:["audio","broadcast","music","sound"]},{title:"fa-solid fa-poo",searchTerms:["crap","dung","face","monster","pile of poo","poo","poop","shit","smile","turd"]},{title:"fa-solid fa-poo-storm",searchTerms:["bolt","cloud","euphemism","lightning","mess","poop","shit","turd"]},{title:"fa-solid fa-poop",searchTerms:["crap","poop","shit","smile","turd"]},{title:"fa-solid fa-power-off",searchTerms:["Power Symbol","cancel","computer","on","reboot","restart"]},{title:"fa-solid fa-prescription",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fa-solid fa-prescription-bottle",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fa-solid fa-prescription-bottle-medical",searchTerms:["drugs","medical","medicine","pharmacy","rx"]},{title:"fa-solid fa-print",searchTerms:["Print Screen Symbol","Printer Icon","business","computer","copy","document","office","paper","printer"]},{title:"fa-brands fa-product-hunt",searchTerms:[]},{title:"fa-solid fa-pump-medical",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","medical grade","sanitizer","soap"]},{title:"fa-solid fa-pump-soap",searchTerms:["anti-bacterial","clean","covid-19","disinfect","hygiene","sanitizer","soap"]},{title:"fa-brands fa-pushed",searchTerms:[]},{title:"fa-solid fa-puzzle-piece",searchTerms:["add-on","addon","clue","game","interlocking","jigsaw","piece","puzzle","puzzle piece","section"]},{title:"fa-brands fa-python",searchTerms:[]},{title:"fa-solid fa-q",searchTerms:["Latin Capital Letter Q","Latin Small Letter Q","letter"]},{title:"fa-brands fa-qq",searchTerms:[]},{title:"fa-solid fa-qrcode",searchTerms:["barcode","info","information","scan"]},{title:"fa-solid fa-question",searchTerms:["?","Question Mark","help","information","mark","outlined","punctuation","question","red question mark","support","unknown","white question mark"]},{title:"fa-brands fa-quinscape",searchTerms:[]},{title:"fa-brands fa-quora",searchTerms:[]},{title:"fa-solid fa-quote-left",searchTerms:["Left Double Quotation Mark","mention","note","phrase","text","type"]},{title:"fa-solid fa-quote-right",searchTerms:["Right Double Quotation Mark","mention","note","phrase","text","type"]},{title:"fa-solid fa-r",searchTerms:["Latin Capital Letter R","Latin Small Letter R","letter"]},{title:"fa-brands fa-r-project",searchTerms:[]},{title:"fa-solid fa-radiation",searchTerms:["danger","dangerous","deadly","hazard","nuclear","radioactive","warning"]},{title:"fa-solid fa-radio",searchTerms:["am","broadcast","fm","frequency","music","news","radio","receiver","transmitter","tuner","video"]},{title:"fa-solid fa-rainbow",searchTerms:["gold","leprechaun","prism","rain","rainbow","sky"]},{title:"fa-solid fa-ranking-star",searchTerms:["chart","first place","podium","rank","win"]},{title:"fa-brands fa-raspberry-pi",searchTerms:[]},{title:"fa-brands fa-ravelry",searchTerms:[]},{title:"fa-brands fa-react",searchTerms:[]},{title:"fa-brands fa-reacteurope",searchTerms:[]},{title:"fa-brands fa-readme",searchTerms:[]},{title:"fa-brands fa-rebel",searchTerms:[]},{title:"fa-solid fa-receipt",searchTerms:["accounting","bookkeeping","check","evidence","invoice","money","pay","proof","receipt","table"]},{title:"fa-solid fa-record-vinyl",searchTerms:["LP","album","analog","music","phonograph","sound"]},{title:"fa-solid fa-rectangle-ad",searchTerms:["advertisement","media","newspaper","promotion","publicity"]},{title:"fa-solid fa-rectangle-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fa-regular fa-rectangle-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fa-solid fa-rectangle-xmark",searchTerms:["browser","cancel","computer","development"]},{title:"fa-regular fa-rectangle-xmark",searchTerms:["browser","cancel","computer","development"]},{title:"fa-solid fa-recycle",searchTerms:["Recycling Symbol For Generic Materials","Universal Recycling Symbol","Waste","compost","garbage","recycle","recycling symbol","reuse","trash"]},{title:"fa-brands fa-red-river",searchTerms:[]},{title:"fa-brands fa-reddit",searchTerms:[]},{title:"fa-brands fa-reddit-alien",searchTerms:[]},{title:"fa-brands fa-redhat",searchTerms:["linux","operating system","os"]},{title:"fa-solid fa-registered",searchTerms:["copyright","mark","r","registered","trademark"]},{title:"fa-regular fa-registered",searchTerms:["copyright","mark","r","registered","trademark"]},{title:"fa-brands fa-renren",searchTerms:[]},{title:"fa-solid fa-repeat",searchTerms:["arrow","clockwise","flip","reload","repeat","repeat button","rewind","switch"]},{title:"fa-solid fa-reply",searchTerms:["mail","message","respond"]},{title:"fa-solid fa-reply-all",searchTerms:["mail","message","respond"]},{title:"fa-brands fa-replyd",searchTerms:[]},{title:"fa-solid fa-republican",searchTerms:["american","conservative","election","elephant","politics","republican party","right","right-wing","usa"]},{title:"fa-brands fa-researchgate",searchTerms:[]},{title:"fa-brands fa-resolving",searchTerms:[]},{title:"fa-solid fa-restroom",searchTerms:["bathroom","toilet","water closet","wc"]},{title:"fa-solid fa-retweet",searchTerms:["refresh","reload","share","swap"]},{title:"fa-brands fa-rev",searchTerms:[]},{title:"fa-solid fa-ribbon",searchTerms:["badge","cause","celebration","lapel","pin","reminder","reminder ribbon","ribbon"]},{title:"fa-solid fa-right-from-bracket",searchTerms:["arrow","exit","leave","log out","logout","sign-out"]},{title:"fa-solid fa-right-left",searchTerms:["arrow","arrows","exchange","reciprocate","return","swap","transfer"]},{title:"fa-solid fa-right-long",searchTerms:["forward","long-arrow-right","next"]},{title:"fa-solid fa-right-to-bracket",searchTerms:["arrow","enter","join","log in","login","sign in","sign up","sign-in","signin","signup"]},{title:"fa-solid fa-ring",searchTerms:["Dungeons & Dragons","Gollum","band","binding","d","dnd","engagement","fantasy","gold","jewelry","marriage","precious"]},{title:"fa-solid fa-road",searchTerms:["highway","map","motorway","pavement","road","route","street","travel"]},{title:"fa-solid fa-road-barrier",searchTerms:["block","border","no entry","roadblock"]},{title:"fa-solid fa-road-bridge",searchTerms:["bridge","infrastructure","road","travel"]},{title:"fa-solid fa-road-circle-check",searchTerms:["freeway","highway","not affected","ok","okay","pavement","road"]},{title:"fa-solid fa-road-circle-exclamation",searchTerms:["affected","freeway","highway","pavement","road"]},{title:"fa-solid fa-road-circle-xmark",searchTerms:["destroy","freeway","highway","pavement","road"]},{title:"fa-solid fa-road-lock",searchTerms:["closed","freeway","highway","lockdown","pavement","quarantine","road"]},{title:"fa-solid fa-road-spikes",searchTerms:["barrier","roadblock","spikes"]},{title:"fa-solid fa-robot",searchTerms:["android","automate","computer","cyborg","face","monster","robot"]},{title:"fa-solid fa-rocket",searchTerms:["aircraft","app","jet","launch","nasa","space"]},{title:"fa-brands fa-rocketchat",searchTerms:[]},{title:"fa-brands fa-rockrms",searchTerms:[]},{title:"fa-solid fa-rotate",searchTerms:["anticlockwise","arrow","counterclockwise","counterclockwise arrows button","exchange","refresh","reload","rotate","swap","withershins"]},{title:"fa-solid fa-rotate-left",searchTerms:["back","control z","exchange","oops","return","swap"]},{title:"fa-solid fa-rotate-right",searchTerms:["forward","refresh","reload","repeat"]},{title:"fa-solid fa-route",searchTerms:["directions","navigation","travel"]},{title:"fa-solid fa-rss",searchTerms:["blog","feed","journal","news","writing"]},{title:"fa-solid fa-ruble-sign",searchTerms:["Ruble Sign","currency"]},{title:"fa-solid fa-rug",searchTerms:["blanket","carpet","rug","textile"]},{title:"fa-solid fa-ruler",searchTerms:["design","draft","length","measure","planning","ruler","straight edge","straight ruler"]},{title:"fa-solid fa-ruler-combined",searchTerms:["design","draft","length","measure","planning"]},{title:"fa-solid fa-ruler-horizontal",searchTerms:["design","draft","length","measure","planning"]},{title:"fa-solid fa-ruler-vertical",searchTerms:["design","draft","length","measure","planning"]},{title:"fa-solid fa-rupee-sign",searchTerms:["Rupee Sign","currency"]},{title:"fa-solid fa-rupiah-sign",searchTerms:["currency"]},{title:"fa-brands fa-rust",searchTerms:[]},{title:"fa-solid fa-s",searchTerms:["Latin Capital Letter S","Latin Small Letter S","letter"]},{title:"fa-solid fa-sack-dollar",searchTerms:["bag","burlap","cash","dollar","money","money bag","moneybag","robber","santa","usd"]},{title:"fa-solid fa-sack-xmark",searchTerms:["bag","burlap","rations"]},{title:"fa-brands fa-safari",searchTerms:["browser"]},{title:"fa-solid fa-sailboat",searchTerms:["dinghy","mast","sailboat","sailing","yacht"]},{title:"fa-brands fa-salesforce",searchTerms:[]},{title:"fa-brands fa-sass",searchTerms:[]},{title:"fa-solid fa-satellite",searchTerms:["communications","hardware","orbit","satellite","space"]},{title:"fa-solid fa-satellite-dish",searchTerms:["SETI","antenna","communications","dish","hardware","radar","receiver","satellite","satellite antenna","saucer","signal","space"]},{title:"fa-solid fa-scale-balanced",searchTerms:["Libra","balance","balance scale","balanced","justice","law","legal","measure","rule","scale","weight","zodiac"]},{title:"fa-solid fa-scale-unbalanced",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fa-solid fa-scale-unbalanced-flip",searchTerms:["justice","legal","measure","unbalanced","weight"]},{title:"fa-brands fa-schlix",searchTerms:[]},{title:"fa-solid fa-school",searchTerms:["building","education","learn","school","student","teacher"]},{title:"fa-solid fa-school-circle-check",searchTerms:["not affected","ok","okay","schoolhouse"]},{title:"fa-solid fa-school-circle-exclamation",searchTerms:["affected","schoolhouse"]},{title:"fa-solid fa-school-circle-xmark",searchTerms:["destroy","schoolhouse"]},{title:"fa-solid fa-school-flag",searchTerms:["educate","flag","school","schoolhouse"]},{title:"fa-solid fa-school-lock",searchTerms:["closed","lockdown","quarantine","schoolhouse"]},{title:"fa-solid fa-scissors",searchTerms:["Black Safety Scissors","White Scissors","clip","cutting","scissors","snip","tool"]},{title:"fa-brands fa-screenpal",searchTerms:[]},{title:"fa-solid fa-screwdriver",searchTerms:["admin","fix","mechanic","repair","screw","screwdriver","settings","tool"]},{title:"fa-solid fa-screwdriver-wrench",searchTerms:["admin","fix","repair","screwdriver","settings","tools","wrench"]},{title:"fa-brands fa-scribd",searchTerms:[]},{title:"fa-solid fa-scroll",searchTerms:["Dungeons & Dragons","announcement","d","dnd","fantasy","paper","script","scroll"]},{title:"fa-solid fa-scroll-torah",searchTerms:["book","jewish","judaism","religion","scroll"]},{title:"fa-solid fa-sd-card",searchTerms:["image","memory","photo","save"]},{title:"fa-brands fa-searchengin",searchTerms:[]},{title:"fa-solid fa-section",searchTerms:["Section Sign","law","legal","silcrow"]},{title:"fa-solid fa-seedling",searchTerms:["environment","flora","grow","plant","sapling","seedling","vegan","young"]},{title:"fa-brands fa-sellcast",searchTerms:["eercast"]},{title:"fa-brands fa-sellsy",searchTerms:[]},{title:"fa-solid fa-server",searchTerms:["computer","cpu","database","hardware","network"]},{title:"fa-brands fa-servicestack",searchTerms:[]},{title:"fa-solid fa-shapes",searchTerms:["blocks","build","circle","square","triangle"]},{title:"fa-solid fa-share",searchTerms:["forward","save","send","social"]},{title:"fa-solid fa-share-from-square",searchTerms:["forward","save","send","social"]},{title:"fa-regular fa-share-from-square",searchTerms:["forward","save","send","social"]},{title:"fa-solid fa-share-nodes",searchTerms:["forward","save","send","social"]},{title:"fa-solid fa-sheet-plastic",searchTerms:["plastic","plastic wrap","protect","tarp","tarpaulin","waterproof"]},{title:"fa-solid fa-shekel-sign",searchTerms:["New Sheqel Sign","currency","ils","money"]},{title:"fa-solid fa-shield",searchTerms:["achievement","armor","award","block","cleric","defend","defense","holy","paladin","protect","safety","security","shield","weapon","winner"]},{title:"fa-solid fa-shield-cat",searchTerms:["animal","feline","pet","protect","safety","veterinary"]},{title:"fa-solid fa-shield-dog",searchTerms:["animal","canine","pet","protect","safety","veterinary"]},{title:"fa-solid fa-shield-halved",searchTerms:["achievement","armor","award","block","cleric","defend","defense","holy","paladin","security","shield","weapon","winner"]},{title:"fa-solid fa-shield-heart",searchTerms:["love","protect","safe","safety","shield"]},{title:"fa-solid fa-shield-virus",searchTerms:["antibodies","barrier","coronavirus","covid-19","flu","health","infection","pandemic","protect","safety","vaccine"]},{title:"fa-solid fa-ship",searchTerms:["boat","passenger","sea","ship","water"]},{title:"fa-solid fa-shirt",searchTerms:["clothing","fashion","garment","shirt","short sleeve","t-shirt","tshirt"]},{title:"fa-brands fa-shirtsinbulk",searchTerms:[]},{title:"fa-solid fa-shoe-prints",searchTerms:["feet","footprints","steps","walk"]},{title:"fa-solid fa-shop",searchTerms:["bodega","building","buy","market","purchase","shopping","store"]},{title:"fa-solid fa-shop-lock",searchTerms:["bodega","building","buy","closed","lock","lockdown","market","purchase","quarantine","shop","shopping","store"]},{title:"fa-solid fa-shop-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fa-brands fa-shopify",searchTerms:[]},{title:"fa-brands fa-shopware",searchTerms:[]},{title:"fa-solid fa-shower",searchTerms:["bath","clean","faucet","shower","water"]},{title:"fa-solid fa-shrimp",searchTerms:["allergy","crustacean","prawn","seafood","shellfish","shrimp","tail"]},{title:"fa-solid fa-shuffle",searchTerms:["arrow","arrows","crossed","shuffle","shuffle tracks button","sort","swap","switch","transfer"]},{title:"fa-solid fa-shuttle-space",searchTerms:["astronaut","machine","nasa","rocket","space","transportation"]},{title:"fa-solid fa-sign-hanging",searchTerms:["directions","real estate","signage","wayfinding"]},{title:"fa-solid fa-signal",searchTerms:["antenna","antenna bars","bar","bars","cell","graph","mobile","online","phone","reception","status"]},{title:"fa-solid fa-signature",searchTerms:["John Hancock","cursive","name","writing"]},{title:"fa-solid fa-signs-post",searchTerms:["directions","directory","map","signage","wayfinding"]},{title:"fa-solid fa-sim-card",searchTerms:["hard drive","hardware","portable","storage","technology","tiny"]},{title:"fa-brands fa-simplybuilt",searchTerms:[]},{title:"fa-solid fa-sink",searchTerms:["bathroom","covid-19","faucet","kitchen","wash"]},{title:"fa-brands fa-sistrix",searchTerms:[]},{title:"fa-solid fa-sitemap",searchTerms:["directory","hierarchy","ia","information architecture","organization"]},{title:"fa-brands fa-sith",searchTerms:[]},{title:"fa-brands fa-sitrox",searchTerms:[]},{title:"fa-brands fa-sketch",searchTerms:["app","design","interface"]},{title:"fa-solid fa-skull",searchTerms:["bones","death","face","fairy tale","monster","skeleton","skull","x-ray","yorick"]},{title:"fa-solid fa-skull-crossbones",searchTerms:["Black Skull and Crossbones","Dungeons & Dragons","alert","bones","crossbones","d","danger","dangerous area","dead","deadly","death","dnd","face","fantasy","halloween","holiday","jolly-roger","monster","pirate","poison","skeleton","skull","skull and crossbones","warning"]},{title:"fa-brands fa-skyatlas",searchTerms:[]},{title:"fa-brands fa-skype",searchTerms:[]},{title:"fa-brands fa-slack",searchTerms:["anchor","hash","hashtag"]},{title:"fa-solid fa-slash",searchTerms:["cancel","close","mute","off","stop","x"]},{title:"fa-solid fa-sleigh",searchTerms:["christmas","claus","fly","holiday","santa","sled","snow","xmas"]},{title:"fa-solid fa-sliders",searchTerms:["adjust","settings","sliders","toggle"]},{title:"fa-brands fa-slideshare",searchTerms:[]},{title:"fa-solid fa-smog",searchTerms:["dragon","fog","haze","pollution","smoke","weather"]},{title:"fa-solid fa-smoking",searchTerms:["cancer","cigarette","nicotine","smoking","smoking status","tobacco"]},{title:"fa-brands fa-snapchat",searchTerms:[]},{title:"fa-solid fa-snowflake",searchTerms:["Heavy Chevron Snowflake","cold","precipitation","rain","snow","snowfall","snowflake","winter"]},{title:"fa-regular fa-snowflake",searchTerms:["Heavy Chevron Snowflake","cold","precipitation","rain","snow","snowfall","snowflake","winter"]},{title:"fa-solid fa-snowman",searchTerms:["cold","decoration","frost","frosty","holiday","snow","snowman","snowman without snow"]},{title:"fa-solid fa-snowplow",searchTerms:["clean up","cold","road","storm","winter"]},{title:"fa-solid fa-soap",searchTerms:["bar","bathing","bubbles","clean","cleaning","covid-19","hygiene","lather","soap","soapdish","wash"]},{title:"fa-solid fa-socks",searchTerms:["business socks","business time","clothing","feet","flight of the conchords","socks","stocking","wednesday"]},{title:"fa-solid fa-solar-panel",searchTerms:["clean","eco-friendly","energy","green","sun"]},{title:"fa-solid fa-sort",searchTerms:["filter","order"]},{title:"fa-solid fa-sort-down",searchTerms:["arrow","descending","filter","order","sort-desc"]},{title:"fa-solid fa-sort-up",searchTerms:["arrow","ascending","filter","order","sort-asc"]},{title:"fa-brands fa-soundcloud",searchTerms:[]},{title:"fa-brands fa-sourcetree",searchTerms:[]},{title:"fa-solid fa-spa",searchTerms:["flora","massage","mindfulness","plant","wellness"]},{title:"fa-brands fa-space-awesome",searchTerms:["adventure","rocket","ship","shuttle"]},{title:"fa-solid fa-spaghetti-monster-flying",searchTerms:["agnosticism","atheism","flying spaghetti monster","fsm"]},{title:"fa-brands fa-speakap",searchTerms:[]},{title:"fa-brands fa-speaker-deck",searchTerms:[]},{title:"fa-solid fa-spell-check",searchTerms:["dictionary","edit","editor","grammar","text"]},{title:"fa-solid fa-spider",searchTerms:["arachnid","bug","charlotte","crawl","eight","halloween","insect","spider"]},{title:"fa-solid fa-spinner",searchTerms:["circle","loading","progress"]},{title:"fa-solid fa-splotch",searchTerms:["Ink","blob","blotch","glob","stain"]},{title:"fa-solid fa-spoon",searchTerms:["cutlery","dining","scoop","silverware","spoon","tableware"]},{title:"fa-brands fa-spotify",searchTerms:[]},{title:"fa-solid fa-spray-can",searchTerms:["Paint","aerosol","design","graffiti","tag"]},{title:"fa-solid fa-spray-can-sparkles",searchTerms:["car","clean","deodorize","fresh","pine","scent"]},{title:"fa-solid fa-square",searchTerms:["Black Square","black medium square","block","box","geometric","shape","square","white medium square"]},{title:"fa-regular fa-square",searchTerms:["Black Square","black medium square","block","box","geometric","shape","square","white medium square"]},{title:"fa-solid fa-square-arrow-up-right",searchTerms:["diagonal","new","open","send","share"]},{title:"fa-brands fa-square-behance",searchTerms:[]},{title:"fa-solid fa-square-caret-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"fa-regular fa-square-caret-down",searchTerms:["arrow","caret-square-o-down","dropdown","expand","menu","more","triangle"]},{title:"fa-solid fa-square-caret-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"fa-regular fa-square-caret-left",searchTerms:["arrow","back","caret-square-o-left","previous","triangle"]},{title:"fa-solid fa-square-caret-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"fa-regular fa-square-caret-right",searchTerms:["arrow","caret-square-o-right","forward","next","triangle"]},{title:"fa-solid fa-square-caret-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"fa-regular fa-square-caret-up",searchTerms:["arrow","caret-square-o-up","collapse","triangle","upload"]},{title:"fa-solid fa-square-check",searchTerms:["accept","agree","box","button","check","check box with check","check mark button","checkmark","confirm","correct","done","mark","ok","select","success","tick","todo","yes","✓"]},{title:"fa-regular fa-square-check",searchTerms:["accept","agree","box","button","check","check box with check","check mark button","checkmark","confirm","correct","done","mark","ok","select","success","tick","todo","yes","✓"]},{title:"fa-brands fa-square-dribbble",searchTerms:[]},{title:"fa-solid fa-square-envelope",searchTerms:["e-mail","email","letter","mail","message","notification","support"]},{title:"fa-brands fa-square-facebook",searchTerms:["social network"]},{title:"fa-brands fa-square-font-awesome",searchTerms:[]},{title:"fa-brands fa-square-font-awesome-stroke",searchTerms:[]},{title:"fa-solid fa-square-full",searchTerms:["black large square","block","blue","blue square","box","brown","brown square","geometric","green","green square","orange","orange square","purple","purple square","red","red square","shape","square","white large square","yellow","yellow square"]},{title:"fa-regular fa-square-full",searchTerms:["black large square","block","blue","blue square","box","brown","brown square","geometric","green","green square","orange","orange square","purple","purple square","red","red square","shape","square","white large square","yellow","yellow square"]},{title:"fa-brands fa-square-git",searchTerms:[]},{title:"fa-brands fa-square-github",searchTerms:["octocat"]},{title:"fa-brands fa-square-gitlab",searchTerms:[]},{title:"fa-brands fa-square-google-plus",searchTerms:["social network"]},{title:"fa-solid fa-square-h",searchTerms:["directions","emergency","hospital","hotel","letter","map"]},{title:"fa-brands fa-square-hacker-news",searchTerms:[]},{title:"fa-brands fa-square-instagram",searchTerms:[]},{title:"fa-brands fa-square-js",searchTerms:[]},{title:"fa-brands fa-square-lastfm",searchTerms:[]},{title:"fa-solid fa-square-minus",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"fa-regular fa-square-minus",searchTerms:["collapse","delete","hide","minify","negative","remove","shape","trash"]},{title:"fa-solid fa-square-nfi",searchTerms:["non-food item","supplies"]},{title:"fa-brands fa-square-odnoklassniki",searchTerms:[]},{title:"fa-solid fa-square-parking",searchTerms:["auto","car","garage","meter","parking"]},{title:"fa-solid fa-square-pen",searchTerms:["edit","pencil-square","update","write"]},{title:"fa-solid fa-square-person-confined",searchTerms:["captivity","confined"]},{title:"fa-solid fa-square-phone",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fa-solid fa-square-phone-flip",searchTerms:["call","earphone","number","support","telephone","voice"]},{title:"fa-brands fa-square-pied-piper",searchTerms:[]},{title:"fa-brands fa-square-pinterest",searchTerms:[]},{title:"fa-solid fa-square-plus",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fa-regular fa-square-plus",searchTerms:["add","create","expand","new","positive","shape"]},{title:"fa-solid fa-square-poll-horizontal",searchTerms:["chart","graph","results","survey","trend","vote","voting"]},{title:"fa-solid fa-square-poll-vertical",searchTerms:["chart","graph","results","survey","trend","vote","voting"]},{title:"fa-brands fa-square-reddit",searchTerms:[]},{title:"fa-solid fa-square-root-variable",searchTerms:["arithmetic","calculus","division","math"]},{title:"fa-solid fa-square-rss",searchTerms:["blog","feed","journal","news","writing"]},{title:"fa-solid fa-square-share-nodes",searchTerms:["forward","save","send","social"]},{title:"fa-brands fa-square-snapchat",searchTerms:[]},{title:"fa-brands fa-square-steam",searchTerms:[]},{title:"fa-brands fa-square-threads",searchTerms:[]},{title:"fa-brands fa-square-tumblr",searchTerms:[]},{title:"fa-brands fa-square-twitter",searchTerms:["social network","tweet"]},{title:"fa-solid fa-square-up-right",searchTerms:["arrow","diagonal","direction","external-link-square","intercardinal","new","northeast","open","share","up-right arrow"]},{title:"fa-brands fa-square-viadeo",searchTerms:[]},{title:"fa-brands fa-square-vimeo",searchTerms:[]},{title:"fa-solid fa-square-virus",searchTerms:["coronavirus","covid-19","disease","flu","infection","pandemic"]},{title:"fa-brands fa-square-whatsapp",searchTerms:[]},{title:"fa-brands fa-square-x-twitter",searchTerms:[" elon"," x","twitter"]},{title:"fa-brands fa-square-xing",searchTerms:[]},{title:"fa-solid fa-square-xmark",searchTerms:["close","cross","cross mark button","incorrect","mark","notice","notification","notify","problem","square","window","wrong","x","×"]},{title:"fa-brands fa-square-youtube",searchTerms:[]},{title:"fa-brands fa-squarespace",searchTerms:[]},{title:"fa-brands fa-stack-exchange",searchTerms:[]},{title:"fa-brands fa-stack-overflow",searchTerms:[]},{title:"fa-brands fa-stackpath",searchTerms:[]},{title:"fa-solid fa-staff-snake",searchTerms:["asclepius","asklepian","health","serpent","wellness"]},{title:"fa-solid fa-stairs",searchTerms:["exit","steps","up"]},{title:"fa-solid fa-stamp",searchTerms:["art","certificate","imprint","rubber","seal"]},{title:"fa-solid fa-stapler",searchTerms:["desktop","milton","office","paperclip","staple"]},{title:"fa-solid fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score","star"]},{title:"fa-regular fa-star",searchTerms:["achievement","award","favorite","important","night","rating","score","star"]},{title:"fa-solid fa-star-and-crescent",searchTerms:["Muslim","islam","muslim","religion","star and crescent"]},{title:"fa-solid fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fa-regular fa-star-half",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fa-solid fa-star-half-stroke",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fa-regular fa-star-half-stroke",searchTerms:["achievement","award","rating","score","star-half-empty","star-half-full"]},{title:"fa-solid fa-star-of-david",searchTerms:["David","Jew","Jewish","jewish","judaism","religion","star","star of David"]},{title:"fa-solid fa-star-of-life",searchTerms:["doctor","emt","first aid","health","medical"]},{title:"fa-brands fa-staylinked",searchTerms:[]},{title:"fa-brands fa-steam",searchTerms:[]},{title:"fa-brands fa-steam-symbol",searchTerms:[]},{title:"fa-solid fa-sterling-sign",searchTerms:["Pound Sign","currency"]},{title:"fa-solid fa-stethoscope",searchTerms:["covid-19","diagnosis","doctor","general practitioner","heart","hospital","infirmary","medicine","office","outpatient","stethoscope"]},{title:"fa-brands fa-sticker-mule",searchTerms:[]},{title:"fa-solid fa-stop",searchTerms:["block","box","square","stop","stop button"]},{title:"fa-solid fa-stopwatch",searchTerms:["clock","reminder","stopwatch","time"]},{title:"fa-solid fa-stopwatch-20",searchTerms:["ABCs","countdown","covid-19","happy birthday","i will survive","reminder","seconds","time","timer"]},{title:"fa-solid fa-store",searchTerms:["bodega","building","buy","market","purchase","shopping","store"]},{title:"fa-solid fa-store-slash",searchTerms:["building","buy","closed","covid-19","purchase","shopping"]},{title:"fa-brands fa-strava",searchTerms:[]},{title:"fa-solid fa-street-view",searchTerms:["directions","location","map","navigation"]},{title:"fa-solid fa-strikethrough",searchTerms:["cancel","edit","font","format","text","type"]},{title:"fa-brands fa-stripe",searchTerms:[]},{title:"fa-brands fa-stripe-s",searchTerms:[]},{title:"fa-solid fa-stroopwafel",searchTerms:["caramel","cookie","dessert","sweets","waffle"]},{title:"fa-brands fa-stubber",searchTerms:[]},{title:"fa-brands fa-studiovinari",searchTerms:[]},{title:"fa-brands fa-stumbleupon",searchTerms:[]},{title:"fa-brands fa-stumbleupon-circle",searchTerms:[]},{title:"fa-solid fa-subscript",searchTerms:["edit","font","format","text","type"]},{title:"fa-solid fa-suitcase",searchTerms:["baggage","luggage","move","packing","suitcase","travel","trip"]},{title:"fa-solid fa-suitcase-medical",searchTerms:["first aid","firstaid","health","help","medical","supply","support"]},{title:"fa-solid fa-suitcase-rolling",searchTerms:["baggage","luggage","move","suitcase","travel","trip"]},{title:"fa-solid fa-sun",searchTerms:["bright","brighten","contrast","day","lighter","rays","sol","solar","star","sun","sunny","weather"]},{title:"fa-regular fa-sun",searchTerms:["bright","brighten","contrast","day","lighter","rays","sol","solar","star","sun","sunny","weather"]},{title:"fa-solid fa-sun-plant-wilt",searchTerms:["arid","droop","drought"]},{title:"fa-brands fa-superpowers",searchTerms:[]},{title:"fa-solid fa-superscript",searchTerms:["edit","exponential","font","format","text","type"]},{title:"fa-brands fa-supple",searchTerms:[]},{title:"fa-brands fa-suse",searchTerms:["linux","operating system","os"]},{title:"fa-solid fa-swatchbook",searchTerms:["Pantone","color","design","hue","palette"]},{title:"fa-brands fa-swift",searchTerms:[]},{title:"fa-brands fa-symfony",searchTerms:[]},{title:"fa-solid fa-synagogue",searchTerms:["Jew","Jewish","building","jewish","judaism","religion","star of david","synagogue","temple"]},{title:"fa-solid fa-syringe",searchTerms:["covid-19","doctor","immunizations","medical","medicine","needle","shot","sick","syringe","vaccinate","vaccine"]},{title:"fa-solid fa-t",searchTerms:["Latin Capital Letter T","Latin Small Letter T","letter"]},{title:"fa-solid fa-table",searchTerms:["data","excel","spreadsheet"]},{title:"fa-solid fa-table-cells",searchTerms:["blocks","boxes","grid","squares"]},{title:"fa-solid fa-table-cells-large",searchTerms:["blocks","boxes","grid","squares"]},{title:"fa-solid fa-table-columns",searchTerms:["browser","dashboard","organize","panes","split"]},{title:"fa-solid fa-table-list",searchTerms:["checklist","completed","done","finished","ol","todo","ul"]},{title:"fa-solid fa-table-tennis-paddle-ball",searchTerms:["ball","bat","game","paddle","ping pong","table tennis"]},{title:"fa-solid fa-tablet",searchTerms:["device","kindle","screen"]},{title:"fa-solid fa-tablet-button",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fa-solid fa-tablet-screen-button",searchTerms:["apple","device","ipad","kindle","screen"]},{title:"fa-solid fa-tablets",searchTerms:["drugs","medicine","pills","prescription"]},{title:"fa-solid fa-tachograph-digital",searchTerms:["data","distance","speed","tachometer"]},{title:"fa-solid fa-tag",searchTerms:["discount","labe","label","price","shopping"]},{title:"fa-solid fa-tags",searchTerms:["discount","label","price","shopping"]},{title:"fa-solid fa-tape",searchTerms:["design","package","sticky"]},{title:"fa-solid fa-tarp",searchTerms:["protection","tarp","tent","waterproof"]},{title:"fa-solid fa-tarp-droplet",searchTerms:["protection","tarp","tent","waterproof"]},{title:"fa-solid fa-taxi",searchTerms:["cab","cabbie","car","car service","lyft","machine","oncoming","oncoming taxi","taxi","transportation","travel","uber","vehicle"]},{title:"fa-brands fa-teamspeak",searchTerms:[]},{title:"fa-solid fa-teeth",searchTerms:["bite","dental","dentist","gums","mouth","smile","tooth"]},{title:"fa-solid fa-teeth-open",searchTerms:["dental","dentist","gums bite","mouth","smile","tooth"]},{title:"fa-brands fa-telegram",searchTerms:[]},{title:"fa-solid fa-temperature-arrow-down",searchTerms:["air conditioner","cold","heater","mercury","thermometer","winter"]},{title:"fa-solid fa-temperature-arrow-up",searchTerms:["air conditioner","cold","heater","mercury","thermometer","winter"]},{title:"fa-solid fa-temperature-empty",searchTerms:["cold","mercury","status","temperature"]},{title:"fa-solid fa-temperature-full",searchTerms:["fever","hot","mercury","status","temperature"]},{title:"fa-solid fa-temperature-half",searchTerms:["mercury","status","temperature","thermometer","weather"]},{title:"fa-solid fa-temperature-high",searchTerms:["cook","covid-19","mercury","summer","thermometer","warm"]},{title:"fa-solid fa-temperature-low",searchTerms:["cold","cool","covid-19","mercury","thermometer","winter"]},{title:"fa-solid fa-temperature-quarter",searchTerms:["mercury","status","temperature"]},{title:"fa-solid fa-temperature-three-quarters",searchTerms:["mercury","status","temperature"]},{title:"fa-brands fa-tencent-weibo",searchTerms:[]},{title:"fa-solid fa-tenge-sign",searchTerms:["Tenge Sign","currency"]},{title:"fa-solid fa-tent",searchTerms:["bivouac","campground","refugee","shelter","tent"]},{title:"fa-solid fa-tent-arrow-down-to-line",searchTerms:["permanent","refugee","shelter"]},{title:"fa-solid fa-tent-arrow-left-right",searchTerms:["refugee","shelter","transition"]},{title:"fa-solid fa-tent-arrow-turn-left",searchTerms:["refugee","shelter","temporary"]},{title:"fa-solid fa-tent-arrows-down",searchTerms:["refugee","shelter","spontaneous"]},{title:"fa-solid fa-tents",searchTerms:["bivouac","campground","refugee","shelter","tent"]},{title:"fa-solid fa-terminal",searchTerms:["code","coding","command","console","development","prompt","terminal"]},{title:"fa-solid fa-text-height",searchTerms:["edit","font","format","text","type"]},{title:"fa-solid fa-text-slash",searchTerms:["cancel","font","format","remove","style","text"]},{title:"fa-solid fa-text-width",searchTerms:["edit","font","format","text","type"]},{title:"fa-brands fa-the-red-yeti",searchTerms:[]},{title:"fa-brands fa-themeco",searchTerms:[]},{title:"fa-brands fa-themeisle",searchTerms:[]},{title:"fa-solid fa-thermometer",searchTerms:["covid-19","mercury","status","temperature"]},{title:"fa-brands fa-think-peaks",searchTerms:[]},{title:"fa-brands fa-threads",searchTerms:[]},{title:"fa-solid fa-thumbs-down",searchTerms:["-1","disagree","disapprove","dislike","down","hand","social","thumb","thumbs down","thumbs-o-down"]},{title:"fa-regular fa-thumbs-down",searchTerms:["-1","disagree","disapprove","dislike","down","hand","social","thumb","thumbs down","thumbs-o-down"]},{title:"fa-solid fa-thumbs-up",searchTerms:["+1","agree","approve","favorite","hand","like","ok","okay","social","success","thumb","thumbs up","thumbs-o-up","up","yes","you got it dude"]},{title:"fa-regular fa-thumbs-up",searchTerms:["+1","agree","approve","favorite","hand","like","ok","okay","social","success","thumb","thumbs up","thumbs-o-up","up","yes","you got it dude"]},{title:"fa-solid fa-thumbtack",searchTerms:["Black Pushpin","coordinates","location","marker","pin","pushpin","thumb-tack"]},{title:"fa-solid fa-ticket",searchTerms:["admission","admission tickets","movie","pass","support","ticket"]},{title:"fa-solid fa-ticket-simple",searchTerms:["movie","pass","support","ticket"]},{title:"fa-brands fa-tiktok",searchTerms:[]},{title:"fa-solid fa-timeline",searchTerms:["chronological","deadline","history","linear"]},{title:"fa-solid fa-toggle-off",searchTerms:["button","off","on","switch"]},{title:"fa-solid fa-toggle-on",searchTerms:["button","off","on","switch"]},{title:"fa-solid fa-toilet",searchTerms:["bathroom","flush","john","loo","pee","plumbing","poop","porcelain","potty","restroom","throne","toile","toilet","washroom","waste","wc"]},{title:"fa-solid fa-toilet-paper",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","paper towels","prank","privy","restroom","roll","roll of paper","toilet","toilet paper","wipe"]},{title:"fa-solid fa-toilet-paper-slash",searchTerms:["bathroom","covid-19","halloween","holiday","lavatory","leaves","prank","privy","restroom","roll","toilet","trouble","ut oh","wipe"]},{title:"fa-solid fa-toilet-portable",searchTerms:["outhouse","toilet"]},{title:"fa-solid fa-toilets-portable",searchTerms:["outhouse","toilet"]},{title:"fa-solid fa-toolbox",searchTerms:["admin","chest","container","fix","mechanic","repair","settings","tool","toolbox","tools"]},{title:"fa-solid fa-tooth",searchTerms:["bicuspid","dental","dentist","molar","mouth","teeth","tooth"]},{title:"fa-solid fa-torii-gate",searchTerms:["building","religion","shinto","shinto shrine","shintoism","shrine"]},{title:"fa-solid fa-tornado",searchTerms:["cloud","cyclone","dorothy","landspout","tornado","toto","twister","vortext","waterspout","weather","whirlwind"]},{title:"fa-solid fa-tower-broadcast",searchTerms:["airwaves","antenna","communication","emergency","radio","reception","waves"]},{title:"fa-solid fa-tower-cell",searchTerms:["airwaves","antenna","communication","radio","reception","waves"]},{title:"fa-solid fa-tower-observation",searchTerms:["fire tower","view"]},{title:"fa-solid fa-tractor",searchTerms:["agriculture","farm","tractor","vehicle"]},{title:"fa-brands fa-trade-federation",searchTerms:[]},{title:"fa-solid fa-trademark",searchTerms:["copyright","mark","register","symbol","tm","trade mark","trademark"]},{title:"fa-solid fa-traffic-light",searchTerms:["direction","light","road","signal","traffic","travel","vertical traffic light"]},{title:"fa-solid fa-trailer",searchTerms:["carry","haul","moving","travel"]},{title:"fa-solid fa-train",searchTerms:["bullet","commute","locomotive","railway","subway","train"]},{title:"fa-solid fa-train-subway",searchTerms:["machine","railway","train","transportation","vehicle"]},{title:"fa-solid fa-train-tram",searchTerms:["crossing","machine","mountains","seasonal","tram","transportation","trolleybus"]},{title:"fa-solid fa-transgender",searchTerms:["female","gender","intersex","male","transgender","transgender symbol"]},{title:"fa-solid fa-trash",searchTerms:["delete","garbage","hide","remove"]},{title:"fa-solid fa-trash-arrow-up",searchTerms:["back","control z","delete","garbage","hide","oops","remove","undo"]},{title:"fa-solid fa-trash-can",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"fa-regular fa-trash-can",searchTerms:["delete","garbage","hide","remove","trash-o"]},{title:"fa-solid fa-trash-can-arrow-up",searchTerms:["back","control z","delete","garbage","hide","oops","remove","undo"]},{title:"fa-solid fa-tree",searchTerms:["bark","evergreen tree","fall","flora","forest","nature","plant","seasonal","tree"]},{title:"fa-solid fa-tree-city",searchTerms:["building","city","urban"]},{title:"fa-brands fa-trello",searchTerms:["atlassian"]},{title:"fa-solid fa-triangle-exclamation",searchTerms:["alert","danger","error","important","notice","notification","notify","problem","warnin","warning"]},{title:"fa-solid fa-trophy",searchTerms:["achievement","award","cup","game","prize","trophy","winner"]},{title:"fa-solid fa-trowel",searchTerms:["build","construction","tool"]},{title:"fa-solid fa-trowel-bricks",searchTerms:["build","construction","reconstruction","tool"]},{title:"fa-solid fa-truck",searchTerms:["Black Truck","cargo","delivery","delivery truck","shipping","truck","vehicle"]},{title:"fa-solid fa-truck-arrow-right",searchTerms:["access","fast","shipping","transport"]},{title:"fa-solid fa-truck-droplet",searchTerms:["thirst","truck","water","water supply"]},{title:"fa-solid fa-truck-fast",searchTerms:["express","fedex","mail","overnight","package","ups"]},{title:"fa-solid fa-truck-field",searchTerms:["supplies","truck"]},{title:"fa-solid fa-truck-field-un",searchTerms:["supplies","truck","united nations"]},{title:"fa-solid fa-truck-front",searchTerms:["shuttle","truck","van"]},{title:"fa-solid fa-truck-medical",searchTerms:["ambulance","clinic","covid-19","emergency","emt","er","help","hospital","mobile","support","vehicle"]},{title:"fa-solid fa-truck-monster",searchTerms:["offroad","vehicle","wheel"]},{title:"fa-solid fa-truck-moving",searchTerms:["cargo","inventory","rental","vehicle"]},{title:"fa-solid fa-truck-pickup",searchTerms:["cargo","pick-up","pickup","pickup truck","truck","vehicle"]},{title:"fa-solid fa-truck-plane",searchTerms:["airplane","plane","transportation","truck","vehicle"]},{title:"fa-solid fa-truck-ramp-box",searchTerms:["box","cargo","delivery","inventory","moving","rental","vehicle"]},{title:"fa-solid fa-tty",searchTerms:["communication","deaf","telephone","teletypewriter","text"]},{title:"fa-brands fa-tumblr",searchTerms:[]},{title:"fa-solid fa-turkish-lira-sign",searchTerms:["Turkish Lira Sign","currency"]},{title:"fa-solid fa-turn-down",searchTerms:["arrow","down","level-down","right arrow curving down"]},{title:"fa-solid fa-turn-up",searchTerms:["arrow","level-up","right arrow curving up"]},{title:"fa-solid fa-tv",searchTerms:["computer","display","monitor","television"]},{title:"fa-brands fa-twitch",searchTerms:[]},{title:"fa-brands fa-twitter",searchTerms:["social network","tweet"]},{title:"fa-brands fa-typo3",searchTerms:[]},{title:"fa-solid fa-u",searchTerms:["Latin Capital Letter U","Latin Small Letter U","letter"]},{title:"fa-brands fa-uber",searchTerms:[]},{title:"fa-brands fa-ubuntu",searchTerms:["linux","operating system","os"]},{title:"fa-brands fa-uikit",searchTerms:[]},{title:"fa-brands fa-umbraco",searchTerms:[]},{title:"fa-solid fa-umbrella",searchTerms:["protection","rain","storm","wet"]},{title:"fa-solid fa-umbrella-beach",searchTerms:["beach","beach with umbrella","protection","recreation","sand","shade","summer","sun","umbrella"]},{title:"fa-brands fa-uncharted",searchTerms:[]},{title:"fa-solid fa-underline",searchTerms:["edit","emphasis","format","text","writing"]},{title:"fa-brands fa-uniregistry",searchTerms:[]},{title:"fa-brands fa-unity",searchTerms:[]},{title:"fa-solid fa-universal-access",searchTerms:["users-people"]},{title:"fa-solid fa-unlock",searchTerms:["admin","lock","open","password","private","protect","unlock","unlocked"]},{title:"fa-solid fa-unlock-keyhole",searchTerms:["admin","lock","password","private","protect"]},{title:"fa-brands fa-unsplash",searchTerms:[]},{title:"fa-brands fa-untappd",searchTerms:[]},{title:"fa-solid fa-up-down",searchTerms:["Up Down Black Arrow","arrow","arrows-v","expand","portrait","resize","tall","up-down arrow","vertical"]},{title:"fa-solid fa-up-down-left-right",searchTerms:["arrow","arrows","bigger","enlarge","expand","fullscreen","move","position","reorder","resize"]},{title:"fa-solid fa-up-long",searchTerms:["long-arrow-up","upload"]},{title:"fa-solid fa-up-right-and-down-left-from-center",searchTerms:["arrows","bigger","enlarge","fullscreen","resize"]},{title:"fa-solid fa-up-right-from-square",searchTerms:["external-link","new","open","share"]},{title:"fa-solid fa-upload",searchTerms:["hard drive","import","publish"]},{title:"fa-brands fa-ups",searchTerms:["United Parcel Service","package","shipping"]},{title:"fa-brands fa-usb",searchTerms:[]},{title:"fa-solid fa-user",searchTerms:["adult","bust","bust in silhouette","gender-neutral","person","profile","silhouette","unspecified gender","users-people"]},{title:"fa-regular fa-user",searchTerms:["adult","bust","bust in silhouette","gender-neutral","person","profile","silhouette","unspecified gender","users-people"]},{title:"fa-solid fa-user-astronaut",searchTerms:["avatar","clothing","cosmonaut","nasa","space","suit"]},{title:"fa-solid fa-user-check",searchTerms:["users-people"]},{title:"fa-solid fa-user-clock",searchTerms:["users-people"]},{title:"fa-solid fa-user-doctor",searchTerms:["covid-19","health","job","medical","nurse","occupation","physician","profile","surgeon","worker"]},{title:"fa-solid fa-user-gear",searchTerms:["users-people"]},{title:"fa-solid fa-user-graduate",searchTerms:["users-people"]},{title:"fa-solid fa-user-group",searchTerms:["bust","busts in silhouette","silhouette","users-people"]},{title:"fa-solid fa-user-injured",searchTerms:["users-people"]},{title:"fa-solid fa-user-large",searchTerms:["users-people"]},{title:"fa-solid fa-user-large-slash",searchTerms:["users-people"]},{title:"fa-solid fa-user-lock",searchTerms:["users-people"]},{title:"fa-solid fa-user-minus",searchTerms:["delete","negative","remove"]},{title:"fa-solid fa-user-ninja",searchTerms:["assassin","avatar","dangerous","deadly","fighter","hidden","ninja","sneaky","stealth"]},{title:"fa-solid fa-user-nurse",searchTerms:["covid-19","doctor","health","md","medical","midwife","physician","practitioner","surgeon","worker"]},{title:"fa-solid fa-user-pen",searchTerms:["users-people"]},{title:"fa-solid fa-user-plus",searchTerms:["add","avatar","positive","sign up","signup","team"]},{title:"fa-solid fa-user-secret",searchTerms:["detective","sleuth","spy","users-people"]},{title:"fa-solid fa-user-shield",searchTerms:["protect","safety"]},{title:"fa-solid fa-user-slash",searchTerms:["ban","delete","remove"]},{title:"fa-solid fa-user-tag",searchTerms:["users-people"]},{title:"fa-solid fa-user-tie",searchTerms:["avatar","business","clothing","formal","professional","suit"]},{title:"fa-solid fa-user-xmark",searchTerms:["archive","delete","remove","x"]},{title:"fa-solid fa-users",searchTerms:["users-people"]},{title:"fa-solid fa-users-between-lines",searchTerms:["covered","group","people"]},{title:"fa-solid fa-users-gear",searchTerms:["users-people"]},{title:"fa-solid fa-users-line",searchTerms:["group","need","people"]},{title:"fa-solid fa-users-rays",searchTerms:["affected","focused","group","people"]},{title:"fa-solid fa-users-rectangle",searchTerms:["focus","group","people","reached"]},{title:"fa-solid fa-users-slash",searchTerms:["users-people"]},{title:"fa-solid fa-users-viewfinder",searchTerms:["focus","group","people","targeted"]},{title:"fa-brands fa-usps",searchTerms:["american","package","shipping","usa"]},{title:"fa-brands fa-ussunnah",searchTerms:[]},{title:"fa-solid fa-utensils",searchTerms:["cooking","cutlery","dining","dinner","eat","food","fork","fork and knife","knife","restaurant"]},{title:"fa-solid fa-v",searchTerms:["Latin Capital Letter V","Latin Small Letter V","letter"]},{title:"fa-brands fa-vaadin",searchTerms:[]},{title:"fa-solid fa-van-shuttle",searchTerms:["airport","bus","machine","minibus","public-transportation","transportation","travel","vehicle"]},{title:"fa-solid fa-vault",searchTerms:["bank","important","lock","money","safe"]},{title:"fa-solid fa-vector-square",searchTerms:["anchors","lines","object","render","shape"]},{title:"fa-solid fa-venus",searchTerms:["female","female sign","gender","woman"]},{title:"fa-solid fa-venus-double",searchTerms:["Doubled Female Sign","female","gender","lesbian"]},{title:"fa-solid fa-venus-mars",searchTerms:["Interlocked Female and Male Sign","female","gender","heterosexual","male"]},{title:"fa-solid fa-vest",searchTerms:["biker","fashion","style"]},{title:"fa-solid fa-vest-patches",searchTerms:["biker","fashion","style"]},{title:"fa-brands fa-viacoin",searchTerms:[]},{title:"fa-brands fa-viadeo",searchTerms:[]},{title:"fa-solid fa-vial",searchTerms:["ampule","chemist","chemistry","experiment","lab","sample","science","test","test tube"]},{title:"fa-solid fa-vial-circle-check",searchTerms:["ampule","chemist","chemistry","not affected","ok","okay","success","test tube","tube","vaccine"]},{title:"fa-solid fa-vial-virus",searchTerms:["ampule","coronavirus","covid-19","flue","infection","lab","laboratory","pandemic","test","test tube","vaccine"]},{title:"fa-solid fa-vials",searchTerms:["ampule","experiment","lab","sample","science","test","test tube"]},{title:"fa-brands fa-viber",searchTerms:[]},{title:"fa-solid fa-video",searchTerms:["camera","film","movie","record","video-camera"]},{title:"fa-solid fa-video-slash",searchTerms:["add","create","film","new","positive","record","video"]},{title:"fa-solid fa-vihara",searchTerms:["buddhism","buddhist","building","monastery"]},{title:"fa-brands fa-vimeo",searchTerms:[]},{title:"fa-brands fa-vimeo-v",searchTerms:["vimeo"]},{title:"fa-brands fa-vine",searchTerms:[]},{title:"fa-solid fa-virus",searchTerms:["bug","coronavirus","covid-19","flu","health","infection","pandemic","sick","vaccine","viral"]},{title:"fa-solid fa-virus-covid",searchTerms:["bug","covid-19","flu","health","infection","pandemic","vaccine","viral","virus"]},{title:"fa-solid fa-virus-covid-slash",searchTerms:["bug","covid-19","flu","health","infection","pandemic","vaccine","viral","virus"]},{title:"fa-solid fa-virus-slash",searchTerms:["bug","coronavirus","covid-19","cure","eliminate","flu","health","infection","pandemic","sick","vaccine","viral"]},{title:"fa-solid fa-viruses",searchTerms:["bugs","coronavirus","covid-19","flu","health","infection","multiply","pandemic","sick","spread","vaccine","viral"]},{title:"fa-brands fa-vk",searchTerms:[]},{title:"fa-brands fa-vnv",searchTerms:[]},{title:"fa-solid fa-voicemail",searchTerms:["answer","inbox","message","phone"]},{title:"fa-solid fa-volcano",searchTerms:["caldera","eruption","lava","magma","mountain","smoke","volcano"]},{title:"fa-solid fa-volleyball",searchTerms:["ball","beach","game","olympics","sport","volleyball"]},{title:"fa-solid fa-volume-high",searchTerms:["audio","higher","loud","louder","music","sound","speaker","speaker high volume"]},{title:"fa-solid fa-volume-low",searchTerms:["audio","lower","music","quieter","soft","sound","speaker","speaker low volume"]},{title:"fa-solid fa-volume-off",searchTerms:["audio","ban","music","mute","quiet","silent","sound"]},{title:"fa-solid fa-volume-xmark",searchTerms:["audio","music","quiet","sound","speaker"]},{title:"fa-solid fa-vr-cardboard",searchTerms:["3d","augment","google","reality","virtual"]},{title:"fa-brands fa-vuejs",searchTerms:[]},{title:"fa-solid fa-w",searchTerms:["Latin Capital Letter W","Latin Small Letter W","letter"]},{title:"fa-solid fa-walkie-talkie",searchTerms:["communication","copy","intercom","over","portable","radio","two way radio"]},{title:"fa-solid fa-wallet",searchTerms:["billfold","cash","currency","money"]},{title:"fa-solid fa-wand-magic",searchTerms:["autocomplete","automatic","mage","magic","spell","wand","witch","wizard"]},{title:"fa-solid fa-wand-magic-sparkles",searchTerms:["auto","magic","magic wand","trick","witch","wizard"]},{title:"fa-solid fa-wand-sparkles",searchTerms:["autocomplete","automatic","fantasy","halloween","holiday","magic","weapon","witch","wizard"]},{title:"fa-solid fa-warehouse",searchTerms:["building","capacity","garage","inventory","storage"]},{title:"fa-brands fa-watchman-monitoring",searchTerms:[]},{title:"fa-solid fa-water",searchTerms:["lake","liquid","ocean","sea","swim","wet"]},{title:"fa-solid fa-water-ladder",searchTerms:["ladder","recreation","swim","water"]},{title:"fa-solid fa-wave-square",searchTerms:["frequency","pulse","signal"]},{title:"fa-brands fa-waze",searchTerms:[]},{title:"fa-brands fa-weebly",searchTerms:[]},{title:"fa-brands fa-weibo",searchTerms:[]},{title:"fa-solid fa-weight-hanging",searchTerms:["anvil","heavy","measurement"]},{title:"fa-solid fa-weight-scale",searchTerms:["health","measurement","scale","weight"]},{title:"fa-brands fa-weixin",searchTerms:[]},{title:"fa-brands fa-whatsapp",searchTerms:[]},{title:"fa-solid fa-wheat-awn",searchTerms:["agriculture","autumn","fall","farming","grain"]},{title:"fa-solid fa-wheat-awn-circle-exclamation",searchTerms:["affected","famine","food","gluten","hunger","starve","straw"]},{title:"fa-solid fa-wheelchair",searchTerms:["users-people"]},{title:"fa-solid fa-wheelchair-move",searchTerms:["access","handicap","impairment","physical","wheelchair symbol"]},{title:"fa-solid fa-whiskey-glass",searchTerms:["alcohol","bar","beverage","bourbon","drink","glass","liquor","neat","rye","scotch","shot","tumbler","tumbler glass","whisky"]},{title:"fa-brands fa-whmcs",searchTerms:[]},{title:"fa-solid fa-wifi",searchTerms:["connection","hotspot","internet","network","wireless"]},{title:"fa-brands fa-wikipedia-w",searchTerms:[]},{title:"fa-solid fa-wind",searchTerms:["air","blow","breeze","fall","seasonal","weather"]},{title:"fa-solid fa-window-maximize",searchTerms:["Maximize","browser","computer","development","expand"]},{title:"fa-regular fa-window-maximize",searchTerms:["Maximize","browser","computer","development","expand"]},{title:"fa-solid fa-window-minimize",searchTerms:["Minimize","browser","collapse","computer","development"]},{title:"fa-regular fa-window-minimize",searchTerms:["Minimize","browser","collapse","computer","development"]},{title:"fa-solid fa-window-restore",searchTerms:["browser","computer","development"]},{title:"fa-regular fa-window-restore",searchTerms:["browser","computer","development"]},{title:"fa-brands fa-windows",searchTerms:["microsoft","operating system","os"]},{title:"fa-solid fa-wine-bottle",searchTerms:["alcohol","beverage","cabernet","drink","glass","grapes","merlot","sauvignon"]},{title:"fa-solid fa-wine-glass",searchTerms:["alcohol","bar","beverage","cabernet","drink","glass","grapes","merlot","sauvignon","wine","wine glass"]},{title:"fa-solid fa-wine-glass-empty",searchTerms:["alcohol","beverage","cabernet","drink","grapes","merlot","sauvignon"]},{title:"fa-brands fa-wirsindhandwerk",searchTerms:[]},{title:"fa-brands fa-wix",searchTerms:[]},{title:"fa-brands fa-wizards-of-the-coast",searchTerms:["Dungeons & Dragons","d","dnd","fantasy","game","gaming","tabletop"]},{title:"fa-brands fa-wodu",searchTerms:[]},{title:"fa-brands fa-wolf-pack-battalion",searchTerms:[]},{title:"fa-solid fa-won-sign",searchTerms:["Won Sign","currency"]},{title:"fa-brands fa-wordpress",searchTerms:[]},{title:"fa-brands fa-wordpress-simple",searchTerms:[]},{title:"fa-solid fa-worm",searchTerms:["dirt","garden","worm","wriggle"]},{title:"fa-brands fa-wpbeginner",searchTerms:[]},{title:"fa-brands fa-wpexplorer",searchTerms:[]},{title:"fa-brands fa-wpforms",searchTerms:[]},{title:"fa-brands fa-wpressr",searchTerms:["rendact"]},{title:"fa-solid fa-wrench",searchTerms:["construction","fix","mechanic","plumbing","settings","spanner","tool","update","wrench"]},{title:"fa-solid fa-x",searchTerms:["Latin Capital Letter X","Latin Small Letter X","letter"]},{title:"fa-solid fa-x-ray",searchTerms:["health","medical","radiological images","radiology","skeleton"]},{title:"fa-brands fa-x-twitter",searchTerms:[" elon"," twitter"," x"]},{title:"fa-brands fa-xbox",searchTerms:[]},{title:"fa-brands fa-xing",searchTerms:[]},{title:"fa-solid fa-xmark",searchTerms:["Cancellation X","Multiplication Sign","Multiplication X","cancel","close","cross","cross mark","error","exit","incorrect","mark","multiplication","multiply","notice","notification","notify","problem","sign","wrong","x","×"]},{title:"fa-solid fa-xmarks-lines",searchTerms:["barricade","barrier","fence","poison","roadblock"]},{title:"fa-solid fa-y",searchTerms:["Latin Capital Letter Y","Latin Small Letter Y","letter","yay","yes"]},{title:"fa-brands fa-y-combinator",searchTerms:[]},{title:"fa-brands fa-yahoo",searchTerms:[]},{title:"fa-brands fa-yammer",searchTerms:[]},{title:"fa-brands fa-yandex",searchTerms:[]},{title:"fa-brands fa-yandex-international",searchTerms:[]},{title:"fa-brands fa-yarn",searchTerms:[]},{title:"fa-brands fa-yelp",searchTerms:[]},{title:"fa-solid fa-yen-sign",searchTerms:["Yen Sign","currency"]},{title:"fa-solid fa-yin-yang",searchTerms:["daoism","opposites","religion","tao","taoism","taoist","yang","yin","yin yang"]},{title:"fa-brands fa-yoast",searchTerms:[]},{title:"fa-brands fa-youtube",searchTerms:["film","video","youtube-play","youtube-square"]},{title:"fa-solid fa-z",searchTerms:["Latin Capital Letter Z","Latin Small Letter Z","letter"]},{title:"fa-brands fa-zhihu",searchTerms:[]}]})}); \ No newline at end of file diff --git a/vendor/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php b/vendor/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php index aa7c9ea..830b602 100644 --- a/vendor/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php +++ b/vendor/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php @@ -25,17 +25,6 @@ * A Class to be able to change settings for Font Awesome. * * Class WP_Font_Awesome_Settings - * @since 1.0.10 Now able to pass wp.org theme check. - * @since 1.0.11 Font Awesome Pro now supported. - * @since 1.0.11 Font Awesome Kits now supported. - * @since 1.0.13 RTL language support added. - * @since 1.0.14 Warning added for v6 pro requires kit and will now not work if official FA plugin installed. - * @since 1.0.15 Font Awesome will now load in the FSE if enable din the backend. - * @since 1.1.0 Option added to load FontAwesome locally. - * @since 1.1.1 Requires to re-save settings to load locally when option does not exists - FIXED. - * @since 1.1.2 Bumped the latest version to 6.3.0 - CHANGED. - * @ver 1.0.15 - * @todo decide how to implement textdomain */ class WP_Font_Awesome_Settings { @@ -44,7 +33,7 @@ class WP_Font_Awesome_Settings { * * @var string */ - public $version = '1.1.2'; + public $version = '1.1.7'; /** * Class textdomain. @@ -58,7 +47,7 @@ class WP_Font_Awesome_Settings { * * @var string */ - public $latest = "6.3.0"; + public $latest = "6.4.2"; /** * The title. @@ -101,6 +90,7 @@ public static function instance() { if ( is_admin() ) { add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); + add_action( 'admin_init', array( self::$instance, 'constants' ) ); add_action( 'admin_notices', array( self::$instance, 'admin_notices' ) ); } @@ -110,6 +100,55 @@ public static function instance() { return self::$instance; } + /** + * Define any constants that may be needed by other packages. + * + * @return void + */ + public function constants(){ + + // register iconpicker constant + if ( ! defined( 'FAS_ICONPICKER_JS_URL' ) ) { + $url = $this->get_path_url(); + $version = $this->settings['version']; + + if( !$version || version_compare($version,'5.999','>')){ + $url .= 'assets/js/fa-iconpicker-v6.min.js'; + }else{ + $url .= 'assets/js/fa-iconpicker-v5.min.js'; + } + + define( 'FAS_ICONPICKER_JS_URL', $url ); + + } + + // Set a constant if pro enbaled + if ( ! defined( 'FAS_PRO' ) && $this->settings['pro'] ) { + define( 'FAS_PRO', true ); + } + } + + /** + * Get the url path to the current folder. + * + * @return string + */ + public function get_path_url() { + $content_dir = wp_normalize_path( untrailingslashit( WP_CONTENT_DIR ) ); + $content_url = untrailingslashit( WP_CONTENT_URL ); + + // Replace http:// to https://. + if ( strpos( $content_url, 'http://' ) === 0 && strpos( plugins_url(), 'https://' ) === 0 ) { + $content_url = str_replace( 'http://', 'https://', $content_url ); + } + + // Check if we are inside a plugin + $file_dir = str_replace( "/includes", "", wp_normalize_path( dirname( __FILE__ ) ) ); + $url = str_replace( $content_dir, $content_url, $file_dir ); + + return trailingslashit( $url ); + } + /** * Initiate the settings and add the required action hooks. * @@ -122,22 +161,27 @@ public function init() { $this->settings = $this->get_settings(); - // check if the official plugin is active and use that instead if so. + // Check if the official plugin is active and use that instead if so. if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) { + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { + add_action( 'admin_head', array( $this, 'add_generator' ), 99 ); + } - if ( $this->settings['type'] == 'CSS' ) { + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { + add_action( 'wp_head', array( $this, 'add_generator' ), 99 ); + } + if ( $this->settings['type'] == 'CSS' ) { if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); + //add_action( 'wp_footer', array( $this, 'enqueue_style' ), 5000 ); // not sure why this was added, seems to break frontend } if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); add_filter( 'block_editor_settings_all', array( $this, 'enqueue_editor_styles' ), 10, 2 ); } - } else { - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); } @@ -367,7 +411,7 @@ public function get_settings() { */ public function settings_page() { if ( ! current_user_can( 'manage_options' ) ) { - wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); + wp_die( __( 'You do not have sufficient permissions to access this page.', 'ayecode-connect' ) ); } // a hidden way to force the update of the version number via api instead of waiting the 48 hours @@ -414,30 +458,30 @@ public function settings_page() { ?> settings['type'] != 'KIT' && ! empty( $this->settings['local'] ) && empty( $this->settings['pro'] ) ) { ?> has_local() ) { ?> -

              +

              -

              +

              - + - + - + - + + for="wpfas-pro"> - - - - + + + + + for="wpfas-dequeue"> @@ -545,12 +589,12 @@ public function settings_page() { -

              +

              -
              version ); ?>
              +
              version ); ?>
              -

              +

              -

              ","" ); ?>

              +

              ","" ); ?>

              download_package( $version, $value ); if ( is_wp_error( $response ) ) { - add_settings_error( 'general', 'fontawesome_download', __( 'ERROR:', 'font-awesome-settings' ) . ' ' . $response->get_error_message(), 'error' ); + add_settings_error( 'general', 'fontawesome_download', __( 'ERROR:', 'ayecode-connect' ) . ' ' . $response->get_error_message(), 'error' ); } } } @@ -726,7 +770,7 @@ public function update_option_wp_font_awesome_settings( $old_value, $new_value ) $response = $this->download_package( $new_version, $new_value ); if ( is_wp_error( $response ) ) { - add_settings_error( 'general', 'fontawesome_download', __( 'ERROR:', 'font-awesome-settings' ) . ' ' . $response->get_error_message(), 'error' ); + add_settings_error( 'general', 'fontawesome_download', __( 'ERROR:', 'ayecode-connect' ) . ' ' . $response->get_error_message(), 'error' ); } } } @@ -839,9 +883,9 @@ public function download_package( $version, $option = array() ) { $download_file = download_url( esc_url_raw( $url ) ); if ( is_wp_error( $download_file ) ) { - return new WP_Error( 'fontawesome_download_failed', __( $download_file->get_error_message(), 'font-awesome-settings' ) ); + return new WP_Error( 'fontawesome_download_failed', __( $download_file->get_error_message(), 'ayecode-connect' ) ); } else if ( empty( $download_file ) ) { - return new WP_Error( 'fontawesome_download_failed', __( 'Something went wrong in downloading the font awesome to store locally.', 'font-awesome-settings' ) ); + return new WP_Error( 'fontawesome_download_failed', __( 'Something went wrong in downloading the font awesome to store locally.', 'ayecode-connect' ) ); } $response = $this->extract_package( $download_file, $filename, true ); @@ -883,9 +927,9 @@ public function extract_package( $package, $dirname = '', $delete_package = fals $wp_filesystem = $this->get_wp_filesystem(); if ( empty( $wp_filesystem ) && isset( $wp_filesystem->errors ) && is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->get_error_code() ) { - return new WP_Error( 'fontawesome_filesystem_error', __( $wp_filesystem->errors->get_error_message(), 'font-awesome-settings' ) ); + return new WP_Error( 'fontawesome_filesystem_error', __( $wp_filesystem->errors->get_error_message(), 'ayecode-connect' ) ); } else if ( empty( $wp_filesystem ) ) { - return new WP_Error( 'fontawesome_filesystem_error', __( 'Failed to initialise WP_Filesystem while trying to download the Font Awesome package.', 'font-awesome-settings' ) ); + return new WP_Error( 'fontawesome_filesystem_error', __( 'Failed to initialise WP_Filesystem while trying to download the Font Awesome package.', 'ayecode-connect' ) ); } $fonts_dir = $this->get_fonts_dir(); @@ -902,7 +946,7 @@ public function extract_package( $package, $dirname = '', $delete_package = fals $wp_filesystem->delete( $fonts_tmp_dir, true ); if ( 'incompatible_archive' === $result->get_error_code() ) { - return new WP_Error( 'fontawesome_incompatible_archive', __( $result->get_error_message(), 'font-awesome-settings' ) ); + return new WP_Error( 'fontawesome_incompatible_archive', __( $result->get_error_message(), 'ayecode-connect' ) ); } return $result; @@ -921,7 +965,7 @@ public function extract_package( $package, $dirname = '', $delete_package = fals try { $return = $wp_filesystem->move( $extract_dir, $fonts_dir, true ); } catch ( Exception $e ) { - $return = new WP_Error( 'fontawesome_move_package', __( 'Fail to move font awesome package!', 'font-awesome-settings' ) ); + $return = new WP_Error( 'fontawesome_move_package', __( 'Fail to move font awesome package!', 'ayecode-connect' ) ); } if ( $wp_filesystem->is_dir( $fonts_tmp_dir ) ) { @@ -935,6 +979,28 @@ public function extract_package( $package, $dirname = '', $delete_package = fals return $return; } + + /** + * Output the version in the header. + */ + public function add_generator() { + $file = str_replace( array( "/", "\\" ), "/", realpath( __FILE__ ) ); + $plugins_dir = str_replace( array( "/", "\\" ), "/", realpath( WP_PLUGIN_DIR ) ); + + // Find source plugin/theme. + $source = array(); + if ( strpos( $file, $plugins_dir ) !== false ) { + $source = explode( "/", plugin_basename( $file ) ); + } else if ( function_exists( 'get_theme_root' ) ) { + $themes_dir = str_replace( array( "/", "\\" ), "/", realpath( get_theme_root() ) ); + + if ( strpos( $file, $themes_dir ) !== false ) { + $source = explode( "/", ltrim( str_replace( $themes_dir, "", $file ), "/" ) ); + } + } + + echo ''; + } } /** diff --git a/vendor/ayecode/wp-super-duper/change-log.txt b/vendor/ayecode/wp-super-duper/change-log.txt index df6260e..1ecf969 100644 --- a/vendor/ayecode/wp-super-duper/change-log.txt +++ b/vendor/ayecode/wp-super-duper/change-log.txt @@ -1,3 +1,33 @@ += 1.1.33 - 2024-01-25 = +* Escape new line characters from option label - FIXED + += 1.1.32 - 2023-12-14 = +* Update textdomain - CHANGED +* Escape placeholder t o prevent JS error - FIXED +* Site editor sidebar navigation auto closed - FIXED + += 1.1.31 = +* Detect Bricks builder preview - ADDED + += 1.1.30 = +* element_require condition is not working with checkbox - FIXED + += 1.1.29 = +* Show device type name with title for multi-device option setting - CHANGED +* element_require condition is not working with checkbox - FIXED + += 1.1.28 = +* Shortcode button added twice in the page content editor - FIXED + += 1.1.27 = +* Tablet padding option values are not working properly - FIXED + += 1.1.26 = +* Attempt auto recovery block on non edit template mode - CHANGED + += 1.1.25 = +* Undefined array key "title" thrown for some blocks when using Avada - FIXED + = 1.1.24 = * Gallery block shows image when requested image size don't exists - FIXED * Gallery block shows JS error when image title contains multiple single quote - FIXED diff --git a/vendor/ayecode/wp-super-duper/hello-world.php b/vendor/ayecode/wp-super-duper/hello-world.php index 2bfcab7..4fac38c 100644 --- a/vendor/ayecode/wp-super-duper/hello-world.php +++ b/vendor/ayecode/wp-super-duper/hello-world.php @@ -23,7 +23,7 @@ public function __construct() { 'block-output' => array( // the block visual output elements as an array array( 'element' => 'p', - 'title' => __( 'Placeholder', 'hello-world' ), + 'title' => __( 'Placeholder', 'ayecode-connect' ), 'class' => '[%className%]', 'content' => 'Hello: [%after_text%]' // block properties can be added by wrapping them in [%name%] ) @@ -33,20 +33,20 @@ public function __construct() { // The calling class name 'base_id' => 'hello_world', // this is used as the widget id and the shortcode id. - 'name' => __( 'Hello World', 'hello-world' ), + 'name' => __( 'Hello World', 'ayecode-connect' ), // the name of the widget/block 'widget_ops' => array( 'classname' => 'hello-world-class', // widget class - 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'hello-world' ), + 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'ayecode-connect' ), // widget description ), 'no_wrap' => true, // This will prevent the widget being wrapped in the containing widget class div. 'arguments' => array( // these are the arguments that will be used in the widget, shortcode and block settings. 'after_text' => array( // this is the input name='' - 'title' => __( 'Text after hello:', 'hello-world' ), + 'title' => __( 'Text after hello:', 'ayecode-connect' ), // input title - 'desc' => __( 'This is the text that will appear after `Hello:`.', 'hello-world' ), + 'desc' => __( 'This is the text that will appear after `Hello:`.', 'ayecode-connect' ), // input description 'type' => 'text', // the type of input, test, select, checkbox etc. @@ -116,8 +116,8 @@ function _my_extra_arguments( $options ) { */ $options['arguments']['another_input'] = array( 'name' => 'another_input', // this is the input name='' - 'title' => __( 'Another input:', 'hello-world' ), // input title - 'desc' => __( 'This is an input added via filter.', 'hello-world' ), // input description + 'title' => __( 'Another input:', 'ayecode-connect' ), // input title + 'desc' => __( 'This is an input added via filter.', 'ayecode-connect' ), // input description 'type' => 'text', // the type of input, test, select, checkbox etc. 'placeholder' => 'Placeholder text', // the input placeholder text. 'desc_tip' => true, // if the input should show the widget description text as a tooltip. diff --git a/vendor/ayecode/wp-super-duper/map.php b/vendor/ayecode/wp-super-duper/map.php index c96268e..0b99e5e 100644 --- a/vendor/ayecode/wp-super-duper/map.php +++ b/vendor/ayecode/wp-super-duper/map.php @@ -22,13 +22,13 @@ public function __construct() { 'block-output' => array( // the block visual output elements as an array array( 'element' => 'p', - 'content' => __('A Google API key is required to use this block, we recommend installing our plugin which makes it easy and sets it globally, or you can set a key in the block settings sidebar: ','super-duper'), + 'content' => __('A Google API key is required to use this block, we recommend installing our plugin which makes it easy and sets it globally, or you can set a key in the block settings sidebar: ', 'ayecode-connect' ), //'element_require' => '"1"=='.get_option( 'rgmk_google_map_api_key', '"0"') ? '"0"' : '"1"', 'element_require' => get_option( 'rgmk_google_map_api_key', false) ? '1==0' : '1==1 && [%api_key%]==""', ), array( 'element' => 'a', - 'content' => __('API KEY for Google Maps','super-duper'), + 'content' => __('API KEY for Google Maps', 'ayecode-connect' ), 'element_require' => get_option( 'rgmk_google_map_api_key', false) ? '1==0' : '1==1 && [%api_key%]==""', 'href' => 'https://wordpress.org/plugins/api-key-for-google-maps/', ), @@ -45,7 +45,7 @@ public function __construct() { 'style' => '{overflow:"hidden", position:"relative"}', array( 'element' => 'iframe', - 'title' => __( 'Placeholderx', 'super-duper' ), + 'title' => __( 'Placeholderx', 'ayecode-connect' ), 'class' => '[%className%]', 'width' => '[%width%]', 'height' => '[%height%]', @@ -58,7 +58,7 @@ public function __construct() { ), array( 'element' => 'style', - 'content' => '.sd-map-iframe-cover:hover:before {background: #4a4a4a88; content: "'.__("Click here, Settings are in the block settings sidebar","super-duper").'";} .sd-map-iframe-cover:before{cursor: pointer; content: ""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0;padding-top: 33%; text-align: center; color: #fff; font-size: 20px; font-weight: bold;}', + 'content' => '.sd-map-iframe-cover:hover:before {background: #4a4a4a88; content: "'.__( 'Click here, Settings are in the block settings sidebar', 'ayecode-connect' ).'";} .sd-map-iframe-cover:before{cursor: pointer; content: ""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0;padding-top: 33%; text-align: center; color: #fff; font-size: 20px; font-weight: bold;}', 'element_require' => '[%type%]!="image"', ), ), @@ -66,26 +66,26 @@ public function __construct() { // The calling class name 'base_id' => 'sd_map', // this is used as the widget id and the shortcode id. - 'name' => __( 'Map', 'super-duper' ), + 'name' => __( 'Map', 'ayecode-connect' ), // the name of the widget/block 'widget_ops' => array( 'classname' => 'sd-map-class', // widget class - 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'hello-world' ), + 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'ayecode-connect' ), // widget description ), 'arguments' => array( // these are the arguments that will be used in the widget, shortcode and block settings. 'type' => array( - 'title' => __('Map Type:', 'geodirectory'), - 'desc' => __('Select the map type to use.', 'geodirectory'), + 'title' => __('Map Type:', 'ayecode-connect'), + 'desc' => __('Select the map type to use.', 'ayecode-connect'), 'type' => 'select', 'options' => array( - "image" => __('Static Image', 'geodirectory'), - "place" => __('Place', 'geodirectory'), -// "directions" => __('Directions', 'geodirectory'), -// "search" => __('Search', 'geodirectory'), -// "view" => __('View', 'geodirectory'), -// "streetview" => __('Streetview', 'geodirectory'), + "image" => __('Static Image', 'ayecode-connect'), + "place" => __('Place', 'ayecode-connect'), +// "directions" => __('Directions', 'ayecode-connect'), +// "search" => __('Search', 'ayecode-connect'), +// "view" => __('View', 'ayecode-connect'), +// "streetview" => __('Streetview', 'ayecode-connect'), ), 'default' => 'image', 'desc_tip' => true, @@ -93,8 +93,8 @@ public function __construct() { ), 'location' => array( 'type' => 'text', - 'title' => __( 'Location:', 'geodirectory' ), - 'desc' => __( 'Enter the location to show on the map, place, city, zip code or GPS.', 'geodirectory' ), + 'title' => __( 'Location:', 'ayecode-connect' ), + 'desc' => __( 'Enter the location to show on the map, place, city, zip code or GPS.', 'ayecode-connect' ), 'placeholder' => 'Place, city, zip code or GPS', 'desc_tip' => true, 'default' => 'Ireland', @@ -102,8 +102,8 @@ public function __construct() { ), 'static_width' => array( 'type' => 'number', - 'title' => __( 'Width:', 'geodirectory' ), - 'desc' => __( 'This is the width of the map, for static maps you can only use px values.', 'geodirectory' ), + 'title' => __( 'Width:', 'ayecode-connect' ), + 'desc' => __( 'This is the width of the map, for static maps you can only use px values.', 'ayecode-connect' ), 'placeholder' => '600', 'desc_tip' => true, 'default' => '600', @@ -116,8 +116,8 @@ public function __construct() { ), 'static_height' => array( 'type' => 'number', - 'title' => __( 'Height:', 'geodirectory' ), - 'desc' => __( 'This is the height of the map, for static maps you can only use px values.', 'geodirectory' ), + 'title' => __( 'Height:', 'ayecode-connect' ), + 'desc' => __( 'This is the height of the map, for static maps you can only use px values.', 'ayecode-connect' ), 'placeholder' => '400', 'desc_tip' => true, 'default' => '400', @@ -131,8 +131,8 @@ public function __construct() { ), 'width' => array( 'type' => 'text', - 'title' => __( 'Width:', 'geodirectory' ), - 'desc' => __( 'This is the width of the map, you can use % or px here.', 'geodirectory' ), + 'title' => __( 'Width:', 'ayecode-connect' ), + 'desc' => __( 'This is the width of the map, you can use % or px here.', 'ayecode-connect' ), 'placeholder' => '100%', 'desc_tip' => true, 'default' => '100%', @@ -141,8 +141,8 @@ public function __construct() { ), 'height' => array( 'type' => 'text', - 'title' => __( 'Height:', 'geodirectory' ), - 'desc' => __( 'This is the height of the map, you can use %, px or vh here.', 'geodirectory' ), + 'title' => __( 'Height:', 'ayecode-connect' ), + 'desc' => __( 'This is the height of the map, you can use %, px or vh here.', 'ayecode-connect' ), 'placeholder' => '425px', 'desc_tip' => true, 'default' => '425px', @@ -151,13 +151,13 @@ public function __construct() { ), 'maptype' => array( 'type' => 'select', - 'title' => __( 'Mapview:', 'geodirectory' ), - 'desc' => __( 'This is the type of map view that will be used by default.', 'geodirectory' ), + 'title' => __( 'Mapview:', 'ayecode-connect' ), + 'desc' => __( 'This is the type of map view that will be used by default.', 'ayecode-connect' ), 'options' => array( - "roadmap" => __( 'Road Map', 'geodirectory' ), - "satellite" => __( 'Satellite Map', 'geodirectory' ), -// "hybrid" => __( 'Hybrid Map', 'geodirectory' ), -// "terrain" => __( 'Terrain Map', 'geodirectory' ), + "roadmap" => __( 'Road Map', 'ayecode-connect' ), + "satellite" => __( 'Satellite Map', 'ayecode-connect' ), +// "hybrid" => __( 'Hybrid Map', 'ayecode-connect' ), +// "terrain" => __( 'Terrain Map', 'ayecode-connect' ), ), 'desc_tip' => true, 'default' => 'roadmap', @@ -165,8 +165,8 @@ public function __construct() { ), 'zoom' => array( 'type' => 'select', - 'title' => __( 'Zoom level:', 'geodirectory' ), - 'desc' => __( 'This is the zoom level of the map, `auto` is recommended.', 'geodirectory' ), + 'title' => __( 'Zoom level:', 'ayecode-connect' ), + 'desc' => __( 'This is the zoom level of the map, `auto` is recommended.', 'ayecode-connect' ), 'options' => range( 1, 19 ), 'placeholder' => '', 'desc_tip' => true, @@ -175,8 +175,8 @@ public function __construct() { ), 'api_key' => array( 'type' => 'text', - 'title' => __( 'Api Key:', 'geodirectory' ), - 'desc' => __( 'This is the height of the map, you can use %, px or vh here.', 'geodirectory' ), + 'title' => __( 'Api Key:', 'ayecode-connect' ), + 'desc' => __( 'This is the height of the map, you can use %, px or vh here.', 'ayecode-connect' ), 'placeholder' => '', 'desc_tip' => true, 'default' => '', diff --git a/vendor/ayecode/wp-super-duper/sd-functions.php b/vendor/ayecode/wp-super-duper/sd-functions.php index 36e8ffe..c7cc2d6 100644 --- a/vendor/ayecode/wp-super-duper/sd-functions.php +++ b/vendor/ayecode/wp-super-duper/sd-functions.php @@ -52,8 +52,8 @@ function sd_widget_exclude() { function sd_get_margin_input( $type = 'mt', $overwrite = array(), $include_negatives = true ) { global $aui_bs5; $options = array( - '' => __( 'None', 'super-duper' ), - 'auto' => __( 'auto', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'auto' => __( 'auto', 'ayecode-connect' ), '0' => '0', '1' => '1', '2' => '2', @@ -86,37 +86,37 @@ function sd_get_margin_input( $type = 'mt', $overwrite = array(), $include_negat $defaults = array( 'type' => 'select', - 'title' => __( 'Margin top', 'super-duper' ), + 'title' => __( 'Margin top', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); // title if ( $type == 'mt' ) { - $defaults['title'] = __( 'Margin top', 'super-duper' ); + $defaults['title'] = __( 'Margin top', 'ayecode-connect' ); $defaults['icon'] = 'box-top'; $defaults['row'] = array( - 'title' => __( 'Margins', 'super-duper' ), + 'title' => __( 'Margins', 'ayecode-connect' ), 'key' => 'wrapper-margins', 'open' => true, 'class' => 'text-center', ); } elseif ( $type == 'mr' ) { - $defaults['title'] = __( 'Margin right', 'super-duper' ); + $defaults['title'] = __( 'Margin right', 'ayecode-connect' ); $defaults['icon'] = 'box-right'; $defaults['row'] = array( 'key' => 'wrapper-margins', ); } elseif ( $type == 'mb' ) { - $defaults['title'] = __( 'Margin bottom', 'super-duper' ); + $defaults['title'] = __( 'Margin bottom', 'ayecode-connect' ); $defaults['icon'] = 'box-bottom'; $defaults['row'] = array( 'key' => 'wrapper-margins', ); } elseif ( $type == 'ml' ) { - $defaults['title'] = __( 'Margin left', 'super-duper' ); + $defaults['title'] = __( 'Margin left', 'ayecode-connect' ); $defaults['icon'] = 'box-left'; $defaults['row'] = array( 'key' => 'wrapper-margins', @@ -139,7 +139,7 @@ function sd_get_margin_input( $type = 'mt', $overwrite = array(), $include_negat */ function sd_get_padding_input( $type = 'pt', $overwrite = array() ) { $options = array( - '' => __( 'None', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), '0' => '0', '1' => '1', '2' => '2', @@ -157,37 +157,37 @@ function sd_get_padding_input( $type = 'pt', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Padding top', 'super-duper' ), + 'title' => __( 'Padding top', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); // title if ( $type == 'pt' ) { - $defaults['title'] = __( 'Padding top', 'super-duper' ); + $defaults['title'] = __( 'Padding top', 'ayecode-connect' ); $defaults['icon'] = 'box-top'; $defaults['row'] = array( - 'title' => __( 'Padding', 'super-duper' ), + 'title' => __( 'Padding', 'ayecode-connect' ), 'key' => 'wrapper-padding', 'open' => true, 'class' => 'text-center', ); } elseif ( $type == 'pr' ) { - $defaults['title'] = __( 'Padding right', 'super-duper' ); + $defaults['title'] = __( 'Padding right', 'ayecode-connect' ); $defaults['icon'] = 'box-right'; $defaults['row'] = array( 'key' => 'wrapper-padding', ); } elseif ( $type == 'pb' ) { - $defaults['title'] = __( 'Padding bottom', 'super-duper' ); + $defaults['title'] = __( 'Padding bottom', 'ayecode-connect' ); $defaults['icon'] = 'box-bottom'; $defaults['row'] = array( 'key' => 'wrapper-padding', ); } elseif ( $type == 'pl' ) { - $defaults['title'] = __( 'Padding left', 'super-duper' ); + $defaults['title'] = __( 'Padding left', 'ayecode-connect' ); $defaults['icon'] = 'box-left'; $defaults['row'] = array( 'key' => 'wrapper-padding', @@ -214,18 +214,18 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Border', 'super-duper' ), + 'title' => __( 'Border', 'ayecode-connect' ), 'options' => array(), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); // title if ( 'rounded' === $type ) { - $defaults['title'] = __( 'Border radius type', 'super-duper' ); + $defaults['title'] = __( 'Border radius type', 'ayecode-connect' ); $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'rounded' => 'rounded', 'rounded-top' => 'rounded-top', 'rounded-right' => 'rounded-right', @@ -234,11 +234,11 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { ); $defaults['element_require'] = '[%border%]'; } elseif ( 'rounded_size' === $type ) { - $defaults['title'] = __( 'Border radius size', 'super-duper' ); + $defaults['title'] = __( 'Border radius size', 'ayecode-connect' ); if ( $aui_bs5 ) { $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), '0' => '0', '1' => '1', '2' => '2', @@ -249,16 +249,16 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { ); } else { $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), - 'sm' => __( 'Small', 'super-duper' ), - 'lg' => __( 'Large', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'sm' => __( 'Small', 'ayecode-connect' ), + 'lg' => __( 'Large', 'ayecode-connect' ), ); } $defaults['element_require'] = '[%border%]'; } elseif ( 'width' === $type ) { // BS% - $defaults['title'] = __( 'Border width', 'super-duper' ); + $defaults['title'] = __( 'Border width', 'ayecode-connect' ); $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'border-2' => '2', 'border-3' => '3', 'border-4' => '4', @@ -266,9 +266,9 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { ); $defaults['element_require'] = $aui_bs5 ? '[%border%]' : '1==2'; } elseif ( 'opacity' === $type ) { // BS% - $defaults['title'] = __( 'Border opacity', 'super-duper' ); + $defaults['title'] = __( 'Border opacity', 'ayecode-connect' ); $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'border-opacity-75' => '75%', 'border-opacity-50' => '50%', 'border-opacity-25' => '25%', @@ -276,25 +276,25 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { ); $defaults['element_require'] = $aui_bs5 ? '[%border%]' : '1==2'; } elseif ( 'type' === $type ) { - $defaults['title'] = __( 'Border show', 'super-duper' ); + $defaults['title'] = __( 'Border show', 'ayecode-connect' ); $defaults['options'] = array( - 'border' => __( 'Full (set color to show)', 'super-duper' ), - 'border-top' => __( 'Top', 'super-duper' ), - 'border-bottom' => __( 'Bottom', 'super-duper' ), - 'border-left' => __( 'Left', 'super-duper' ), - 'border-right' => __( 'Right', 'super-duper' ), - 'border-top-0' => __( '-Top', 'super-duper' ), - 'border-bottom-0' => __( '-Bottom', 'super-duper' ), - 'border-left-0' => __( '-Left', 'super-duper' ), - 'border-right-0' => __( '-Right', 'super-duper' ), + 'border' => __( 'Full (set color to show)', 'ayecode-connect' ), + 'border-top' => __( 'Top', 'ayecode-connect' ), + 'border-bottom' => __( 'Bottom', 'ayecode-connect' ), + 'border-left' => __( 'Left', 'ayecode-connect' ), + 'border-right' => __( 'Right', 'ayecode-connect' ), + 'border-top-0' => __( '-Top', 'ayecode-connect' ), + 'border-bottom-0' => __( '-Bottom', 'ayecode-connect' ), + 'border-left-0' => __( '-Left', 'ayecode-connect' ), + 'border-right-0' => __( '-Right', 'ayecode-connect' ), ); $defaults['element_require'] = '[%border%]'; } else { - $defaults['title'] = __( 'Border color', 'super-duper' ); + $defaults['title'] = __( 'Border color', 'ayecode-connect' ); $defaults['options'] = array( - '' => __( 'Default', 'super-duper' ), - '0' => __( 'None', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + '0' => __( 'None', 'ayecode-connect' ), ) + sd_aui_colors(); } @@ -313,19 +313,19 @@ function sd_get_border_input( $type = 'border', $overwrite = array() ) { */ function sd_get_shadow_input( $type = 'shadow', $overwrite = array() ) { $options = array( - '' => __( 'None', 'super-duper' ), - 'shadow-sm' => __( 'Small', 'super-duper' ), - 'shadow' => __( 'Regular', 'super-duper' ), - 'shadow-lg' => __( 'Large', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'shadow-sm' => __( 'Small', 'ayecode-connect' ), + 'shadow' => __( 'Regular', 'ayecode-connect' ), + 'shadow-lg' => __( 'Large', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Shadow', 'super-duper' ), + 'title' => __( 'Shadow', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -343,17 +343,17 @@ function sd_get_shadow_input( $type = 'shadow', $overwrite = array() ) { */ function sd_get_background_input( $type = 'bg', $overwrite = array() ) { $options = array( - '' => __( 'None', 'super-duper' ), - 'transparent' => __( 'Transparent', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'transparent' => __( 'Transparent', 'ayecode-connect' ), ) + sd_aui_colors(); $defaults = array( 'type' => 'select', - 'title' => __( 'Background color', 'super-duper' ), + 'title' => __( 'Background color', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -371,7 +371,7 @@ function sd_get_background_input( $type = 'bg', $overwrite = array() ) { */ function sd_get_opacity_input( $type = 'opacity', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'opacity-10' => '10%', 'opacity-15' => '15%', 'opacity-25' => '25%', @@ -389,11 +389,11 @@ function sd_get_opacity_input( $type = 'opacity', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Opacity', 'super-duper' ), + 'title' => __( 'Opacity', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -414,25 +414,25 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit $color_options = $include_button_colors ? sd_aui_colors( false, true, true, true ) : sd_aui_colors(); $options = array( - '' => __( 'None', 'super-duper' ), - 'transparent' => __( 'Transparent', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'transparent' => __( 'Transparent', 'ayecode-connect' ), ) + $color_options; if ( false !== $overwrite_color ) { - $options['custom-color'] = __( 'Custom Color', 'super-duper' ); + $options['custom-color'] = __( 'Custom Color', 'ayecode-connect' ); } if ( false !== $overwrite_gradient ) { - $options['custom-gradient'] = __( 'Custom Gradient', 'super-duper' ); + $options['custom-gradient'] = __( 'Custom Gradient', 'ayecode-connect' ); } $defaults = array( 'type' => 'select', - 'title' => __( 'Background Color', 'super-duper' ), + 'title' => __( 'Background Color', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), ); if ( $overwrite !== false ) { @@ -444,11 +444,11 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit $overwrite_color, array( 'type' => 'color', - 'title' => __( 'Custom color', 'super-duper' ), + 'title' => __( 'Custom color', 'ayecode-connect' ), 'placeholder' => '', 'default' => '#0073aa', 'desc_tip' => true, - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]=="custom-color"', ) ); @@ -459,11 +459,11 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit $overwrite_gradient, array( 'type' => 'gradient', - 'title' => __( 'Custom gradient', 'super-duper' ), + 'title' => __( 'Custom gradient', 'ayecode-connect' ), 'placeholder' => '', 'default' => 'linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 'desc_tip' => true, - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]=="custom-gradient"', ) ); @@ -473,20 +473,20 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit $input[ $type . '_image_fixed' ] = array( 'type' => 'checkbox', - 'title' => __( 'Fixed background', 'super-duper' ), + 'title' => __( 'Fixed background', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => ! empty( $overwrite_image['group'] ) ? $overwrite_image['group'] : __( 'Background', 'super-duper' ), + 'group' => ! empty( $overwrite_image['group'] ) ? $overwrite_image['group'] : __( 'Background', 'ayecode-connect' ), 'element_require' => '( [%' . $type . '%]=="" || [%' . $type . '%]=="custom-color" || [%' . $type . '%]=="custom-gradient" || [%' . $type . '%]=="transparent" )', ); $input[ $type . '_image_use_featured' ] = array( 'type' => 'checkbox', - 'title' => __( 'Use featured image', 'super-duper' ), + 'title' => __( 'Use featured image', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => ! empty( $overwrite_image['group'] ) ? $overwrite_image['group'] : __( 'Background', 'super-duper' ), + 'group' => ! empty( $overwrite_image['group'] ) ? $overwrite_image['group'] : __( 'Background', 'ayecode-connect' ), 'element_require' => '( [%' . $type . '%]=="" || [%' . $type . '%]=="custom-color" || [%' . $type . '%]=="custom-gradient" || [%' . $type . '%]=="transparent" )', ); @@ -495,11 +495,11 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit $overwrite_image, array( 'type' => 'image', - 'title' => __( 'Custom image', 'super-duper' ), + 'title' => __( 'Custom image', 'ayecode-connect' ), 'placeholder' => '', 'default' => '', 'desc_tip' => true, - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), // 'element_require' => ' ![%' . $type . '_image_use_featured%] ' ) ); @@ -512,7 +512,7 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit 'title' => '', 'placeholder' => '', 'default' => '', - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), ) ); @@ -523,7 +523,7 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit 'title' => '', 'placeholder' => '', 'default' => '', - 'group' => __( 'Background', 'super-duper' ), + 'group' => __( 'Background', 'ayecode-connect' ), ) ); } @@ -542,43 +542,43 @@ function sd_get_background_inputs( $type = 'bg', $overwrite = array(), $overwrit function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overwrite_color = array(), $overwrite_gradient = array(), $overwrite_image = array() ) { $options = array( - '' => __( 'None', 'super-duper' ), - 'mountains' => __( 'Mountains', 'super-duper' ), - 'drops' => __( 'Drops', 'super-duper' ), - 'clouds' => __( 'Clouds', 'super-duper' ), - 'zigzag' => __( 'Zigzag', 'super-duper' ), - 'pyramids' => __( 'Pyramids', 'super-duper' ), - 'triangle' => __( 'Triangle', 'super-duper' ), - 'triangle-asymmetrical' => __( 'Triangle Asymmetrical', 'super-duper' ), - 'tilt' => __( 'Tilt', 'super-duper' ), - 'opacity-tilt' => __( 'Opacity Tilt', 'super-duper' ), - 'opacity-fan' => __( 'Opacity Fan', 'super-duper' ), - 'curve' => __( 'Curve', 'super-duper' ), - 'curve-asymmetrical' => __( 'Curve Asymmetrical', 'super-duper' ), - 'waves' => __( 'Waves', 'super-duper' ), - 'wave-brush' => __( 'Wave Brush', 'super-duper' ), - 'waves-pattern' => __( 'Waves Pattern', 'super-duper' ), - 'arrow' => __( 'Arrow', 'super-duper' ), - 'split' => __( 'Split', 'super-duper' ), - 'book' => __( 'Book', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'mountains' => __( 'Mountains', 'ayecode-connect' ), + 'drops' => __( 'Drops', 'ayecode-connect' ), + 'clouds' => __( 'Clouds', 'ayecode-connect' ), + 'zigzag' => __( 'Zigzag', 'ayecode-connect' ), + 'pyramids' => __( 'Pyramids', 'ayecode-connect' ), + 'triangle' => __( 'Triangle', 'ayecode-connect' ), + 'triangle-asymmetrical' => __( 'Triangle Asymmetrical', 'ayecode-connect' ), + 'tilt' => __( 'Tilt', 'ayecode-connect' ), + 'opacity-tilt' => __( 'Opacity Tilt', 'ayecode-connect' ), + 'opacity-fan' => __( 'Opacity Fan', 'ayecode-connect' ), + 'curve' => __( 'Curve', 'ayecode-connect' ), + 'curve-asymmetrical' => __( 'Curve Asymmetrical', 'ayecode-connect' ), + 'waves' => __( 'Waves', 'ayecode-connect' ), + 'wave-brush' => __( 'Wave Brush', 'ayecode-connect' ), + 'waves-pattern' => __( 'Waves Pattern', 'ayecode-connect' ), + 'arrow' => __( 'Arrow', 'ayecode-connect' ), + 'split' => __( 'Split', 'ayecode-connect' ), + 'book' => __( 'Book', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Type', 'super-duper' ), + 'title' => __( 'Type', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), ); $input[ $type ] = wp_parse_args( $overwrite, $defaults ); $input[ $type . '_notice' ] = array( 'type' => 'notice', - 'desc' => __( 'Parent element must be position `relative`', 'super-duper' ), + 'desc' => __( 'Parent element must be position `relative`', 'ayecode-connect' ), 'status' => 'warning', - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ); @@ -586,33 +586,33 @@ function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overw $overwrite_color, array( 'type' => 'select', - 'title' => __( 'Position', 'super-duper' ), + 'title' => __( 'Position', 'ayecode-connect' ), 'options' => array( - 'top' => __( 'Top', 'super-duper' ), - 'bottom' => __( 'Bottom', 'super-duper' ), + 'top' => __( 'Top', 'ayecode-connect' ), + 'bottom' => __( 'Bottom', 'ayecode-connect' ), ), 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ) ); $options = array( - '' => __( 'None', 'super-duper' ), - 'transparent' => __( 'Transparent', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), + 'transparent' => __( 'Transparent', 'ayecode-connect' ), ) + sd_aui_colors() + array( - 'custom-color' => __( 'Custom Color', 'super-duper' ), + 'custom-color' => __( 'Custom Color', 'ayecode-connect' ), ); $input[ $type . '_color' ] = wp_parse_args( $overwrite_color, array( 'type' => 'select', - 'title' => __( 'Color', 'super-duper' ), + 'title' => __( 'Color', 'ayecode-connect' ), 'options' => $options, 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ) ); @@ -621,11 +621,11 @@ function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overw $overwrite_color, array( 'type' => 'color', - 'title' => __( 'Custom color', 'super-duper' ), + 'title' => __( 'Custom color', 'ayecode-connect' ), 'placeholder' => '', 'default' => '#0073aa', 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '_color%]=="custom-color" && [%' . $type . '%]!=""', ) ); @@ -634,7 +634,7 @@ function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overw $overwrite_gradient, array( 'type' => 'range', - 'title' => __( 'Width', 'super-duper' ), + 'title' => __( 'Width', 'ayecode-connect' ), 'placeholder' => '', 'default' => '200', 'desc_tip' => true, @@ -642,21 +642,21 @@ function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overw 'min' => 100, 'max' => 300, ), - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ) ); $input[ $type . '_height' ] = array( 'type' => 'range', - 'title' => __( 'Height', 'super-duper' ), + 'title' => __( 'Height', 'ayecode-connect' ), 'default' => '100', 'desc_tip' => true, 'custom_attributes' => array( 'min' => 0, 'max' => 500, ), - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ); @@ -683,28 +683,28 @@ function sd_get_shape_divider_inputs( $type = 'sd', $overwrite = array(), $overw $input[ $type . '_flip' ] = array( 'type' => 'checkbox', - 'title' => __( 'Flip', 'super-duper' ), + 'title' => __( 'Flip', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => sd_get_element_require_string( $requires, 'flip', 'sd' ), ); $input[ $type . '_invert' ] = array( 'type' => 'checkbox', - 'title' => __( 'Invert', 'super-duper' ), + 'title' => __( 'Invert', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => sd_get_element_require_string( $requires, 'invert', 'sd' ), ); $input[ $type . '_btf' ] = array( 'type' => 'checkbox', - 'title' => __( 'Bring to front', 'super-duper' ), + 'title' => __( 'Bring to front', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Shape Divider', 'super-duper' ), + 'group' => __( 'Shape Divider', 'ayecode-connect' ), 'element_require' => '[%' . $type . '%]!=""', ); @@ -750,20 +750,20 @@ function sd_get_element_require_string( $args, $key, $type ) { */ function sd_get_text_color_input( $type = 'text_color', $overwrite = array(), $has_custom = false ) { $options = array( - '' => __( 'None', 'super-duper' ), + '' => __( 'None', 'ayecode-connect' ), ) + sd_aui_colors(); if ( $has_custom ) { - $options['custom'] = __( 'Custom color', 'super-duper' ); + $options['custom'] = __( 'Custom color', 'ayecode-connect' ); } $defaults = array( 'type' => 'select', - 'title' => __( 'Text color', 'super-duper' ), + 'title' => __( 'Text color', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -798,11 +798,11 @@ function sd_get_custom_color_input( $type = 'color_custom', $overwrite = array() $defaults = array( 'type' => 'color', - 'title' => __( 'Custom color', 'super-duper' ), + 'title' => __( 'Custom color', 'ayecode-connect' ), 'default' => '', 'placeholder' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); if ( $parent_type ) { @@ -833,8 +833,8 @@ function sd_get_col_input( $type = 'col', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), - 'auto' => __( 'auto', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'auto' => __( 'auto', 'ayecode-connect' ), '1' => '1/12', '2' => '2/12', '3' => '3/12', @@ -851,11 +851,11 @@ function sd_get_col_input( $type = 'col', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Column width', 'super-duper' ), + 'title' => __( 'Column width', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Container', 'super-duper' ), + 'group' => __( 'Container', 'ayecode-connect' ), 'element_require' => '[%container%]=="col"', ); @@ -883,7 +883,7 @@ function sd_get_row_cols_input( $type = 'row_cols', $overwrite = array() ) { } } $options = array( - '' => __( 'auto', 'super-duper' ), + '' => __( 'auto', 'ayecode-connect' ), '1' => '1', '2' => '2', '3' => '3', @@ -894,11 +894,11 @@ function sd_get_row_cols_input( $type = 'row_cols', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Row columns', 'super-duper' ), + 'title' => __( 'Row columns', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Container', 'super-duper' ), + 'group' => __( 'Container', 'ayecode-connect' ), 'element_require' => '[%container%]=="row"', ); @@ -926,19 +926,19 @@ function sd_get_text_align_input( $type = 'text_align', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), - 'text' . $device_size . '-left' => __( 'Left', 'super-duper' ), - 'text' . $device_size . '-right' => __( 'Right', 'super-duper' ), - 'text' . $device_size . '-center' => __( 'Center', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'text' . $device_size . '-left' => __( 'Left', 'ayecode-connect' ), + 'text' . $device_size . '-right' => __( 'Right', 'ayecode-connect' ), + 'text' . $device_size . '-center' => __( 'Center', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Text align', 'super-duper' ), + 'title' => __( 'Text align', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -965,7 +965,7 @@ function sd_get_display_input( $type = 'display', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'd' . $device_size . '-none' => 'none', 'd' . $device_size . '-inline' => 'inline', 'd' . $device_size . '-inline-block' => 'inline-block', @@ -979,11 +979,11 @@ function sd_get_display_input( $type = 'display', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Display', 'super-duper' ), + 'title' => __( 'Display', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1003,10 +1003,10 @@ function sd_get_text_justify_input( $type = 'text_justify', $overwrite = array() $defaults = array( 'type' => 'checkbox', - 'title' => __( 'Text justify', 'super-duper' ), + 'title' => __( 'Text justify', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1026,43 +1026,43 @@ function sd_get_text_justify_input( $type = 'text_justify', $overwrite = array() function sd_aui_colors( $include_branding = false, $include_outlines = false, $outline_button_only_text = false, $include_translucent = false ) { $theme_colors = array(); - $theme_colors['primary'] = __( 'Primary', 'super-duper' ); - $theme_colors['secondary'] = __( 'Secondary', 'super-duper' ); - $theme_colors['success'] = __( 'Success', 'super-duper' ); - $theme_colors['danger'] = __( 'Danger', 'super-duper' ); - $theme_colors['warning'] = __( 'Warning', 'super-duper' ); - $theme_colors['info'] = __( 'Info', 'super-duper' ); - $theme_colors['light'] = __( 'Light', 'super-duper' ); - $theme_colors['dark'] = __( 'Dark', 'super-duper' ); - $theme_colors['black'] = __( 'Black', 'super-duper' ); - $theme_colors['white'] = __( 'White', 'super-duper' ); - $theme_colors['purple'] = __( 'Purple', 'super-duper' ); - $theme_colors['salmon'] = __( 'Salmon', 'super-duper' ); - $theme_colors['cyan'] = __( 'Cyan', 'super-duper' ); - $theme_colors['gray'] = __( 'Gray', 'super-duper' ); - $theme_colors['muted'] = __( 'Muted', 'super-duper' ); - $theme_colors['gray-dark'] = __( 'Gray dark', 'super-duper' ); - $theme_colors['indigo'] = __( 'Indigo', 'super-duper' ); - $theme_colors['orange'] = __( 'Orange', 'super-duper' ); + $theme_colors['primary'] = __( 'Primary', 'ayecode-connect' ); + $theme_colors['secondary'] = __( 'Secondary', 'ayecode-connect' ); + $theme_colors['success'] = __( 'Success', 'ayecode-connect' ); + $theme_colors['danger'] = __( 'Danger', 'ayecode-connect' ); + $theme_colors['warning'] = __( 'Warning', 'ayecode-connect' ); + $theme_colors['info'] = __( 'Info', 'ayecode-connect' ); + $theme_colors['light'] = __( 'Light', 'ayecode-connect' ); + $theme_colors['dark'] = __( 'Dark', 'ayecode-connect' ); + $theme_colors['black'] = __( 'Black', 'ayecode-connect' ); + $theme_colors['white'] = __( 'White', 'ayecode-connect' ); + $theme_colors['purple'] = __( 'Purple', 'ayecode-connect' ); + $theme_colors['salmon'] = __( 'Salmon', 'ayecode-connect' ); + $theme_colors['cyan'] = __( 'Cyan', 'ayecode-connect' ); + $theme_colors['gray'] = __( 'Gray', 'ayecode-connect' ); + $theme_colors['muted'] = __( 'Muted', 'ayecode-connect' ); + $theme_colors['gray-dark'] = __( 'Gray dark', 'ayecode-connect' ); + $theme_colors['indigo'] = __( 'Indigo', 'ayecode-connect' ); + $theme_colors['orange'] = __( 'Orange', 'ayecode-connect' ); if ( $include_outlines ) { - $button_only = $outline_button_only_text ? ' ' . __( '(button only)', 'super-duper' ) : ''; - $theme_colors['outline-primary'] = __( 'Primary outline', 'super-duper' ) . $button_only; - $theme_colors['outline-secondary'] = __( 'Secondary outline', 'super-duper' ) . $button_only; - $theme_colors['outline-success'] = __( 'Success outline', 'super-duper' ) . $button_only; - $theme_colors['outline-danger'] = __( 'Danger outline', 'super-duper' ) . $button_only; - $theme_colors['outline-warning'] = __( 'Warning outline', 'super-duper' ) . $button_only; - $theme_colors['outline-info'] = __( 'Info outline', 'super-duper' ) . $button_only; - $theme_colors['outline-light'] = __( 'Light outline', 'super-duper' ) . $button_only; - $theme_colors['outline-dark'] = __( 'Dark outline', 'super-duper' ) . $button_only; - $theme_colors['outline-white'] = __( 'White outline', 'super-duper' ) . $button_only; - $theme_colors['outline-purple'] = __( 'Purple outline', 'super-duper' ) . $button_only; - $theme_colors['outline-salmon'] = __( 'Salmon outline', 'super-duper' ) . $button_only; - $theme_colors['outline-cyan'] = __( 'Cyan outline', 'super-duper' ) . $button_only; - $theme_colors['outline-gray'] = __( 'Gray outline', 'super-duper' ) . $button_only; - $theme_colors['outline-gray-dark'] = __( 'Gray dark outline', 'super-duper' ) . $button_only; - $theme_colors['outline-indigo'] = __( 'Indigo outline', 'super-duper' ) . $button_only; - $theme_colors['outline-orange'] = __( 'Orange outline', 'super-duper' ) . $button_only; + $button_only = $outline_button_only_text ? ' ' . __( '(button only)', 'ayecode-connect' ) : ''; + $theme_colors['outline-primary'] = __( 'Primary outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-secondary'] = __( 'Secondary outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-success'] = __( 'Success outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-danger'] = __( 'Danger outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-warning'] = __( 'Warning outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-info'] = __( 'Info outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-light'] = __( 'Light outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-dark'] = __( 'Dark outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-white'] = __( 'White outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-purple'] = __( 'Purple outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-salmon'] = __( 'Salmon outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-cyan'] = __( 'Cyan outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-gray'] = __( 'Gray outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-gray-dark'] = __( 'Gray dark outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-indigo'] = __( 'Indigo outline', 'ayecode-connect' ) . $button_only; + $theme_colors['outline-orange'] = __( 'Orange outline', 'ayecode-connect' ) . $button_only; } if ( $include_branding ) { @@ -1070,23 +1070,23 @@ function sd_aui_colors( $include_branding = false, $include_outlines = false, $o } if ( $include_translucent ) { - $button_only = $outline_button_only_text ? ' ' . __( '(button only)', 'super-duper' ) : ''; - $theme_colors['translucent-primary'] = __( 'Primary translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-secondary'] = __( 'Secondary translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-success'] = __( 'Success translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-danger'] = __( 'Danger translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-warning'] = __( 'Warning translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-info'] = __( 'Info translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-light'] = __( 'Light translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-dark'] = __( 'Dark translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-white'] = __( 'White translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-purple'] = __( 'Purple translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-salmon'] = __( 'Salmon translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-cyan'] = __( 'Cyan translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-gray'] = __( 'Gray translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-gray-dark'] = __( 'Gray dark translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-indigo'] = __( 'Indigo translucent', 'super-duper' ) . $button_only; - $theme_colors['translucent-orange'] = __( 'Orange translucent', 'super-duper' ) . $button_only; + $button_only = $outline_button_only_text ? ' ' . __( '(button only)', 'ayecode-connect' ) : ''; + $theme_colors['translucent-primary'] = __( 'Primary translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-secondary'] = __( 'Secondary translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-success'] = __( 'Success translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-danger'] = __( 'Danger translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-warning'] = __( 'Warning translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-info'] = __( 'Info translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-light'] = __( 'Light translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-dark'] = __( 'Dark translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-white'] = __( 'White translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-purple'] = __( 'Purple translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-salmon'] = __( 'Salmon translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-cyan'] = __( 'Cyan translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-gray'] = __( 'Gray translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-gray-dark'] = __( 'Gray dark translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-indigo'] = __( 'Indigo translucent', 'ayecode-connect' ) . $button_only; + $theme_colors['translucent-orange'] = __( 'Orange translucent', 'ayecode-connect' ) . $button_only; } return apply_filters( 'sd_aui_colors', $theme_colors, $include_outlines, $include_branding ); @@ -1099,17 +1099,17 @@ function sd_aui_colors( $include_branding = false, $include_outlines = false, $o */ function sd_aui_branding_colors() { return array( - 'facebook' => __( 'Facebook', 'super-duper' ), - 'twitter' => __( 'Twitter', 'super-duper' ), - 'instagram' => __( 'Instagram', 'super-duper' ), - 'linkedin' => __( 'Linkedin', 'super-duper' ), - 'flickr' => __( 'Flickr', 'super-duper' ), - 'github' => __( 'GitHub', 'super-duper' ), - 'youtube' => __( 'YouTube', 'super-duper' ), - 'wordpress' => __( 'WordPress', 'super-duper' ), - 'google' => __( 'Google', 'super-duper' ), - 'yahoo' => __( 'Yahoo', 'super-duper' ), - 'vkontakte' => __( 'Vkontakte', 'super-duper' ), + 'facebook' => __( 'Facebook', 'ayecode-connect' ), + 'twitter' => __( 'Twitter', 'ayecode-connect' ), + 'instagram' => __( 'Instagram', 'ayecode-connect' ), + 'linkedin' => __( 'Linkedin', 'ayecode-connect' ), + 'flickr' => __( 'Flickr', 'ayecode-connect' ), + 'github' => __( 'GitHub', 'ayecode-connect' ), + 'youtube' => __( 'YouTube', 'ayecode-connect' ), + 'wordpress' => __( 'WordPress', 'ayecode-connect' ), + 'google' => __( 'Google', 'ayecode-connect' ), + 'yahoo' => __( 'Yahoo', 'ayecode-connect' ), + 'vkontakte' => __( 'Vkontakte', 'ayecode-connect' ), ); } @@ -1125,7 +1125,7 @@ function sd_aui_branding_colors() { function sd_get_container_class_input( $type = 'container', $overwrite = array() ) { $options = array( - 'container' => __( 'container (default)', 'super-duper' ), + 'container' => __( 'container (default)', 'ayecode-connect' ), 'container-sm' => 'container-sm', 'container-md' => 'container-md', 'container-lg' => 'container-lg', @@ -1141,16 +1141,16 @@ function sd_get_container_class_input( $type = 'container', $overwrite = array() 'card-footer' => 'card-footer', 'list-group' => 'list-group', 'list-group-item' => 'list-group-item', - '' => __( 'no container class', 'super-duper' ), + '' => __( 'no container class', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Type', 'super-duper' ), + 'title' => __( 'Type', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Container', 'super-duper' ), + 'group' => __( 'Container', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1169,7 +1169,7 @@ function sd_get_container_class_input( $type = 'container', $overwrite = array() function sd_get_position_class_input( $type = 'position', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'position-static' => 'static', 'position-relative' => 'relative', 'position-absolute' => 'absolute', @@ -1182,11 +1182,11 @@ function sd_get_position_class_input( $type = 'position', $overwrite = array() ) $defaults = array( 'type' => 'select', - 'title' => __( 'Position', 'super-duper' ), + 'title' => __( 'Position', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1203,7 +1203,7 @@ function sd_get_position_class_input( $type = 'position', $overwrite = array() ) function sd_get_absolute_position_input( $type = 'absolute_position', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'top-left' => 'top-left', 'top-center' => 'top-center', 'top-right' => 'top-right', @@ -1217,11 +1217,11 @@ function sd_get_absolute_position_input( $type = 'absolute_position', $overwrite $defaults = array( 'type' => 'select', - 'title' => __( 'Absolute Position', 'super-duper' ), + 'title' => __( 'Absolute Position', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => '[%position%]=="position-absolute"', ); @@ -1242,26 +1242,26 @@ function sd_get_sticky_offset_input( $type = 'top', $overwrite = array() ) { $defaults = array( 'type' => 'number', - 'title' => __( 'Sticky offset', 'super-duper' ), - //'desc' => __( 'Sticky offset', 'super-duper' ), + 'title' => __( 'Sticky offset', 'ayecode-connect' ), + //'desc' => __( 'Sticky offset', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => '[%position%]=="sticky" || [%position%]=="sticky-top"', ); // title if ( $type == 'top' ) { - $defaults['title'] = __( 'Top offset', 'super-duper' ); + $defaults['title'] = __( 'Top offset', 'ayecode-connect' ); $defaults['icon'] = 'box-top'; $defaults['row'] = array( - 'title' => __( 'Sticky offset', 'super-duper' ), + 'title' => __( 'Sticky offset', 'ayecode-connect' ), 'key' => 'sticky-offset', 'open' => true, 'class' => 'text-center', ); } elseif ( $type == 'bottom' ) { - $defaults['title'] = __( 'Bottom offset', 'super-duper' ); + $defaults['title'] = __( 'Bottom offset', 'ayecode-connect' ); $defaults['icon'] = 'box-bottom'; $defaults['row'] = array( 'key' => 'sticky-offset', @@ -1285,7 +1285,7 @@ function sd_get_sticky_offset_input( $type = 'top', $overwrite = array() ) { function sd_get_font_size_input( $type = 'font_size', $overwrite = array(), $has_custom = false ) { global $aui_bs5; - $options[] = __( 'Inherit from parent', 'super-duper' ); + $options[] = __( 'Inherit from parent', 'ayecode-connect' ); if ( $aui_bs5 ) { // responsive font sizes $options['fs-base'] = 'fs-base (body default)'; @@ -1323,16 +1323,16 @@ function sd_get_font_size_input( $type = 'font_size', $overwrite = array(), $has } if ( $has_custom ) { - $options['custom'] = __( 'Custom size', 'super-duper' ); + $options['custom'] = __( 'Custom size', 'ayecode-connect' ); } $defaults = array( 'type' => 'select', - 'title' => __( 'Font size', 'super-duper' ), + 'title' => __( 'Font size', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1352,7 +1352,7 @@ function sd_get_font_custom_size_input( $type = 'font_size_custom', $overwrite = $defaults = array( 'type' => 'number', - 'title' => __( 'Font size (rem)', 'super-duper' ), + 'title' => __( 'Font size (rem)', 'ayecode-connect' ), 'default' => '', 'placeholder' => '1.25', 'custom_attributes' => array( @@ -1361,7 +1361,7 @@ function sd_get_font_custom_size_input( $type = 'font_size_custom', $overwrite = 'max' => '100', ), 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); if ( $parent_type ) { @@ -1385,7 +1385,7 @@ function sd_get_font_line_height_input( $type = 'font_line_height', $overwrite = $defaults = array( 'type' => 'number', - 'title' => __( 'Font Line Height', 'super-duper' ), + 'title' => __( 'Font Line Height', 'ayecode-connect' ), 'default' => '', 'placeholder' => '1.75', 'custom_attributes' => array( @@ -1394,7 +1394,7 @@ function sd_get_font_line_height_input( $type = 'font_line_height', $overwrite = 'max' => '100', ), 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1437,7 +1437,7 @@ function sd_get_font_size_input_group( $type = 'font_size', $overwrite = array() function sd_get_font_weight_input( $type = 'font_weight', $overwrite = array() ) { $options = array( - '' => __( 'Inherit', 'super-duper' ), + '' => __( 'Inherit', 'ayecode-connect' ), 'font-weight-bold' => 'bold', 'font-weight-bolder' => 'bolder', 'font-weight-normal' => 'normal', @@ -1453,11 +1453,11 @@ function sd_get_font_weight_input( $type = 'font_weight', $overwrite = array() ) $defaults = array( 'type' => 'select', - 'title' => __( 'Appearance', 'super-duper' ), + 'title' => __( 'Appearance', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1476,19 +1476,19 @@ function sd_get_font_weight_input( $type = 'font_weight', $overwrite = array() ) function sd_get_font_case_input( $type = 'font_weight', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), - 'text-lowercase' => __( 'lowercase', 'super-duper' ), - 'text-uppercase' => __( 'UPPERCASE', 'super-duper' ), - 'text-capitalize' => __( 'Capitalize', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'text-lowercase' => __( 'lowercase', 'ayecode-connect' ), + 'text-uppercase' => __( 'UPPERCASE', 'ayecode-connect' ), + 'text-capitalize' => __( 'Capitalize', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Letter case', 'super-duper' ), + 'title' => __( 'Letter case', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1508,17 +1508,17 @@ function sd_get_font_case_input( $type = 'font_weight', $overwrite = array() ) { function sd_get_font_italic_input( $type = 'font_italic', $overwrite = array() ) { $options = array( - '' => __( 'No', 'super-duper' ), - 'font-italic' => __( 'Yes', 'super-duper' ), + '' => __( 'No', 'ayecode-connect' ), + 'font-italic' => __( 'Yes', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Font italic', 'super-duper' ), + 'title' => __( 'Font italic', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Typography', 'super-duper' ), + 'group' => __( 'Typography', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1538,11 +1538,11 @@ function sd_get_anchor_input( $type = 'anchor', $overwrite = array() ) { $defaults = array( 'type' => 'text', - 'title' => __( 'HTML anchor', 'super-duper' ), - 'desc' => __( 'Enter a word or two — without spaces — to make a unique web address just for this block, called an “anchor.” Then, you’ll be able to link directly to this section of your page.', 'super-duper' ), + 'title' => __( 'HTML anchor', 'ayecode-connect' ), + 'desc' => __( 'Enter a word or two — without spaces — to make a unique web address just for this block, called an “anchor.” Then, you’ll be able to link directly to this section of your page.', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Advanced', 'super-duper' ), + 'group' => __( 'Advanced', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1562,11 +1562,11 @@ function sd_get_class_input( $type = 'css_class', $overwrite = array() ) { $defaults = array( 'type' => 'text', - 'title' => __( 'Additional CSS class(es)', 'super-duper' ), - 'desc' => __( 'Separate multiple classes with spaces.', 'super-duper' ), + 'title' => __( 'Additional CSS class(es)', 'ayecode-connect' ), + 'desc' => __( 'Separate multiple classes with spaces.', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Advanced', 'super-duper' ), + 'group' => __( 'Advanced', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1585,23 +1585,23 @@ function sd_get_class_input( $type = 'css_class', $overwrite = array() ) { function sd_get_hover_animations_input( $type = 'hover_animations', $overwrite = array() ) { $options = array( - '' => __( 'none', 'super-duper' ), - 'hover-zoom' => __( 'Zoom', 'super-duper' ), - 'hover-shadow' => __( 'Shadow', 'super-duper' ), - 'hover-move-up' => __( 'Move up', 'super-duper' ), - 'hover-move-down' => __( 'Move down', 'super-duper' ), - 'hover-move-left' => __( 'Move left', 'super-duper' ), - 'hover-move-right' => __( 'Move right', 'super-duper' ), + '' => __( 'none', 'ayecode-connect' ), + 'hover-zoom' => __( 'Zoom', 'ayecode-connect' ), + 'hover-shadow' => __( 'Shadow', 'ayecode-connect' ), + 'hover-move-up' => __( 'Move up', 'ayecode-connect' ), + 'hover-move-down' => __( 'Move down', 'ayecode-connect' ), + 'hover-move-left' => __( 'Move left', 'ayecode-connect' ), + 'hover-move-right' => __( 'Move right', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', 'multiple' => true, - 'title' => __( 'Hover Animations', 'super-duper' ), + 'title' => __( 'Hover Animations', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Hover Animations', 'super-duper' ), + 'group' => __( 'Hover Animations', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1620,7 +1620,7 @@ function sd_get_flex_align_items_input( $type = 'align-items', $overwrite = arra } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'align-items' . $device_size . '-start' => 'align-items-start', 'align-items' . $device_size . '-end' => 'align-items-end', 'align-items' . $device_size . '-center' => 'align-items-center', @@ -1630,11 +1630,11 @@ function sd_get_flex_align_items_input( $type = 'align-items', $overwrite = arra $defaults = array( 'type' => 'select', - 'title' => __( 'Vertical Align Items', 'super-duper' ), + 'title' => __( 'Vertical Align Items', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => ' ( ( [%container%]=="row" ) || ( [%display%]=="d-flex" || [%display_md%]=="d-md-flex" || [%display_lg%]=="d-lg-flex" ) ) ', ); @@ -1673,7 +1673,7 @@ function sd_get_flex_justify_content_input( $type = 'flex_justify_content', $ove } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'justify-content' . $device_size . '-start' => 'justify-content-start', 'justify-content' . $device_size . '-end' => 'justify-content-end', 'justify-content' . $device_size . '-center' => 'justify-content-center', @@ -1683,11 +1683,11 @@ function sd_get_flex_justify_content_input( $type = 'flex_justify_content', $ove $defaults = array( 'type' => 'select', - 'title' => __( 'Justify content', 'super-duper' ), + 'title' => __( 'Justify content', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => '( ( [%container%]=="row" ) || ( [%display%]=="d-flex" || [%display_md%]=="d-md-flex" || [%display_lg%]=="d-lg-flex" ) ) ', ); @@ -1727,7 +1727,7 @@ function sd_get_flex_align_self_input( $type = 'flex_align_self', $overwrite = a } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'align-items' . $device_size . '-start' => 'align-items-start', 'align-items' . $device_size . '-end' => 'align-items-end', 'align-items' . $device_size . '-center' => 'align-items-center', @@ -1737,11 +1737,11 @@ function sd_get_flex_align_self_input( $type = 'flex_align_self', $overwrite = a $defaults = array( 'type' => 'select', - 'title' => __( 'Align Self', 'super-duper' ), + 'title' => __( 'Align Self', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => ' [%container%]=="col" ', ); @@ -1780,7 +1780,7 @@ function sd_get_flex_order_input( $type = 'flex_order', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), ); $i = 0; @@ -1791,11 +1791,11 @@ function sd_get_flex_order_input( $type = 'flex_order', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Flex Order', 'super-duper' ), + 'title' => __( 'Flex Order', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), 'element_require' => ' [%container%]=="col" ', ); @@ -1853,7 +1853,7 @@ function sd_get_flex_wrap_input( $type = 'flex_wrap', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'flex' . $device_size . '-nowrap' => 'nowrap', 'flex' . $device_size . '-wrap' => 'wrap', 'flex' . $device_size . '-wrap-reverse' => 'wrap-reverse', @@ -1861,11 +1861,11 @@ function sd_get_flex_wrap_input( $type = 'flex_wrap', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Flex wrap', 'super-duper' ), + 'title' => __( 'Flex wrap', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1901,7 +1901,7 @@ function sd_get_float_input( $type = 'float', $overwrite = array() ) { } } $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'float' . $device_size . '-start' => 'left', 'float' . $device_size . '-end' => 'right', 'float' . $device_size . '-none' => 'none', @@ -1909,11 +1909,11 @@ function sd_get_float_input( $type = 'float', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Float', 'super-duper' ), + 'title' => __( 'Float', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1930,7 +1930,7 @@ function sd_get_float_input( $type = 'float', $overwrite = array() ) { function sd_get_zindex_input( $type = 'zindex', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), 'zindex-0' => '0', 'zindex-1' => '1', 'zindex-5' => '5', @@ -1939,11 +1939,11 @@ function sd_get_zindex_input( $type = 'zindex', $overwrite = array() ) { $defaults = array( 'type' => 'select', - 'title' => __( 'Z-index', 'super-duper' ), + 'title' => __( 'Z-index', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1960,20 +1960,20 @@ function sd_get_zindex_input( $type = 'zindex', $overwrite = array() ) { function sd_get_overflow_input( $type = 'overflow', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), - 'overflow-auto' => __( 'Auto', 'super-duper' ), - 'overflow-hidden' => __( 'Hidden', 'super-duper' ), - 'overflow-visible' => __( 'Visible', 'super-duper' ), - 'overflow-scroll' => __( 'Scroll', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'overflow-auto' => __( 'Auto', 'ayecode-connect' ), + 'overflow-hidden' => __( 'Hidden', 'ayecode-connect' ), + 'overflow-visible' => __( 'Visible', 'ayecode-connect' ), + 'overflow-scroll' => __( 'Scroll', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Overflow', 'super-duper' ), + 'title' => __( 'Overflow', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -1991,12 +1991,12 @@ function sd_get_max_height_input( $type = 'max_height', $overwrite = array() ) { $defaults = array( 'type' => 'text', - 'title' => __( 'Max height', 'super-duper' ), + 'title' => __( 'Max height', 'ayecode-connect' ), 'value' => '', 'default' => '', 'placeholder' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -2013,17 +2013,17 @@ function sd_get_max_height_input( $type = 'max_height', $overwrite = array() ) { function sd_get_scrollbars_input( $type = 'scrollbars', $overwrite = array() ) { $options = array( - '' => __( 'Default', 'super-duper' ), - 'scrollbars-ios' => __( 'IOS Style', 'super-duper' ), + '' => __( 'Default', 'ayecode-connect' ), + 'scrollbars-ios' => __( 'IOS Style', 'ayecode-connect' ), ); $defaults = array( 'type' => 'select', - 'title' => __( 'Scrollbars', 'super-duper' ), + 'title' => __( 'Scrollbars', 'ayecode-connect' ), 'options' => $options, 'default' => '', 'desc_tip' => true, - 'group' => __( 'Wrapper Styles', 'super-duper' ), + 'group' => __( 'Wrapper Styles', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -2175,19 +2175,19 @@ function sd_build_aui_class( $args ) { } if ( isset( $args['pr_md'] ) && $args['pr_md'] !== '' ) { $classes[] = $p_pr . 'md-' . sanitize_html_class( $args['pr_md'] ); - $pt_md = $args['pr_md']; + $pr_md = $args['pr_md']; } else { $pr_md = null; } if ( isset( $args['pb_md'] ) && $args['pb_md'] !== '' ) { $classes[] = 'pb-md-' . sanitize_html_class( $args['pb_md'] ); - $pt_md = $args['pb_md']; + $pb_md = $args['pb_md']; } else { $pb_md = null; } if ( isset( $args['pl_md'] ) && $args['pl_md'] !== '' ) { $classes[] = $p_pl . 'md-' . sanitize_html_class( $args['pl_md'] ); - $pt_md = $args['pl_md']; + $pl_md = $args['pl_md']; } else { $pl_md = null; } @@ -2679,11 +2679,11 @@ function sd_get_class_build_keys() { function sd_get_visibility_conditions_input( $type = 'visibility_conditions', $overwrite = array() ) { $defaults = array( 'type' => 'visibility_conditions', - 'title' => __( 'Block Visibility', 'super-duper' ), - 'button_title' => __( 'Set Block Visibility', 'super-duper' ), + 'title' => __( 'Block Visibility', 'ayecode-connect' ), + 'button_title' => __( 'Set Block Visibility', 'ayecode-connect' ), 'default' => '', 'desc_tip' => true, - 'group' => __( 'Visibility Conditions', 'super-duper' ), + 'group' => __( 'Visibility Conditions', 'ayecode-connect' ), ); $input = wp_parse_args( $overwrite, $defaults ); @@ -2726,13 +2726,13 @@ function sd_user_roles_options( $exclude = array() ) { */ function sd_visibility_rules_options() { $options = array( - 'logged_in' => __( 'Logged In', 'super-duper' ), - 'logged_out' => __( 'Logged Out', 'super-duper' ), - 'user_roles' => __( 'Specific User Roles', 'super-duper' ) + 'logged_in' => __( 'Logged In', 'ayecode-connect' ), + 'logged_out' => __( 'Logged Out', 'ayecode-connect' ), + 'user_roles' => __( 'Specific User Roles', 'ayecode-connect' ) ); if ( class_exists( 'GeoDirectory' ) ) { - $options['gd_field'] = __( 'GD Field', 'super-duper' ); + $options['gd_field'] = __( 'GD Field', 'ayecode-connect' ); } return apply_filters( 'sd_visibility_rules_options', $options ); @@ -2784,14 +2784,14 @@ function sd_visibility_gd_field_options(){ */ function sd_visibility_field_condition_options(){ $options = array( - 'is_empty' => __( 'is empty', 'super-duper' ), - 'is_not_empty' => __( 'is not empty', 'super-duper' ), - 'is_equal' => __( 'is equal', 'super-duper' ), - 'is_not_equal' => __( 'is not equal', 'super-duper' ), - 'is_greater_than' => __( 'is greater than', 'super-duper' ), - 'is_less_than' => __( 'is less than', 'super-duper' ), - 'is_contains' => __( 'is contains', 'super-duper' ), - 'is_not_contains' => __( 'is not contains', 'super-duper' ), + 'is_empty' => __( 'is empty', 'ayecode-connect' ), + 'is_not_empty' => __( 'is not empty', 'ayecode-connect' ), + 'is_equal' => __( 'is equal', 'ayecode-connect' ), + 'is_not_equal' => __( 'is not equal', 'ayecode-connect' ), + 'is_greater_than' => __( 'is greater than', 'ayecode-connect' ), + 'is_less_than' => __( 'is less than', 'ayecode-connect' ), + 'is_contains' => __( 'is contains', 'ayecode-connect' ), + 'is_not_contains' => __( 'is not contains', 'ayecode-connect' ), ); return apply_filters( 'sd_visibility_field_condition_options', $options ); @@ -2806,10 +2806,10 @@ function sd_visibility_field_condition_options(){ */ function sd_visibility_output_options() { $options = array( - 'hide' => __( 'Hide Block', 'super-duper' ), - 'message' => __( 'Show Custom Message', 'super-duper' ), - 'page' => __( 'Show Page Content', 'super-duper' ), - 'template_part' => __( 'Show Template Part', 'super-duper' ), + 'hide' => __( 'Hide Block', 'ayecode-connect' ), + 'message' => __( 'Show Custom Message', 'ayecode-connect' ), + 'page' => __( 'Show Page Content', 'ayecode-connect' ), + 'template_part' => __( 'Show Template Part', 'ayecode-connect' ), ); return apply_filters( 'sd_visibility_output_options', $options ); @@ -2851,7 +2851,7 @@ function sd_template_page_options( $args = array() ) { $pages = get_pages( $args ); - $options = array( '' => __( 'Select Page...', 'super-duper' ) ); + $options = array( '' => __( 'Select Page...', 'ayecode-connect' ) ); if ( ! empty( $pages ) ) { foreach ( $pages as $page ) { if ( ! empty( $page->ID ) && ! empty( $page->post_title ) ) { @@ -2880,7 +2880,7 @@ function sd_template_part_options( $args = array() ) { return $sd_tmpl_part_options; } - $options = array( '' => __( 'Select Template Part...', 'super-duper' ) ); + $options = array( '' => __( 'Select Template Part...', 'ayecode-connect' ) ); $parts = get_block_templates( array(), 'wp_template_part' ); @@ -2962,7 +2962,7 @@ function sd_render_block( $block_content, $block, $instance = '' ) { $valid_type = true; if ( isset( $attributes['output']['message'] ) ) { - $content = $attributes['output']['message'] != '' ? __( stripslashes( $attributes['output']['message'] ), 'super-duper' ) : $attributes['output']['message']; + $content = $attributes['output']['message'] != '' ? __( stripslashes( $attributes['output']['message'] ), 'ayecode-connect' ) : $attributes['output']['message']; if ( ! empty( $attributes['output']['message_type'] ) ) { $content = aui()->alert( array( diff --git a/vendor/ayecode/wp-super-duper/wp-super-duper.php b/vendor/ayecode/wp-super-duper/wp-super-duper.php index 06f76c2..7dda0e7 100755 --- a/vendor/ayecode/wp-super-duper/wp-super-duper.php +++ b/vendor/ayecode/wp-super-duper/wp-super-duper.php @@ -5,7 +5,7 @@ if ( ! class_exists( 'WP_Super_Duper' ) ) { - define( 'SUPER_DUPER_VER', '1.1.24' ); + define( 'SUPER_DUPER_VER', '1.1.33' ); /** * A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress. @@ -130,8 +130,8 @@ public function __construct( $options ) { add_action( 'wp_ajax_super_duper_get_picker', array( __CLASS__, 'get_picker' ) ); // add generator text to head - add_action( 'admin_head', array( $this, 'generator' ) ); - add_action( 'wp_head', array( $this, 'generator' ) ); + add_action( 'admin_head', array( $this, 'generator' ), 99 ); + add_action( 'wp_head', array( $this, 'generator' ), 99 ); } do_action( 'wp_super_duper_widget_init', $options, $this ); @@ -211,7 +211,7 @@ public function get_fusion_params() { } // heading - $param['heading'] = $val['title']; + $param['heading'] = isset( $val['title'] ) ? $val['title'] : ''; // description $param['description'] = isset( $val['desc'] ) ? $val['desc'] : ''; @@ -232,7 +232,7 @@ public function get_fusion_params() { if ( isset( $val['default'] ) && $val['default'] == '0' ) { unset( $param['default'] ); } - $param['value'] = array( '0' => __( "No" ), '1' => __( "Yes" ) ); + $param['value'] = array( '0' => __( "No", 'ayecode-connect' ), '1' => __( "Yes", 'ayecode-connect' ) ); } elseif ( $param['type'] == 'select' || $param['type'] == 'multiple_select' ) { $param['value'] = isset( $val['options'] ) ? $val['options'] : array(); } else { @@ -285,7 +285,7 @@ public static function get_picker( $editor_id = '' ) { // print_r($sd_widgets);exit; if ( ! empty( $sd_widgets ) ) { echo '
              ', '' ); @@ -446,10 +490,10 @@ public function settings_page() {
              settings['pro'], '1' ); ?> id="wpfas-pro" onchange="if(jQuery(this).is(':checked')){jQuery('.wpfas-table-settings').addClass('wpfas-has-pro')}else{jQuery('.wpfas-table-settings').removeClass('wpfas-has-pro')}"/> ', ' ', '', @@ -493,50 +537,50 @@ public function settings_page() {
              - - - settings['local'], '1' ); ?> id="wpfas-local"/> - -
              + + + settings['local'], '1' ); ?> id="wpfas-local"/> + +
              + for="wpfas-shims"> settings['shims'], '1' ); ?> id="wpfas-shims"/> - +
              + for="wpfas-js-pseudo"> settings['js-pseudo'], '1' ); ?> id="wpfas-js-pseudo"/> - +
              settings['dequeue'], '1' ); ?> id="wpfas-dequeue"/> - +