diff --git a/src/bp-activity/bp-activity-filters.php b/src/bp-activity/bp-activity-filters.php index 03a8cc60e5..c63f56547b 100644 --- a/src/bp-activity/bp-activity-filters.php +++ b/src/bp-activity/bp-activity-filters.php @@ -193,6 +193,10 @@ add_filter( 'bp_ajax_querystring', 'bb_activity_directory_set_pagination', 20, 2 ); +// Update activity date_update when any reaction. +add_filter( 'bp_activity_add_user_favorite', 'bb_activity_update_date_updated_on_reactions', 10, 2 ); +add_filter( 'bp_activity_remove_user_favorite', 'bb_activity_update_date_updated_on_reactions', 10, 2 ); + /** Functions *****************************************************************/ /** @@ -3795,3 +3799,82 @@ function bb_activity_directory_set_pagination( $querystring, $object ) { return http_build_query( $querystring ); } + +/** + * Update date_updated on reactions. + * + * @since BuddyBoss [BBVERSION] + * + * @param int $activity_id ID of the activity item being favorited. + * @param int $user_id ID of the user doing the favoriting. + * + * @return void + */ +function bb_activity_update_date_updated_on_reactions( $activity_id, $user_id ) { + $time = bp_core_current_time(); + + $activity = new BP_Activity_Activity( $activity_id ); + if ( 'activity_comment' === $activity->type || in_array( $activity->privacy, array( 'media', 'document', 'video' ), true ) ) { + + // Check if the item_id and secondary_item_id are same. + if ( $activity->item_id === $activity->secondary_item_id && ! in_array( $activity->privacy, array( 'media', 'document', 'video' ), true ) ) { + + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $activity->item_id, $time ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $activity ); + } else { + // Get the parent activity id if the activity is a comment or the sub media, document, video activity. + $main_activity_object = bb_activity_get_comment_parent_activity_object( $activity ); + + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $main_activity_object->id, $time ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $main_activity_object ); + + // If individual medias activity then also get the most parent activity. + if ( + ( + ( + in_array( $main_activity_object->privacy, array( 'media', 'document', 'video' ), true ) && + 'activity_update' === $main_activity_object->type + ) + ) && ! empty( $main_activity_object->secondary_item_id ) + ) { + + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $main_activity_object->secondary_item_id, $this->date_updated ); + + $intermediate_activity = new BP_Activity_Activity( $main_activity_object->secondary_item_id ); + if ( ! empty( $intermediate_activity->id ) ) { + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $intermediate_activity ); + unset( $intermediate_activity ); + } + } + + // Get the parent comment activity object. + $parent_comment_activity_object = bb_activity_get_comment_parent_comment_activity_object( $activity, $main_activity_object->id ); + + // Update the date_updated of the parent comment activity item. + bb_activity_update_date_updated( $parent_comment_activity_object->id, $time ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $parent_comment_activity_object ); + + } + } + + // Update the date_updated of the activity item. + bb_activity_update_date_updated( $activity_id, $time ); + + // Clear the cache for the activity item. + bp_activity_clear_cache_for_activity( $activity ); + + if ( class_exists( 'BuddyBoss\Performance\Cache' ) ) { + BuddyBoss\Performance\Cache::instance()->purge_by_component( 'bp_activity' ); + } +} diff --git a/src/bp-activity/bp-activity-functions.php b/src/bp-activity/bp-activity-functions.php index 85be38eb2f..2451638e43 100644 --- a/src/bp-activity/bp-activity-functions.php +++ b/src/bp-activity/bp-activity-functions.php @@ -2102,6 +2102,7 @@ function bp_activity_add( $args = '' ) { 'item_id' => false, // Optional: The ID of the specific item being recorded, e.g. a blog_id. 'secondary_item_id' => false, // Optional: A second ID used to further filter e.g. a comment_id. 'recorded_time' => bp_core_current_time(), // The GMT time that this activity was recorded. + 'updated_time' => bp_core_current_time(), // The GMT time that this activity was recorded. 'hide_sitewide' => false, // Should this be hidden on the sitewide activity feed? 'is_spam' => false, // Is this activity item to be marked as spam? 'privacy' => 'public', // privacy of the activity. @@ -2130,6 +2131,7 @@ function bp_activity_add( $args = '' ) { $activity->item_id = $r['item_id']; $activity->secondary_item_id = $r['secondary_item_id']; $activity->date_recorded = ( empty( $r['id'] ) || $r['status'] === bb_get_activity_scheduled_status() || ( bb_get_activity_scheduled_status() === $activity->status && $r['status'] === bb_get_activity_published_status() ) ) && $r['recorded_time'] ? $r['recorded_time'] : $activity->date_recorded; + $activity->date_updated = ( empty( $r['id'] ) || $r['status'] === bb_get_activity_scheduled_status() || ( bb_get_activity_scheduled_status() === $activity->status && $r['status'] === bb_get_activity_published_status() ) ) && $r['recorded_time'] ? $r['recorded_time'] : ( $r['updated_time'] ? $r['updated_time'] : bp_core_current_time() ); $activity->hide_sitewide = $r['hide_sitewide']; $activity->is_spam = $r['is_spam']; $activity->privacy = $r['privacy']; @@ -2223,6 +2225,7 @@ function bp_activity_post_update( $args = '' ) { 'privacy' => 'public', 'status' => bb_get_activity_published_status(), 'recorded_time' => bp_core_current_time(), + 'updated_time' => bp_core_current_time(), 'error_type' => 'bool', ) ); @@ -2296,6 +2299,7 @@ function bp_activity_post_update( $args = '' ) { 'item_id' => $activity->item_id, 'secondary_item_id' => $activity->secondary_item_id, 'recorded_time' => ! empty( $r['recorded_time'] ) ? $r['recorded_time'] : $activity->date_recorded, + 'updated_time' => ! empty( $r['updated_time'] ) ? $r['updated_time'] : bp_core_current_time(), 'hide_sitewide' => $activity->hide_sitewide, 'is_spam' => $activity->is_spam, 'privacy' => $r['privacy'], @@ -2326,6 +2330,7 @@ function bp_activity_post_update( $args = '' ) { 'hide_sitewide' => $r['hide_sitewide'], 'privacy' => $r['privacy'], 'recorded_time' => $r['recorded_time'], + 'updated_time' => $r['updated_time'], 'status' => $r['status'], 'error_type' => $r['error_type'], ) @@ -2560,6 +2565,8 @@ function bp_activity_post_type_update( $post = null ) { } else { $activity->content = $activity_summary; } + + $activity->date_updated = bp_core_current_time(); } // Save the updated activity. @@ -3205,6 +3212,7 @@ function bp_activity_get_activity_id( $args = '' ) { 'action' => false, 'content' => false, 'date_recorded' => false, + 'date_updated' => false, ) ); @@ -3228,7 +3236,8 @@ function bp_activity_get_activity_id( $args = '' ) { $r['secondary_item_id'], $r['action'], $r['content'], - $r['date_recorded'] + $r['date_recorded'], + $r['date_updated'] ), $r, $args @@ -3275,6 +3284,7 @@ function bp_activity_delete( $args = '' ) { 'item_id' => false, 'secondary_item_id' => false, 'date_recorded' => false, + 'date_updated' => false, 'hide_sitewide' => false, ) ); @@ -5549,6 +5559,7 @@ function bp_activity_get_edit_data( $activity_id = 0 ) { 'group_avatar' => $group_avatar, 'link_image_index_save' => $link_image_index_save, 'date_recorded' => $activity->date_recorded, + 'date_updated' => $activity->date_updated, 'status' => $activity->status, ); @@ -7398,6 +7409,88 @@ function_exists( 'bb_document_get_published_status' ) && } } +/** + * Update the date_updated of an activity item. + * + * @since BuddyBoss [BBVERSION] + * + * @param int $activity_id Activity ID. + * @param string $time Time to update. + * + * @return bool True on success. + */ +function bb_activity_update_date_updated( $activity_id, $time ) { + global $wpdb; + + $bp = buddypress(); + + $q = $wpdb->prepare( "UPDATE {$bp->activity->table_name} SET date_updated = %s WHERE id = %d", $time, $activity_id ); // phpcs:ignore + + if ( false === $wpdb->query( $q ) ) { // phpcs:ignore + return false; + } + + return true; +} + +/** + * Get parent activity id of the activity item. + * + * @since BuddyBoss [BBVERSION] + * + * @param object $activity Activity object. + * + * @return object Activity object. + */ +function bb_activity_get_comment_parent_activity_object( $activity ) { + + $is_media = in_array( $activity->privacy, array( 'media', 'document', 'video' ), true ); + + // Loop through find the parent id until the item_id and secondary_item_id are same. + while ( + $activity->item_id !== $activity->secondary_item_id && + ( + // Get medias individual activity if muliple uploaded. + ( $is_media && 'groups' !== $activity->component ) || + ( ! $is_media && 'activity_comment' === $activity->type ) + ) + ) { + $temp_activity = new BP_Activity_Activity( $activity->item_id ); + if ( empty( $temp_activity->id ) ) { + unset( $temp_activity ); + return $activity; + } + $activity = $temp_activity; + } + + return $activity; +} + +/** + * Get top level parent comment id of the activity item. + * + * @since BuddyBoss [BBVERSION] + * + * @param object $activity Activity object. + * @param int $main_activity_id Main activity ID. + * + * @return object Activity object. + */ +function bb_activity_get_comment_parent_comment_activity_object( $activity, $main_activity_id ) { + + // Loop through find the id based on the secondary_item_id and having a type is activity_comment and item_id and secondary_item_id equal to $main_activity_id. + while ( $activity->secondary_item_id !== $main_activity_id || 'activity_comment' !== $activity->type ) { + $temp_activity = new BP_Activity_Activity( $activity->secondary_item_id ); + if ( empty( $temp_activity->id ) ) { + unset( $temp_activity ); + return $activity; + } + $activity = $temp_activity; + } + + return $activity; +} + /** * If a blog component is disabled, then display activity action for existing blog activity. * diff --git a/src/bp-activity/bp-activity-template.php b/src/bp-activity/bp-activity-template.php index 8d13767105..662187619e 100644 --- a/src/bp-activity/bp-activity-template.php +++ b/src/bp-activity/bp-activity-template.php @@ -346,7 +346,22 @@ function bp_has_activities( $args = '' ) { 'since' => $r['since'], ); } else { - $r['filter'] = false; + + if ( 'just-me' === $scope && bp_is_activity_directory() ) { + $scope = 'just-me'; + $r['user_id'] = bp_loggedin_user_id(); + $r['filter'] = array( + 'user_id' => $r['user_id'], + 'object' => $r['object'], + 'action' => $r['action'], + 'primary_id' => $r['primary_id'], + 'secondary_id' => $r['secondary_id'], + 'offset' => $r['offset'], + 'since' => $r['since'], + ); + } else { + $r['filter'] = false; + } } // If specific activity items have been requested, override the $hide_spam @@ -774,6 +789,15 @@ function bp_activity_date_recorded() { echo bp_get_activity_date_recorded(); } +/** + * Output the date the activity was updated. + * + * @since BuddyBoss [BBVERSION] + */ +function bb_activity_date_updated() { + echo bb_get_activity_date_updated(); +} + /** * Return the date the activity was recorded. * @@ -796,6 +820,28 @@ function bp_get_activity_date_recorded() { return apply_filters( 'bp_get_activity_date_recorded', $activities_template->activity->date_recorded ); } +/** + * Return the date the activity was updated. + * + * @since BuddyBoss [BBVERSION] + * + * @global object $activities_template {@link BP_Activity_Template} + * + * @return string The date the activity was updated. + */ +function bb_get_activity_date_updated() { + global $activities_template; + + /** + * Filters the date the activity was updated. + * + * @since BuddyBoss [BBVERSION] + * + * @param int $date_updated The activity's date. + */ + return apply_filters( 'bb_get_activity_date_updated', $activities_template->activity->date_updated ); +} + /** * Output the display name of the member who posted the activity. * diff --git a/src/bp-activity/classes/class-bp-activity-activity.php b/src/bp-activity/classes/class-bp-activity-activity.php index d1453fb009..ca6a15298c 100644 --- a/src/bp-activity/classes/class-bp-activity-activity.php +++ b/src/bp-activity/classes/class-bp-activity-activity.php @@ -100,6 +100,14 @@ class BP_Activity_Activity { */ var $date_recorded; + /** + * The date the activity item was recorded, in 'Y-m-d h:i:s' format. + * + * @since BuddyBoss [BBVERSION] + * @var string + */ + var $date_updated; + /** * Whether the item should be hidden in sitewide streams. * @@ -231,6 +239,7 @@ public function populate() { $this->action = $row->action; $this->content = $row->content; $this->date_recorded = $row->date_recorded; + $this->date_updated = $row->date_updated; $this->hide_sitewide = (int) $row->hide_sitewide; $this->mptt_left = (int) $row->mptt_left; $this->mptt_right = (int) $row->mptt_right; @@ -270,6 +279,7 @@ public function save() { $this->action = ! empty( $this->action ) ? apply_filters_ref_array( 'bp_activity_action_before_save', array( $this->action, &$this ) ) : ''; $this->content = ! empty( $this->content ) ? apply_filters_ref_array( 'bp_activity_content_before_save', array( $this->content, &$this ) ) : ''; $this->date_recorded = apply_filters_ref_array( 'bp_activity_date_recorded_before_save', array( $this->date_recorded, &$this ) ); + $this->date_updated = apply_filters_ref_array( 'bp_activity_date_updated_before_save', array( $this->date_updated, &$this ) ); $this->hide_sitewide = apply_filters_ref_array( 'bp_activity_hide_sitewide_before_save', array( $this->hide_sitewide, &$this ) ); $this->mptt_left = apply_filters_ref_array( 'bp_activity_mptt_left_before_save', array( $this->mptt_left, &$this ) ); $this->mptt_right = apply_filters_ref_array( 'bp_activity_mptt_right_before_save', array( $this->mptt_right, &$this ) ); @@ -313,9 +323,9 @@ public function save() { $prev_activity_status = self::bb_get_activity_status( $this->id ); - $q = $wpdb->prepare( "UPDATE {$bp->activity->table_name} SET user_id = %d, component = %s, type = %s, action = %s, content = %s, primary_link = %s, date_recorded = %s, item_id = %d, secondary_item_id = %d, hide_sitewide = %d, is_spam = %d, privacy = %s, status = %s WHERE id = %d", $this->user_id, $this->component, $this->type, $this->action, $this->content, $this->primary_link, $this->date_recorded, $this->item_id, $this->secondary_item_id, $this->hide_sitewide, $this->is_spam, $this->privacy, $this->status, $this->id ); + $q = $wpdb->prepare( "UPDATE {$bp->activity->table_name} SET user_id = %d, component = %s, type = %s, action = %s, content = %s, primary_link = %s, date_recorded = %s, date_updated = %s, item_id = %d, secondary_item_id = %d, hide_sitewide = %d, is_spam = %d, privacy = %s, status = %s WHERE id = %d", $this->user_id, $this->component, $this->type, $this->action, $this->content, $this->primary_link, $this->date_recorded, $this->date_updated, $this->item_id, $this->secondary_item_id, $this->hide_sitewide, $this->is_spam, $this->privacy, $this->status, $this->id ); } else { - $q = $wpdb->prepare( "INSERT INTO {$bp->activity->table_name} ( user_id, component, type, action, content, primary_link, date_recorded, item_id, secondary_item_id, hide_sitewide, is_spam, privacy, status ) VALUES ( %d, %s, %s, %s, %s, %s, %s, %d, %d, %d, %d, %s, %s )", $this->user_id, $this->component, $this->type, $this->action, $this->content, $this->primary_link, $this->date_recorded, $this->item_id, $this->secondary_item_id, $this->hide_sitewide, $this->is_spam, $this->privacy, $this->status ); + $q = $wpdb->prepare( "INSERT INTO {$bp->activity->table_name} ( user_id, component, type, action, content, primary_link, date_recorded, date_updated, item_id, secondary_item_id, hide_sitewide, is_spam, privacy, status ) VALUES ( %d, %s, %s, %s, %s, %s, %s, %s, %d, %d, %d, %d, %s, %s )", $this->user_id, $this->component, $this->type, $this->action, $this->content, $this->primary_link, $this->date_recorded, $this->date_updated, $this->item_id, $this->secondary_item_id, $this->hide_sitewide, $this->is_spam, $this->privacy, $this->status ); } if ( false === $wpdb->query( $q ) ) { @@ -336,6 +346,57 @@ public function save() { add_filter( 'bp_activity_at_name_do_notifications', '__return_false' ); } + // Activity comment or if the media, document, video related activity. + if ( 'activity_comment' === $this->type || in_array( $this->privacy, array( 'media', 'document', 'video' ), true ) ) { + + // Check if the item_id and secondary_item_id are same. + if ( $this->item_id === $this->secondary_item_id && ! in_array( $this->privacy, array( 'media', 'document', 'video' ), true ) ) { + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $this->item_id, $this->date_updated ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $this ); + } else { + // Get the parent activity id if the activity is a comment. + $main_activity_object = bb_activity_get_comment_parent_activity_object( $this ); + + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $main_activity_object->id, $this->date_updated ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $main_activity_object ); + + // If individual medias activity then also get the most parent activity. + if ( + in_array( $main_activity_object->privacy, array( 'media', 'document', 'video' ), true ) && + 'activity_update' === $main_activity_object->type && + ! empty( $main_activity_object->secondary_item_id ) + ) { + + // Update the date_updated of the parent activity item. + bb_activity_update_date_updated( $main_activity_object->secondary_item_id, $this->date_updated ); + + $intermediate_activity = new BP_Activity_Activity( $main_activity_object->secondary_item_id ); + if ( ! empty( $intermediate_activity->id ) ) { + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $intermediate_activity ); + unset( $intermediate_activity ); + } + } + + // Get the parent comment activity object. + $parent_comment_activity_object = bb_activity_get_comment_parent_comment_activity_object( $this, $main_activity_object->id ); + + // Update the date_updated of the parent comment activity item. + bb_activity_update_date_updated( $parent_comment_activity_object->id, $this->date_updated ); + + // Clear the cache for the parent activity item. + bp_activity_clear_cache_for_activity( $parent_comment_activity_object ); + + } + } + /** * Fires after an activity item has been saved to the database. * @@ -484,6 +545,10 @@ public static function get( $args = array() ) { } } + if ( ! empty( $r['order_by'] ) ) { + $r['filter']['since_date_column'] = $r['order_by']; + } + // Regular filtering. if ( $r['filter'] && $filter_sql = self::get_filter_sql( $r['filter'] ) ) { $where_conditions['filter_sql'] = $filter_sql; @@ -540,6 +605,7 @@ public static function get( $args = array() ) { case 'item_id': case 'secondary_item_id': case 'date_recorded': + case 'date_updated': case 'hide_sitewide': case 'mptt_left': case 'mptt_right': @@ -1259,9 +1325,10 @@ public static function get_specific( $activity_ids, $max = false, $page = 1, $pe * @param string $action Action to filter by. * @param string $content Content to filter by. * @param string $date_recorded Date to filter by. + * @param string $date_updated Date to filter by. * @return int|false Activity ID on success, false if none is found. */ - public static function get_id( $user_id, $component, $type, $item_id, $secondary_item_id, $action, $content, $date_recorded ) { + public static function get_id( $user_id, $component, $type, $item_id, $secondary_item_id, $action, $content, $date_recorded, $date_updated ) { global $wpdb; $bp = buddypress(); @@ -1300,6 +1367,10 @@ public static function get_id( $user_id, $component, $type, $item_id, $secondary $where_args[] = $wpdb->prepare( 'date_recorded = %s', $date_recorded ); } + if ( ! empty( $date_updated ) ) { + $where_args[] = $wpdb->prepare( 'date_updated = %s', $date_updated ); + } + if ( ! empty( $where_args ) ) { $where_sql = 'WHERE ' . join( ' AND ', $where_args ); $result = $wpdb->get_var( "SELECT id FROM {$bp->activity->table_name} {$where_sql}" ); @@ -1350,6 +1421,7 @@ public static function delete( $args = array() ) { 'item_id' => false, 'secondary_item_id' => false, 'date_recorded' => false, + 'date_updated' => false, 'hide_sitewide' => false, 'status' => false, ) @@ -1408,6 +1480,11 @@ public static function delete( $args = array() ) { $where_args[] = $wpdb->prepare( 'date_recorded = %s', $r['date_recorded'] ); } + // Date Updated. + if ( ! empty( $r['date_updated'] ) ) { + $where_args[] = $wpdb->prepare( 'date_updated = %s', $r['date_updated'] ); + } + // Hidden sitewide. if ( ! empty( $r['hide_sitewide'] ) ) { $where_args[] = $wpdb->prepare( 'hide_sitewide = %d', $r['hide_sitewide'] ); @@ -1802,7 +1879,7 @@ public static function get_activity_comments( $activity_id, $left, $right, $spam } if ( bb_is_rest() && ! isset( $_GET['apply_limit'] ) ) { - $sql['limit'] = ""; + $sql['limit'] = ''; } else { $sql['limit'] = 'limit ' . $limit; } @@ -1859,7 +1936,6 @@ public static function get_activity_comments( $activity_id, $left, $right, $spam } } - // Calculate depth for each item. foreach ( $ref as &$r ) { $depth = 1; @@ -2148,7 +2224,11 @@ public static function get_filter_sql( $filter_array ) { // Trick: parse to UNIX date then translate back. $translated_date = date( 'Y-m-d H:i:s', strtotime( $filter_array['since'] ) ); if ( $translated_date === $filter_array['since'] ) { - $filter_sql[] = "a.date_recorded > '{$translated_date}'"; + if ( ! empty( $filter_array['since_date_column'] ) && 'date_updated' === $filter_array['since_date_column'] ) { + $filter_sql[] = "a.date_updated > '{$translated_date}'"; + } else { + $filter_sql[] = "a.date_recorded > '{$translated_date}'"; + } } } diff --git a/src/bp-activity/classes/class-bp-activity-template.php b/src/bp-activity/classes/class-bp-activity-template.php index 1d892c960c..57d0bf4dfe 100644 --- a/src/bp-activity/classes/class-bp-activity-template.php +++ b/src/bp-activity/classes/class-bp-activity-template.php @@ -204,6 +204,7 @@ public function __construct( $args ) { 'update_meta_cache' => true, 'pin_type' => '', 'status' => bb_get_activity_published_status(), + 'order_by' => 'date_recorded', ); $r = bp_parse_args( $args, $defaults ); @@ -263,6 +264,7 @@ public function __construct( $args ) { 'update_meta_cache' => $update_meta_cache, 'pin_type' => $pin_type, 'status' => $status, + 'order_by' => $order_by, ) ); diff --git a/src/bp-core/admin/bp-core-admin-schema.php b/src/bp-core/admin/bp-core-admin-schema.php index 014dbb7109..27e2874083 100644 --- a/src/bp-core/admin/bp-core-admin-schema.php +++ b/src/bp-core/admin/bp-core-admin-schema.php @@ -204,6 +204,7 @@ function bp_core_install_activity_streams() { item_id bigint(20) NOT NULL, secondary_item_id bigint(20) DEFAULT NULL, date_recorded datetime NOT NULL, + date_updated datetime NOT NULL, hide_sitewide bool DEFAULT 0, mptt_left int(11) NOT NULL DEFAULT 0, mptt_right int(11) NOT NULL DEFAULT 0, @@ -212,6 +213,7 @@ function bp_core_install_activity_streams() { status varchar(20) NOT NULL DEFAULT 'published', PRIMARY KEY (id), KEY date_recorded (date_recorded), + KEY date_updated (date_updated), KEY user_id (user_id), KEY item_id (item_id), KEY secondary_item_id (secondary_item_id), diff --git a/src/bp-core/admin/bp-core-admin-settings.php b/src/bp-core/admin/bp-core-admin-settings.php index 54ce4a9e13..0e34474245 100644 --- a/src/bp-core/admin/bp-core-admin-settings.php +++ b/src/bp-core/admin/bp-core-admin-settings.php @@ -281,21 +281,6 @@ function bp_admin_setting_callback_enable_relevant_feed() { - - /> - - -

+ +

+
+ $value ) { + if ( isset( $filter_labels[ $key ] ) ) { + $sorted_filter_labels[ $key ] = $filter_labels[ $key ]; + } + } + + // Add the remaining labels that were not part of $activity_filters. + if ( count( $filter_labels ) > count( $sorted_filter_labels ) ) { + foreach ( $filter_labels as $key => $label ) { + if ( ! isset( $sorted_filter_labels[ $key ] ) ) { + $sorted_filter_labels[ $key ] = $label; + } + } + } + } else { + $sorted_filter_labels = $filter_labels; + } + + foreach ( $sorted_filter_labels as $key => $label ) : + $readonly = ''; + if ( 'all' === $key ) { + $readonly = 'disabled'; + } + ?> +
+ + /> + + id="bb_activity_filter_" + name="bb_activity_filter_options[]" + type="checkbox" + value="1" + + /> + +
+ +
+ + +

+
+ $value ) { + if ( isset( $filter_labels[ $key ] ) ) { + $sorted_filter_labels[ $key ] = $filter_labels[ $key ]; + } + } + + // Add the remaining labels that were not part of $activity_filters. + if ( count( $filter_labels ) > count( $sorted_filter_labels ) ) { + foreach ( $filter_labels as $key => $label ) { + if ( ! isset( $sorted_filter_labels[ $key ] ) ) { + $sorted_filter_labels[ $key ] = $label; + } + } + } + } else { + $sorted_filter_labels = $filter_labels; + } + + foreach ( $sorted_filter_labels as $key => $label ) : + $readonly = ''; + if ( 'just-me' === $key ) { + $readonly = 'disabled'; + } + ?> +
+ + /> + + id="bb_activity_filter_" + name="bb_activity_timeline_filter_options[]" + type="checkbox" + value="1" + + /> + +
+ +
+ + +

+
+ $value ) { + if ( isset( $sorting_options_labels[ $key ] ) ) { + $sorted_labels[ $key ] = $sorting_options_labels[ $key ]; + } + } + + // Add the remaining labels that were not part of $sorting_options. + if ( count( $sorting_options_labels ) > count( $sorted_labels ) ) { + foreach ( $sorting_options_labels as $key => $label ) { + if ( ! isset( $sorted_labels[ $key ] ) ) { + $sorted_labels[ $key ] = $label; + } + } + } + } else { + $sorted_labels = $sorting_options_labels; + } + + foreach ( $sorted_labels as $key => $label ) : + $readonly = ''; + if ( 'date_recorded' === $key ) { + $readonly = 'disabled'; + } + ?> +
+ + /> + + id="" + name="bb_activity_sorting_options[]" + type="checkbox" + value="1" + + /> + +
+ +
+ + /> + + th{display:none}.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>td{padding:0}.bp-admin-card.section-bp_media_settings_symlinks{display:block!important}.bp-admin-card.section-bp_search_settings_community table,.bp-admin-card.section-bp_search_settings_post_types table{margin-bottom:20px}.bp-admin-card.section-bp_search_settings_community th[scope=row],.bp-admin-card.section-bp_search_settings_post_types th[scope=row]{width:1px}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing th{display:none}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing td table.extension-listing thead tr th{display:table-cell}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing>td{padding:0}.section-bp_document_settings_extensions+.submit>a{margin-right:5px}table.extension-listing{border-radius:4px;margin:9px 0 12px}table.extension-listing thead th{padding:12px 18px}table.extension-listing thead th.ext-head-extension{width:2.5em}table.extension-listing thead th.ext-head-desc{width:16%}table.extension-listing thead th.ext-head-icon{width:4em}table.extension-listing thead td.ext-head-enable{width:1.2em}table.extension-listing tbody td{padding:10px}table.extension-listing tbody td [class*=" bb-icon-"]{font-size:33px;color:#999;margin-right:8px;vertical-align:middle}table.extension-listing tbody td input.error{border:1px solid red}table.extension-listing tbody td input.hide-border{border:none;background-color:transparent;color:#555;margin:0}table.extension-listing tbody td input.hide-border:focus{background-color:#eee}table.extension-listing tbody td input[type=text]{width:100%}table.extension-listing tbody td #btn-remove-extensions{cursor:pointer;color:#a00;font-size:18px;vertical-align:middle;margin-right:6px}table.extension-listing tbody tr.custom-extension td input.extension-mime[type=text]{width:50%}table.extension-listing tfoot td #btn-add-extensions,table.extension-listing tfoot td #btn-add-video-extensions,table.extension-listing tfoot td #btn-check-mime-type{cursor:pointer;float:left;margin-right:8px}@media screen and (max-width:782px){table.extension-listing{display:block}table.extension-listing tbody,table.extension-listing thead,table.extension-listing tr{display:block;width:100%}table.extension-listing tbody.extra-extension input[type=text],table.extension-listing thead.extra-extension input[type=text],table.extension-listing tr.extra-extension input[type=text]{margin-top:15px;margin-right:10px;width:calc(100% - 10px)}table.extension-listing tbody.extra-extension .icon-select-main,table.extension-listing thead.extra-extension .icon-select-main,table.extension-listing tr.extra-extension .icon-select-main{margin-right:10px}table.extension-listing tr.custom-extension{background-color:#fff}table.extension-listing tr.custom-extension td{padding-right:20px!important}table.extension-listing tfoot{width:100%;display:inline-block;box-sizing:border-box}table.extension-listing tfoot td #btn-add-extensions{margin:10px 0 15px}table.extension-listing thead .ext-head:not(.ext-head-enable){display:none!important}table.extension-listing .ext-head.ext-head-enable{width:100%!important;padding:10px 10px 0 0!important}table.extension-listing tbody td{padding-right:10px!important;width:100%!important;box-sizing:border-box}table.extension-listing tbody td>i{margin:15px 10px 10px 0}table.extension-listing tbody td:before{top:0;right:20px!important;font-weight:600}table.extension-listing tbody td:first-child{padding-right:20px!important}table.extension-listing tbody td .extension-mime{margin-bottom:15px}table.extension-listing tbody td .btn-check-mime-type{margin-right:10px}}table.extension-listing select.extension-icon{display:none}table.extension-listing .icon-select-main{position:relative;display:inline-block;vertical-align:middle;width:100%}table.extension-listing .icon-select-main .icon-select-button{font-size:14px;line-height:2;color:#32373c;border:1px solid #7e8993;border-width:1px;box-shadow:none;border-radius:3px;padding:3px 8px 3px 24px;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat left 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;max-width:100%;width:100%;display:inline-block;box-sizing:border-box}table.extension-listing .icon-select-main .icon-select-button li{list-style:none;margin:0;line-height:20px;white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-align:right;color:#555}table.extension-listing .icon-select-main .icon-select-button i{font-size:22px;color:#888;margin-left:10px;vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list{position:absolute;right:0;left:0;min-width:160px;background-color:#fff;border:1px solid #ccd0d4;border-radius:3px;box-shadow:0 2px 12px 1px rgba(0,0,0,.1);padding:0;bottom:100%;max-height:60vh;overflow:auto;display:none}table.extension-listing .icon-select-main .custom-extension-list ul.custom-extension-list-select{font-size:0;color:#888}table.extension-listing .icon-select-main .custom-extension-list li{list-style:none;cursor:pointer;font-size:14px;padding:8px 12px;margin:0}table.extension-listing .icon-select-main .custom-extension-list li:first-child{border-bottom:1px solid #eee;padding-top:10px;padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:nth-child(2){padding-top:10px}table.extension-listing .icon-select-main .custom-extension-list li:last-child{padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:hover{background-color:#f9f9f9}table.extension-listing .icon-select-main .custom-extension-list li span{vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list i{font-size:28px;margin-left:10px;vertical-align:middle;color:#888}@media screen and (max-width:1023px){#bp-hello-container.bp-hello-mime{bottom:0}#bp-hello-container.bp-hello-mime .bp-hello-header{height:auto;max-height:initial;min-height:58px}}body.site-users-php th#role,body.users-php th#role,body.users_page_bp-signups th#count_sent{width:10%}body.site-users-php th#email,body.site-users-php th#name,body.users-php th#email,body.users-php th#name,body.users-php th#registered,body.users_page_bp-signups th#date_sent,body.users_page_bp-signups th#email,body.users_page_bp-signups th#name,body.users_page_bp-signups th#registered{width:15%}body.users-php th#blogs,body.users_page_bp-signups th#blogs{width:20%}body.users_page_bp-signups td.count_sent,body.users_page_bp-signups th.column-count_sent{text-align:center}.bp-signups-list table{margin:1em 0}.bp-signups-list .column-fields{font-weight:700}#bp-activities-form .fixed .column-author{width:15%}#bp-activities-form #the-comment-list td.comment img,#bp-activities-form #the-comment-list td.comment video{max-width:300px;display:block;margin:.6em 0}.activity-attached-gif-container{cursor:pointer;max-width:480px}.activity-attached-gif-container .gif-player{position:relative;max-width:480px}.activity-attached-gif-container .gif-player video{margin:0}.activity-attached-gif-container .gif-play-button{height:80px;width:80px;position:absolute;right:29%;margin-right:-32px;top:69%;margin-top:-44px}.activity-attached-gif-container .gif-play-button .bb-icon-play-thin{font-size:80px;width:80px;height:80px;margin:0;padding:0;line-height:0}.activity-attached-gif-container .gif-icon{background:url(../images/GIF.svg) center no-repeat;position:absolute;display:block;height:28px;width:44px;bottom:0;right:0;border-radius:4px 0 0 0;background-size:28px;padding:8px;background-color:#000;opacity:.45}form#bp-groups-form .fixed .column-comment{width:20%}@media only screen and (min-width:700px){#poststuff #bbp_reply_attributes select{min-width:70%}}body.post-type-reply #edit-slug-box{padding-right:0;margin-top:0}#bbpress_group_admin_ui_meta_box fieldset{min-width:230px}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;right:15px;left:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:right;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now .table_discussion{float:left;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-left:6px;padding-right:0;text-align:left;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now .t .b{font-size:18px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-left:12px;padding-right:0;padding-top:6px;color:#777}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now a.button{float:left;clear:left;position:relative;top:-5px}.bp-new-notice-panel{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:13px;line-height:2.1;margin:1.5em 0 3em;overflow:auto;padding:10px 25px 25px;position:relative}.bp-new-notice-panel label{clear:both;float:right;margin-left:3%;width:20%}.bp-new-notice-panel input,.bp-new-notice-panel textarea{clear:none;margin-bottom:1em;width:75%}.bp-new-notice-panel input[type=text]:after,.bp-new-notice-panel textarea:after{clear:both;content:" ";display:table}.bp-new-notice-panel .button-primary{margin-right:23%;width:auto}.bp-notice-about{font-size:1em;margin-bottom:1em}.bp-new-notice{margin-bottom:1em;margin-top:0}.bp-notices-list{margin-bottom:0}@media screen and (max-width:782px){.bp-new-notice-panel{margin-bottom:1.5em}.bp-new-notice-panel input,.bp-new-notice-panel textarea{margin-right:0;width:100%}.bp-new-notice-panel .button-primary{margin-right:0;width:auto}.bp-new-notice-panel .button{max-width:45%;word-wrap:break-word}.bp-notice-about{margin-top:0;margin-bottom:1em}.bp-new-notice{margin-bottom:.5em}#bp-activities-form .wp-list-table th.column-primary.column-author,form#bp-groups-form .wp-list-table th.column-primary.column-comment{width:auto}.wp-list-table.activities tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before,.wp-list-table.groups tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{font-weight:600}}body.post-type-bp-group-type .postbox .inside,body.post-type-bp-member-type .postbox .inside{padding:0 12px 12px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker{display:flex;flex-direction:row}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one{display:flex;flex-direction:column;vertical-align:middle;text-align:-webkit-match-parent;flex-basis:auto}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child),body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child){margin-right:15px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label{margin-bottom:10px;color:#686868}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker{display:none}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker{display:block}body.post-type-bp-group-type #group-type-shortcode,body.post-type-bp-member-type #member-type-shortcode{line-height:1;margin-left:10px;padding:7px;display:inline-block}table.bp-postbox-table{background:#f9f9f9;margin-top:22px;border-radius:3px}table.bp-postbox-table thead th{font-weight:600}table.bp-postbox-table tbody th{width:23%;vertical-align:top}table.bp-postbox-table tbody td input[type=checkbox]{margin-left:8px}body.post-type-bp-email #excerpt{height:auto}body.post-type-bp-email th#situation{width:20%}body.post-type-bp-email td.column-situation ul{margin:0}body.post-type-bp-email .categorydiv label{display:block;float:right;padding-right:25px;text-indent:-25px}.buddyboss_page_bbp-repair .wrap,.buddyboss_page_bp-repair-community .wrap,.buddyboss_page_bp-tools .wrap{max-width:950px}.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p,.buddyboss_page_bp-tools p{line-height:2}.buddyboss_page_bbp-repair fieldset,.buddyboss_page_bp-repair-community fieldset,.buddyboss_page_bp-tools fieldset{margin:2em 0 0}.buddyboss_page_bbp-repair legend,.buddyboss_page_bp-repair-community legend,.buddyboss_page_bp-tools legend{color:#23282d;font-size:1.3em;font-weight:600;margin:1em 0}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label,.buddyboss_page_bp-tools label{clear:right;display:block;line-height:1.5;margin:0 0 7px;padding:3px;border-radius:3px}@media screen and (max-width:782px){.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p{line-height:1.5}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label{margin-bottom:1em;padding-left:25px;text-indent:-33px}.buddyboss_page_bbp-repair .checkbox,.buddyboss_page_bp-repair-community .checkbox{padding:0 30px 0 0}}.bp-display-none{display:none}.wrap .bp-help-doc{position:relative;margin-top:20px;padding:2.2em 2.8em 2em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-help-card-grid{margin-top:20px;min-width:255px;max-width:1050px}.bp-help-card-grid .bp-help-main-menu-wrap{display:flex;flex-flow:wrap;margin-right:-10px;margin-left:-10px}.bp-help-card-grid .bp-help-card{margin:0 10px 2%;background-color:#fff;border:1px solid #ccd0d4;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;flex:0 0 calc(33.33% - 20px);min-width:0}.bp-help-card-grid .bp-help-card .inside{padding:1.8em 2em 5em}.bp-help-card-grid .bp-help-card h2{font-size:18px;padding:0;margin:0 0 1em;line-height:1.4}.bp-help-card-grid .bp-help-card p:first-child{margin-top:0}.bp-help-card-grid .bp-help-content-wrap{display:flex}.bp-help-content-wrap{display:flex;flex-flow:row wrap;min-width:255px;max-width:1050px;background-color:#fff;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box}.bp-help-sidebar>ul{margin:0}.bp-help-sidebar>ul>li>a{color:#23282d;font-size:16px;font-weight:600}.bp-help-sidebar>ul>li>ul{margin-top:20px}.bp-help-sidebar>ul>li>ul li{line-height:1.6;margin:1.2em 0}.bp-help-sidebar>ul>li ul>li.selected>a{font-weight:600}.bp-help-sidebar>ul>li>ul>li>ul>li{margin-right:1.6em;list-style-type:disc}.bp-help-sidebar>ul span.open{font-size:0}.bp-help-sidebar>ul span.open:after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:bottom;font-size:10px;color:#999;cursor:pointer}.bp-help-sidebar>ul span.open.active:after{transform:rotate(-90deg)}.bp-help-content p,.bp-help-content ul li{line-height:2}.bp-help-content ul.bp-help-menu{margin:0 0 2.5em}.bp-help-content ul.bp-help-menu li{display:inline}.bp-help-content ul.bp-help-menu li.miscellaneous{display:none!important}.bp-help-content ul.bp-help-menu li:not(:last-child):after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:middle;font-size:10px;color:#999}.bp-help-content ul.bp-help-menu li:last-child a{color:#999}.bp-help-content h1{font-weight:500;font-size:2em;margin-bottom:1em}.bp-help-content h2{font-size:1.5em;margin-bottom:1em}.bp-help-content h3{font-size:1.2em;margin-bottom:1em}.bp-help-content code{border-radius:3px}.bp-help-content ol,.bp-help-content ul{margin-right:25px;margin-top:6px;line-height:1.5}.bp-help-content ul li{list-style-type:circle}.bp-help-content ol li{list-style-type:decimal}.bp-help-content hr{border-top:none;border-bottom:1px solid #eaeaea}.bp-help-content table{border:1px solid #eaeaea;border-collapse:collapse;width:100%;margin-bottom:3em}.bp-help-content th{background:#f9f9f9;font-weight:500;border-bottom:1px solid #eaeaea}.bp-help-content td,.bp-help-content th{padding:10px 12px}.bp-help-content img{max-width:100%;width:auto;height:auto;border:1px solid #ddd;border-radius:5px;box-shadow:0 3px 20px -1px rgba(7,10,25,.1)}.bp-help-content .article-child>ul>li{list-style-type:disc}.bp-help-content .article-child .actions,.bp-help-content .article-child .sub-menu-count{display:none}.bp-help-main-menu-wrap div.notice{margin:0 10px!important;width:100%}@media screen and (min-width:782px){.bp-help-sidebar{background:#f9f9f9;padding:2.5em;border-left:1px solid #ccd0d4;border-radius:0 6px 6px 0;-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;min-width:0;overflow:initial;width:100%;min-height:60vh}.bp-help-content{padding:2.5em 3em;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.bp-help-content th:first-child{width:40%}}@media screen and (max-width:781px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(50% - 20px);min-width:0}.bp-help-sidebar{background:#f9f9f9;padding:2.5em;width:100%;min-height:auto;border-bottom:1px solid #ccd0d4;border-radius:6px 6px 0 0}.bp-help-content{padding:2.5em;width:100%}.bp-help-content th:last-child{display:none}}@media screen and (max-width:550px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(100% - 20px)}}#buddypress-update.not-shiny .update-message{border-right:0;padding-right:36px}#buddypress-update.not-shiny .update-message:before{content:"\f534"}.bp_buddyboss_app_wrap{min-width:255px;max-width:1150px}.bp_buddyboss_app_wrap .buddyboss-app-featured{margin:20px 2px 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block,.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{background:#fff;margin:0 0 20px;padding:2em 2.8em;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-items{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around;margin:0 -10px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item{-webkit-box-flex:1;flex:1;margin:2em 1em;min-width:200px;width:30%}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{border-top:2px solid #f9f9f9;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;-webkit-box-pack:justify;justify-content:space-between;margin:0 -2em;padding:20px 2em}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{display:none}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item:nth-of-type(-n+3){display:flex}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item:nth-child(-n+3){display:block}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon{justify-content:left}.bp_buddyboss_app_wrap .buddyboss-app-banner-block img{height:62px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-pack:justify;justify-content:space-between;padding:24px 0 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content h3{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content p{margin:0 0 auto}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{background:#f7f7f7;border:1px solid #e6e6e6;height:100px;margin:0 0 0 20px;width:100px}.bp_buddyboss_app_wrap .buddyboss-app-column-block img{max-height:50px;max-width:50px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1;flex-wrap:wrap;height:20%;-webkit-box-pack:justify;justify-content:space-between;min-width:200px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content h2{float:right;margin-top:10px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content p{float:right;margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-button{border-radius:3px;cursor:pointer;display:block;height:37px;line-height:37px;text-align:center;text-decoration:none;background-color:#00aae1;color:#fff;width:124px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image{margin-left:2em;padding:1em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image .buddyboss-app-img{max-height:130px;max-width:160px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around;align-self:stretch;padding:1em 0}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content h1{padding-bottom:0}.bp_buddyboss_app_wrap .buddyboss-app-column-section{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-column{-webkit-box-flex:1;flex:1;min-width:0;width:50%;padding-left:20px}.bp_buddyboss_app_wrap .buddyboss-app-column:last-child{padding-left:0}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{box-sizing:border-box;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 0 20px;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{background:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{display:-webkit-box;display:flex;flex-wrap:wrap}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block img{height:225px;margin:0 -2em 0 2em}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 1 100px;min-width:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block h1{margin-top:-12px}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block p{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-buttons{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content a{width:48%}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block{background-color:#00aae1;text-align:center}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block h1{color:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block p{color:#fafafa}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block img{margin:10px 0;max-width:100%}body.post-type-bp_ps_form .page-title-action{display:none}.buddypress .wrap div#message,.buddypress .wrap div.notice{margin:25px 0 15px}tr.child-no-padding th{padding:0 0 0 10px}tr.child-no-padding td{padding:5px 10px}tr.child-no-padding-first th{padding:20px 0 0 10px}tr.child-no-padding-first td{padding:15px 10px 5px}@media screen and (max-width:782px){.form-table tr.child-no-padding td,.form-table tr.child-no-padding-first td{padding-right:0}}td.inviter.column-inviter strong img{float:right;margin-left:10px;margin-top:1px}td label.platform-activity{clear:right;display:block;line-height:1.5;margin:0 0 1em}.nav-tab-wrapper .bp-emails-customizer,.nav-tab-wrapper .bp-group-customizer,.nav-tab-wrapper .bp-user-customizer{padding-left:6px}.nav-tab-wrapper .bp-emails-customizer:after,.nav-tab-wrapper .bp-group-customizer:after,.nav-tab-wrapper .bp-user-customizer:after{font-family:dashicons;content:"\f345";margin-right:3px;display:inline-block;vertical-align:top}.bb-nickname-hide-last-name{margin-top:-21px}.bb-nickname-hide-last-name input[type=checkbox]{margin-top:0}.bb-nickname-hide-first-name{margin-top:-8px}.bb-nickname-hide-first-name input[type=checkbox]{margin-top:0}.loader-repair-tools{border:4px solid #f3f3f3;border-top:4px solid #3498db;border-left:4px solid green;border-right:4px solid red;border-bottom:4px solid pink;border-radius:50%;width:10px;height:10px;animation:spin 2s linear infinite;display:inline-block;margin-right:8px;vertical-align:middle}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}body .section-repair_community .settings fieldset .submit a.disable-btn{pointer-events:none}body .section-repair_community .settings fieldset .checkbox label code{margin-right:10px}@media screen and (max-width:782px){.bb-nickname-hide-last-name{margin-top:-2px}.bb-nickname-hide-first-name{margin-top:0}}.animate-spin{animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-o-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-ms-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}.wp-block-embed{margin:0}.wp-block-embed iframe{max-width:100%}#bp-help-content-area.loading,#bp-help-main-menu-wrap.loading,.bp-help-sidebar.loading{display:flex;justify-content:center;align-items:center}.content-loader{display:inline-block;position:relative;width:80px;height:80px}.content-loader div{display:inline-block;position:absolute;right:5px;width:9px;background:#dadada;animation:contentLoader 1.2s cubic-bezier(0,.5,.5,1) infinite}.content-loader div:nth-child(1){right:8px;animation-delay:-.24s}.content-loader div:nth-child(2){right:28px;animation-delay:-.12s}.content-loader div:nth-child(3){right:48px;animation-delay:0}#the-moderation-request-list .blocked_member>img,#the-moderation-request-list .content_owner>img{vertical-align:middle;margin-left:5px}#the-moderation-request-list [data-colname] a{outline:0;box-shadow:none}#the-moderation-request-list [data-colname] a img{display:inline-block;vertical-align:middle}#the-moderation-request-list .content_type strong{color:#1d2327}#the-moderation-request-list .content_type strong>span{color:grey}@keyframes contentLoader{0%{top:8px;height:50px}100%,50%{top:24px;height:28px}}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label{min-width:27%}#bp_moderation_settings_reporting label[for=bpm_reporting_content_reporting]{margin-top:5px;display:block}#bp_moderation_settings_reporting .small-text{width:48px;min-height:24px;height:24px}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label{display:inline-block;margin-bottom:30px}#bp_moderation_settings_blocking label.is_disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled,#bp_moderation_settings_reporting label.is_disabled{pointer-events:none;opacity:.5}#bp_moderation_settings_blocking label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.is_disabled input[type=checkbox]:disabled{opacity:1;border-color:inherit}#bb-hello-container.deactivation-popup,#bp-hello-container.deactivation-popup{top:50%;bottom:initial;transform:translateY(-50%);overflow:auto;max-height:90%;max-width:640px;margin:0 auto}#bb-hello-container.deactivation-popup .bb-hello-footer,#bb-hello-container.deactivation-popup .bp-hello-footer,#bp-hello-container.deactivation-popup .bb-hello-footer,#bp-hello-container.deactivation-popup .bp-hello-footer{position:static;padding:10px 23px}#bb-hello-container.deactivation-popup .bb-hello-footer button+button,#bb-hello-container.deactivation-popup .bp-hello-footer button+button,#bp-hello-container.deactivation-popup .bb-hello-footer button+button,#bp-hello-container.deactivation-popup .bp-hello-footer button+button{margin-right:10px}#bb-hello-container.deactivation-popup .bb-hello-content,#bb-hello-container.deactivation-popup .bp-hello-content,#bp-hello-container.deactivation-popup .bb-hello-content,#bp-hello-container.deactivation-popup .bp-hello-content{height:auto;padding:20px 23px}#bb-hello-container.deactivation-popup .bb-hello-content h4,#bb-hello-container.deactivation-popup .bp-hello-content h4,#bp-hello-container.deactivation-popup .bb-hello-content h4,#bp-hello-container.deactivation-popup .bp-hello-content h4{margin-bottom:0}#bb-hello-container.deactivation-popup .bb-hello-content ul,#bb-hello-container.deactivation-popup .bp-hello-content ul,#bp-hello-container.deactivation-popup .bb-hello-content ul,#bp-hello-container.deactivation-popup .bp-hello-content ul{margin-right:17px;list-style-type:disc}#bb-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bb-hello-container.deactivation-popup .bp-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bp-hello-content>p:first-child{margin-top:0}#bp_moderation_action td a{text-decoration:none}.row-actions .suspend a,.row-actions .suspend a:hover{color:#dc3232}.users tr.suspended-user{background-color:#f5dada}h2.has_tutorial_btn{position:relative}h2.has_tutorial_btn .bbapp-tutorial-btn{position:absolute;left:0;right:initial;top:5px;font-weight:400}h2.has_tutorial_btn .bbapp-tutorial-btn p{margin:0}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled{color:#fff;background:#2271b1}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled:hover{background:#135e96;border-color:transparent}@media screen and (max-width:580px){h2.has_tutorial_btn{margin-bottom:65px}h2.has_tutorial_btn .bbapp-tutorial-btn{top:inherit;bottom:-55px}}.bb-screen-position-outer{display:flex;width:180px;justify-content:space-between}.bb-screen-position-outer .bb-screen-position{display:flex;width:85px;flex-direction:column;text-align:center}.bb-screen-position-outer .bb-screen-position input[type=radio]{opacity:0;visibility:hidden;height:0}.bb-screen-position-outer .bb-screen-position .option{position:relative;display:flex;flex-direction:column}.bb-screen-position-outer .bb-screen-position .option:before{content:" ";height:80px;width:80px;background:#f0f0f1;display:flex;border-radius:5px;border:2px solid #ccd0d4;transition:all .3s ease}.bb-screen-position-outer .bb-screen-position .option:after{content:" ";width:40px;height:20px;border-radius:2px;background:#c3c4c7;position:absolute;top:55px}.bb-screen-position-outer .bb-screen-position .option.opt-right:after{left:8px}.bb-screen-position-outer .bb-screen-position .option.opt-left:after{right:8px}.bb-screen-position-outer .bb-screen-position .option span{font-size:14px;color:#999;line-height:2}.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_left:checked:checked+.option:before,.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_right:checked:checked+.option:before{border-color:#2370b1}.bp-messages-feedback .bp-feedback.error{margin:0;border:0;padding:0}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon{border-radius:0 4px 4px 0;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px 8px;border:1px solid #ccc;border-radius:4px 0 0 4px;border-right:0;width:100%}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback,.admin-notice .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon,.admin-notice .bp-feedback .bp-icon{border-radius:0 4px 4px 0;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p,.admin-notice .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px;border:1px solid #ccc;border-radius:4px 0 0 4px;border-right:0;width:100%}.bp-messages-feedback .bp-feedback.warning .bp-icon{background-color:#f7ba45}.bp-messages-feedback .bp-feedback.warning .bp-icon:before{font-family:bb-icons;content:"\e855"}.bb-error-section{padding:10px;margin-right:-210px;background:#ffdcdc;color:#d42929;line-height:1.5;border:1px solid #ffc5ca;border-radius:4px}@media screen and (max-width:782px){.bb-error-section{margin-right:0}}.bb-warning-section-wrap.hidden-header>th{opacity:0;visibility:hidden;padding:0;margin:0}.bb-warning-section-wrap.hidden-header>th+td{padding-right:0;padding-left:0}.bb-warning-section{padding:10px;margin-right:-210px;background:#fff3c8;color:#8b6300;line-height:1.5;border:1px solid #ffeeb3;border-radius:4px}@media screen and (max-width:782px){.bb-warning-section{margin-right:0}}.status-line{display:inline-block;font-size:14px;padding:10px 15px;background:#f0f0f1;border-radius:5px;color:grey}.status-line:before{content:"";display:inline-block;width:10px;height:10px;border-radius:100%;background:grey;margin-left:10px;vertical-align:baseline}.status-line.error-connected{color:#ce1010}.status-line.error-connected:before{background:#ce1010}.status-line.connected{color:#858585}.status-line.connected:before{background:#8fd14f}.status-line.warn-connected{color:#858585}.status-line.warn-connected:before{background:#fac710}.buddyboss_page_bp-settings .bp-avatar-nav{display:none}.avatar-options .avatar-custom-input{display:inline-block;margin:0 0 0 7px}.avatar-options .avatar-custom-input+p.description{margin-top:15px}.avatar-options .avatar-custom-input>label{display:inline-block;vertical-align:top}.avatar-options .avatar-custom-input input[type=radio]{opacity:0;visibility:hidden;height:0;margin:0;padding:0!important;border:0;display:block}.avatar-options .avatar-custom-input input[type=radio]:checked+label .img-block img{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1}.avatar-options .avatar-custom-input input[type=radio]:checked:before{position:absolute}.avatar-options .avatar-custom-input .img-block{display:flex;border-radius:5px;margin-bottom:5px}.avatar-options .avatar-custom-input img{width:80px;height:80px;border:1px solid #ccd0d4;border-radius:5px;object-fit:cover}.avatar-options .avatar-custom-input span{display:block;text-align:center;color:#999}.avatar-options .avatar-custom-input .description{margin-top:15px}.avatar-options .bb-default-custom-upload-file .bb-upload-container img{margin-bottom:10px;max-width:120px}.avatar-options .bb-default-custom-upload-file .button.delete{border-color:#d33;color:#d33;margin-right:5px}.avatar-options .bb-default-custom-upload-file .button.delete.bp-hide{display:none}.avatar-options .bb-default-custom-upload-file.cover-uploader .bb-upload-container img{max-width:300px;width:100%}.avatar-options .cover-uploader-label{position:relative;display:inline-block;overflow:hidden;cursor:pointer}.avatar-options .cover-uploader-label .cover-uploader-hide{border:0;opacity:0;position:absolute;left:0;top:0;bottom:0}.avatar-options .image-width-height>label{min-width:80px;display:inline-block}.avatar-options .image-width-height .description{margin-right:85px;margin-bottom:15px}@media screen and (max-width:782px){.avatar-options .image-width-height>label{min-width:auto;margin-bottom:10px}.avatar-options .image-width-height .description{margin-right:0}}.bp-admin-card .avatar-options .no-field-notice{margin:15px 0;padding:10px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-uploader-progress div.error{margin:5px 0 2px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-progress{margin-left:0}.preview_avatar_cover .preview-switcher{margin-bottom:25px}.preview_avatar_cover .preview-switcher .button:focus{box-shadow:none}.preview_avatar_cover .preview-block{max-width:260px;border:1px solid #ccd0d4;border-radius:5px;overflow:hidden;margin-bottom:25px;display:none}.preview_avatar_cover .preview-block.active{display:block}.preview_avatar_cover .app-preview-wrap{max-width:200px}.preview_avatar_cover .app-preview-wrap .preview-item-avatar{right:50%;border-radius:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);overflow:hidden}.preview_avatar_cover .preview-item-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;min-height:80px;max-height:80px;background-color:#ccc;overflow:hidden}.preview_avatar_cover .preview-item-cover.large-image{min-height:130px;max-height:130px}.preview_avatar_cover .preview-item-avatar{height:75px;width:75px;position:relative;top:-35px;right:25px;border:3px solid #fff;border-radius:5px}.preview_avatar_cover .preview-item-avatar.centered-image{right:50%;transform:translateX(50%)}.preview_avatar_cover .preview-item-avatar img{background-color:#f9f9f9}.preview_avatar_cover .preview-item-avatar img,.preview_avatar_cover .preview-item-cover img{object-fit:cover;width:100%}.preview_avatar_cover .preview-item-avatar img[src=""],.preview_avatar_cover .preview-item-cover img[src=""]{display:none}.preview_avatar_cover:not(.has-avatar) .preview-item-avatar{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-cover{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-avatar{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.preview_avatar_cover:not(.has-cover):not(.has-avatar){display:none}.preview_avatar_cover .button-group>.button:last-child:first-child{border-radius:3px}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar{border-radius:50%}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar img{border-radius:50%}.group-cover-options .preview_avatar_cover .app-preview-wrap{position:relative}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-cover{min-height:120px;max-height:120px;margin-bottom:45px}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-avatar{top:25px;position:absolute;border-radius:12px;border:0;height:70px;width:70px}.buddyboss_page_bp-settings #TB_window,body.users_page_bp-profile-edit #TB_window{height:auto!important;width:820px!important;max-width:90%;top:50%!important;transform:translateY(-50%);max-height:90%;overflow:auto}.buddyboss_page_bp-settings #TB_window .bp-avatar #avatar-to-crop,body.users_page_bp-profile-edit #TB_window .bp-avatar #avatar-to-crop{margin-bottom:15px}.buddyboss_page_bp-settings #TB_ajaxContent,body.users_page_bp-profile-edit #TB_ajaxContent{height:auto!important;width:auto!important;padding:15px}table tbody td .bb-description{color:#999;margin-top:6px;margin-bottom:0}.bb-group-element,.bb-group-headers-element,.bb-member-directory-element,.bb-member-directory-profile-action,.bb-profile-header-element{margin-bottom:10px}@media screen and (max-width:782px){.bb-group-element input[type=checkbox],.bb-group-headers-element input[type=checkbox],.bb-member-directory-element input[type=checkbox],.bb-member-directory-profile-action input[type=checkbox],.bb-profile-header-element input[type=checkbox]{width:auto}}.bb-header-style-outer{display:flex}.bb-header-style-outer .bb-header-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-header-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-header-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-header-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-header-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-left.png) no-repeat center}html[dir=rtl] .bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-right.png) no-repeat center}.bb-header-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-group-header-center.png) no-repeat center}.bb-header-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-header-style-outer .bb-header-style #bb-group-header-style-centered:checked:checked+.option:before,.bb-header-style-outer .bb-header-style #bb-group-header-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer{display:flex}.bb-grid-style-outer .bb-grid-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-grid-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-grid-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-grid-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-grid-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-right.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option.opt-centered:after{background:url(../../images/bb-group-directory-center.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-centered:checked:checked+.option:before,.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer .bb-header-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-right.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-profile-header-center.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-stylecentered:checked:checked+.option:before,.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-styleleft:checked:checked+.option:before{border-color:#2370b1}.bb-head-notice{background-color:#f6f6f6;border-radius:4px;color:#999;display:inline-block;font-size:12px;font-weight:400;line-height:1.5;margin-top:10px;max-width:140px;padding:5px 10px;width:auto}.bb-head-notice a{color:inherit;font-weight:700;text-decoration:none}.bb-inactive-field>th:before,.bb-pro-inactive>th:before{content:"\eecc";font-family:bb-icons;margin-left:5px;vertical-align:top;display:inline-block;line-height:1;font-weight:300;font-size:15px}.bb-inactive-field>td,.bb-pro-inactive>td{opacity:.3}.bb-inactive-field>td,.bb-inactive-field>td *,.bb-pro-inactive>td,.bb-pro-inactive>td *{pointer-events:none;user-select:none}.bb-active-field>th:before,.bb-pro-active>th:before{display:none}.bb-active-field .bb-head-notice,.bb-pro-active .bb-head-notice{display:none}.bp-hello-email .bp-hello-title .count,.btn-open-missing-email .count{display:inline-block;background-color:#2271b1;color:#fff;padding:1px 6px;border-radius:4px;line-height:1.3;font-size:smaller}.btn-open-missing-email+#bp-hello-backdrop{display:block}.bp-hello-email .bp-hello-title .count{font-size:inherit;padding:2px 10px;margin-left:10px}.bp-hello-email .bp-hello-content{height:auto;padding:0 23px;min-height:180px;max-height:calc(100vh - 320px);margin-bottom:62px}.bp-hello-email .missing-email-list ul{list-style:disc;margin:25px 20px 25px 0}.bp-hello-email .bb-popup-buttons{position:absolute;bottom:0;padding:15px;text-align:left;width:calc(100% - 30px);margin:0 -23px;border-top:1px solid var(--bp-hello-color-secondary);background-color:#f0f0f1}@media screen and (orientation:landscape) and (max-height:480px){.bp-hello-email .bp-hello-content{min-height:110px}}#bp-hello-container.bp-hello-email{top:50%;bottom:initial;transform:translateY(-50%);margin-top:32px}#bp-hello-container.bp-hello-email .button-primary{color:#fff;margin-right:10px}@media screen and (max-width:480px){#bp-hello-container.bp-hello-email .button-primary{margin-right:0}}#bp_notification_settings_automatic table.render-dynamic-notification,#bp_notification_settings_automatic table.render-dynamic-notification tbody,#bp_notification_settings_automatic table.render-dynamic-notification td,#bp_notification_settings_automatic table.render-dynamic-notification th,#bp_notification_settings_automatic table.render-dynamic-notification tr{display:block}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th{display:none}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_notification_settings_automatic table.form-table .no-padding{padding:0}#bp_notification_settings_automatic table.form-table tbody tr{margin-bottom:20px}#bp_notification_settings_automatic table.form-table tbody tr th{margin-bottom:15px;width:100%}#bp_notification_settings_automatic .field-set{margin-top:10px;background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px}#bp_notification_settings_automatic .field-set .field-block{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;padding:15px}#bp_notification_settings_automatic .field-set .field-block+.field-block{border-top:1px solid #ccd0d4}#bp_notification_settings_automatic .field-set .field-block .no-email-info{margin-left:15px;margin-right:auto;background-color:#ffdcdc;border-radius:5px;padding:5px 10px;color:#8c0202;font-size:11px;text-decoration:none}#bp_notification_settings_automatic .field-set .field-block .email-info{margin-left:15px;margin-right:auto;border-radius:5px;padding:5px 10px;font-size:11px;text-decoration:none;background-color:#dfe5ea}#bp_notification_settings_automatic .field-set .field-block .notification-defaults{padding:3px 0;cursor:pointer}#bp_notification_settings_automatic .field-set .field-block input[type=checkbox]{margin-top:0}#bp_notification_settings_automatic .field-set .field-block .manage-defaults{margin-top:15px;justify-content:flex-end;width:100%;display:flex}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap{margin-right:15px;min-width:58px;text-align:center}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled{pointer-events:none}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]{opacity:.7;background:rgba(255,255,255,.5);border-color:rgba(220,220,222,.75);color:rgba(44,51,56,.5)}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]::before{opacity:.7}#bp_notification_settings_automatic .field-set .field-block .manage-defaults-hide{display:none}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr th{min-width:200px;padding:15px 0 0 20px;width:auto}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr td{padding:15px 0 15px 10px}.bb-bottom-notice{margin:2.2em -2.8em -2.2em;background:#f6f6f8;padding:2.2em 2.8em;border-radius:0 0 5px 5px;border-top:1px solid #ccd0d4}.bp-admin-card .form-table .bb-lab-notice{background:#f6f6f8;padding:1.2em;margin-top:1.2em;border-radius:3px;border:1px solid #ccd0d4}.bp-admin-card .form-table .bp-new-notice-panel-notice{color:#8b6300;background-color:#fff3c8;padding:1.2em;font-size:14px;line-height:1.5;border-radius:3px;margin:20px 0}.bp-admin-card .form-table .bp-new-notice-panel-notice a{color:inherit}.bp-admin-card .form-table .bp-new-notice-panel-notice+p.description{margin-bottom:15px}.bb-lab-notice.notification-information:before{content:"\eebc";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:100;margin-left:10px;line-height:1}.bb-lab-notice.notification-information:first-child{margin-top:0}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_messaging_notification_settings table.form-table .no-padding{padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default{width:300px;max-height:calc(90vh - 50px);overflow:auto}#wpadminbar #wp-admin-bar-bp-notifications-default>li{display:inline-block;width:100%;padding:5px 0}#wpadminbar #wp-admin-bar-bp-notifications-default>li#wp-admin-bar-notification-view-all{text-align:center}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar{float:right;width:40px;margin-top:4px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar .member-status{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a{height:auto;padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a img{max-width:36px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a>i{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content{float:left;width:calc(100% - 60px)}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .bb-full-link>a{opacity:1;padding:0;height:auto;position:static;white-space:normal;line-height:1.5}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .posted{line-height:1.4}table.moderations .column-content_type a[data-action=unhide],table.moderations .column-content_type a[data-action=unsuspend],table.moderations .column-member a[data-action=unhide],table.moderations .column-member a[data-action=unsuspend]{color:#5f9a22}table.moderations tfoot tr th,table.moderations thead tr th{font-weight:600}table.moderations tbody tr .column-suspend .dashicons{color:#000;font-size:24px}table.moderations .bp-block-user.disabled{cursor:default}table.moderations .bp-block-user[data-bp-tooltip]{display:inline-block}table.moderations .bp-block-user[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center}table.moderations.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{display:none}.buddyboss_page_bp-moderation .dashicons{font-weight:700}.buddyboss_page_bp-moderation .bb-back{display:inline-block;margin-top:15px;text-decoration:none}.buddyboss_page_bp-moderation .bb-back [class*=bb-icon]{display:inline-block;font-size:17px;margin:-1px 0 0 3px;vertical-align:middle}.buddyboss_page_bp-moderation table.reports tfoot tr th,.buddyboss_page_bp-moderation table.reports thead tr th{font-weight:600}table.moderations .column-member img,table.moderations .content_owner img,table.reports .column-reporter img{vertical-align:middle;margin-left:5px;border-radius:50%}#bp_moderation_action>.inside{margin:0;padding:0 20px}#bp_moderation_action>.inside .tablenav.bottom{height:auto;min-height:20px;margin:0;padding-top:0}#bp_moderation_action>.inside .tablenav.bottom .tablenav-pages{margin:20px 0}#bp_moderation_action .report-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;margin:0 -20px;padding:20px}#bp_moderation_action .report-header_content_id{font-size:20px;font-weight:600;color:#1d2327;margin-bottom:10px}#bp_moderation_action .report-header_content_id span{color:grey;margin-right:5px}#bp_moderation_action .report-header_content_id a{text-decoration:none}#bp_moderation_action .report-header_content_id a i{font-weight:300;font-size:18px;transform:translateY(-1px);display:inline-block}#bp_moderation_action .report-header_user{display:flex;align-items:center}#bp_moderation_action .report-header_user strong a{text-decoration:none;font-size:16px;box-shadow:none}#bp_moderation_action .report-header_user img{border-radius:50%;max-width:35px;height:auto;margin-left:10px;vertical-align:middle}#bp_moderation_action .report-header_content{text-align:center;font-weight:600}#bp_moderation_action .report-header_content strong{display:block;font-size:24px}#bp_moderation_action .report-header_action .report-header_button{color:#b32d2e;border-color:#b32d2e}#bp_moderation_action .report-header_action .report-header_button.green{color:#5f9a22;border-color:#afcc90}#bp_moderation_action .report-header_action .report-header_button+.report-header_button{margin-right:10px}.moderation-table-heading.form-table td{padding:15px 0}#the-moderation-report-list .reporter a{box-shadow:none}.taxonomy-bpm_category .form-field.term-slug-wrap{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th+td,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_labs_settings table.form-table .no-padding,#bp_web_push_notification_settings table.form-table .no-padding{padding:0}.no-field-notice{background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px;padding:15px}.notification-settings-input[data-bp-tooltip]{display:inline-block}.notification-settings-input[data-bp-tooltip]::after{min-width:140px;white-space:normal;padding:7px 12px;text-align:center}.bp-admin-card .password-toggle{position:relative;display:inline-block;width:50%}.bp-admin-card .password-toggle>input{padding-left:30px;width:100%!important}.bp-admin-card .password-toggle .bb-hide-pw{position:absolute;left:0;top:0;height:100%;width:30px;border:0;padding:0;background:0 0!important;box-shadow:none}.bp-admin-card .password-toggle .bb-hide-pw .bb-icon{font-size:16px;line-height:1}.bp-admin-card .password-toggle .bb-hide-pw.bb-show-pass .bb-icon::before{content:"\ee6a"}table.users .suspend a.disabled,table.users .unsuspend a.disabled{cursor:default}table.users .suspend a.disabled[data-bp-tooltip],table.users .unsuspend a.disabled[data-bp-tooltip]{display:inline-block}table.users .suspend a.disabled[data-bp-tooltip]:after,table.users .unsuspend a.disabled[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center;z-index:9999}.registration-restrictions-rule-list{margin:15px 0;max-width:560px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule{padding-right:40px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule:before{cursor:grab;content:"\e858";font-family:bb-icons;font-weight:400;font-size:22px;position:absolute;top:50%;transform:translateY(-50%);right:10px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule.ui-sortable-helper:before{cursor:grabbing}.registration-restrictions-rule-list .registration-restrictions-rule{display:flex;align-items:center;flex-wrap:wrap;gap:15px;background-color:#f6f7f7;border:1px solid #c3c4c7;position:relative;border-radius:4px;padding:15px 15px 15px 40px;margin-bottom:15px}.registration-restrictions-rule-list .registration-restrictions-rule.error{background-color:rgba(255,0,0,.1);border-color:#ffc5ca}.registration-restrictions-rule-list .registration-restrictions-rule input,.registration-restrictions-rule-list .registration-restrictions-rule select{width:100%}.registration-restrictions-rule-list .registration-restrictions-rule>div{flex:1 0 130px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld{flex-basis:80px;display:flex;align-items:baseline;margin-right:-5px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld:before{content:".";margin-left:5px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-priority{position:absolute;top:50%;transform:translateY(-50%);right:15px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove{position:absolute;top:50%;transform:translateY(-50%);left:10px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove button{color:#3c434a;font-size:20px;cursor:pointer;border:0;background-color:transparent;padding:0}.section-bb_registration_restrictions .registration-restrictions-listing{position:relative}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:absolute;left:0;top:0;font-size:13px;max-width:200px;min-width:200px;padding:10px 12px;border-radius:4px;color:#d42929;border:1px solid #ffc5ca;background:#ffdcdc}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p{color:inherit;margin:0 0 5px 0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p:last-child{margin-bottom:0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error:empty{display:none}@media screen and (max-width:1320px){.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:static;max-width:inherit;margin:20px 0}}.custom-select2{font-size:14px;line-height:2;color:#2c3338;border:1px solid #8c8f94;box-shadow:none;border-radius:3px;padding:0 8px 0 24px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat left 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.custom-select2 .select2-selection__arrow{display:none}.select2-container--open .custom-select2{border-radius:3px 3px 0 0}.custom-dropdown-select2 .select2-search__field{min-height:25px;line-height:1}.custom-dropdown-select2 .select2-results__options{max-height:240px;overflow:auto}.custom-dropdown-select2 .select2-results__options li{padding:6px 10px}.custom-dropdown-select2 .select2-results__options li.select2-results__option--highlighted{background-color:rgba(170,170,170,.5);color:inherit}.section-bp_reaction_settings_section>h2{width:100%}.section-bp_reaction_settings_section .bb-reactions-setting-field{margin-top:8px}.section-bp_reaction_settings_section label[for=bb_reaction_mode_likes]{margin-left:15px}.section-bp_reaction_settings_section .bb-reaction-mode-description{margin-top:10px}.section-bp_reaction_settings_section .bb-reaction-button-label{display:flex!important;flex-wrap:wrap;align-items:center;gap:5px;cursor:default}.section-bp_reaction_settings_section .bb-reaction-button-label>p{width:100%;cursor:text}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit{display:none}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit.active{display:inline-block}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser{padding:3px;border-color:#8c8f94;vertical-align:middle;border-radius:4px;min-height:auto;margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i{color:#9b9f9b;font-size:24px;display:block;line-height:1}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i:before{margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser:focus{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}.section-bp_reaction_settings_section .bb-reaction-button-label input#bb-reaction-button-text{color:#2c3338;font-size:14px;vertical-align:middle;border-radius:4px;width:auto;min-height:30px;padding:3px 8px;line-height:25px}.bb-telemetry-notice.notice-info{display:flex;border-right-color:#e0623d;border-radius:4px;padding:0}.bb-telemetry-notice.notice-info .bb-telemetry-notice_content{padding-right:20px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_logo{background-color:rgba(224,98,61,.1);padding:15px 10px;color:#e0623d;font-size:28px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_heading{font-size:16px;margin:1.2em 0 .5em}.bb-telemetry-notice.notice-info p{margin-bottom:15px}.bb-telemetry-notice.notice-info a.button{padding:2px 16px;display:inline-block;margin-bottom:5px;border-radius:5px}.bb-telemetry-notice.notice-info a.button:after{font-size:16px;content:"\ee68";font-family:bb-icons;font-weight:400;margin-right:5px}.bb-telemetry-notice.notice-info .notice-dismiss:before{font-size:20px;content:"\e828";font-family:bb-icons}#loco-admin.wrap .bb-telemetry-notice.notice-info{border:1px solid #c3c4c7;border-right:4px solid #e0623d;padding:0}.section-bb_advanced_telemetry label[for=complete_reporting]{margin-left:15px}.section-bb_advanced_telemetry .bb-telemetry-tutorial-link:after{content:"\ee68";font-family:bb-icons;font-size:14px;margin-right:5px}.bb-integrations-section h1.bb-advance-heading{max-width:900px}.bb-integrations_filters_section{display:flex;justify-content:space-between;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid rgba(0,0,0,.1)}.bb-integrations_filters_section .bb-integrations_search{width:100%;max-width:290px;position:relative}.bb-integrations_filters_section .bb-integrations_search span{font-size:15px;font-weight:400;color:#000;position:absolute;left:12px;top:50%;transform:translateY(-50%);pointer-events:none}.bb-integrations_filters_section .bb-integrations_search span.clear-search{font-size:18px;pointer-events:all;cursor:pointer}.bb-integrations_filters_section .bb-integrations_search span.clear-search:before{content:"\e828"}.bb-integrations_filters_section .bb-integrations_search input{font-size:12px;font-weight:500;color:#000;padding:6px 16px 6px 32px;border:1px solid rgba(0,0,0,.3);border-radius:5px;width:100%}.bb-integrations_filters_section .bb-integrations_search input::placeholder{color:#000}.bb-integrations_filters_section .bb-integrations_search input::-webkit-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search input::-moz-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search.loading{pointer-events:none}.bb-integrations_filters_section .bb-integrations_search.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;left:-30px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px}.bb-integrations_filters_section .bb-integrations_filters select{border:1px solid rgba(0,0,0,.1);border-radius:5px;padding:5px 16px 5px 16px}.bb-integrations_filters_section .bb-integrations_filters.loading{pointer-events:none;position:relative}.bb-integrations_filters_section .bb-integrations_filters.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;right:-30px}.bb-integrations_filters_section .integrations_collection-sub{display:flex;margin:0}.bb-integrations_filters_section .integrations_collection-sub li{display:flex;align-items:center;cursor:pointer;position:relative;margin:0}.bb-integrations_filters_section .integrations_collection-sub li:hover span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:12px;font-weight:500;color:#000;border:1px solid rgba(0,0,0,.1);border-right-width:0;padding:8px 16px}.bb-integrations_filters_section .integrations_collection-sub li input{opacity:0;position:absolute;inset:0;width:auto;height:auto;margin:0}.bb-integrations_filters_section .integrations_collection-sub li input:checked+span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li:first-child span{border-right:1px solid rgba(0,0,0,.1);border-radius:0 3px 3px 0}.bb-integrations_filters_section .integrations_collection-sub li:last-child span{border-radius:3px 0 0 3px}.bb-integrations-listing{display:flex;flex-wrap:wrap;gap:34px;margin-bottom:60px}.bb-integrations-listing .integration_cat_title{width:100%}.bb-integrations-listing .cat_title{font-size:18px;font-weight:600;color:#000;margin:25px 0 0}.bb-integrations-listing .integrations_single_holder{display:inline-block;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:24px 24px 42px;width:100%;max-width:256px;position:relative}.bb-integrations-listing .integrations_single_holder .holder_integrations_img{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:24px}.bb-integrations-listing .integrations_single_holder .holder_integrations_img img{height:56px;width:56px;object-fit:contain;padding:8px;border:1px solid rgba(0,0,0,.1);border-radius:50%}.bb-integrations-listing .integrations_single_holder .holder_integrations_img .type_integrations_text{font-size:12px;line-height:22px;color:rgba(0,0,0,.8);border:1px solid rgba(0,0,0,.1);padding:0 8px;border-radius:19px}.bb-integrations-listing .integrations_single_holder .logo_title{color:#000;font-size:14px;font-weight:600;line-height:20px;margin-bottom:8px}.bb-integrations-listing .integrations_single_holder .short_desc p{font-size:12px;color:rgba(0,0,0,.6);min-height:45px;margin:0 0 15px}.bb-integrations-listing .integrations_single_holder .integration_readmore{font-size:12px;font-weight:500;color:#640398;text-decoration:none;position:absolute;bottom:24px;right:24px}.bb-integrations-listing .integrations_single_holder .integration_readmore i{font-size:15px;transform:rotate(45deg);display:inline-block}.bb-integrations-listing .integrations_single_holder .integration_readmore:active,.bb-integrations-listing .integrations_single_holder .integration_readmore:focus{box-shadow:none}.bb-integrations-listing .integrations_single_holder.loading{border:0}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_avatar{height:70px;width:70px;border-radius:50%;margin-bottom:35px}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_block{height:18px;border-radius:6px;width:100%;margin-bottom:15px}.bb-integrations-listing .bb-integrations-no-results{display:flex;align-items:center;flex-direction:column;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:40px 20px;width:100%}.bb-integrations-listing .bb-integrations-no-results h2{font-size:22px;margin-top:20px;margin-bottom:0}.bb-integrations-listing .bb-integrations-no-results p{font-size:14px;color:#9b9c9f;margin-top:10px}.bb-integrations-listing .bb-integrations-no-results>i{color:#9b9c9f;font-size:38px;opacity:.9}.bb-integrations-listing_loadmore{display:flex;justify-content:center}.bb-integrations_loadmore{display:flex;align-items:center;gap:5px;justify-content:center;color:#fff;cursor:pointer;font-size:14px;font-weight:500;background-color:#e0613c;border:0;border-radius:5px;padding:16px 20px;min-width:150px}.bb-integrations_loadmore:hover{color:rgba(255,255,255,.8)}.bb-integrations_loadmore.loading{pointer-events:none;opacity:.8}.bb-integrations_loadmore.loading:after{content:"\ef30";font-family:bb-icons;font-size:18px;font-weight:400;display:inline-block;animation:spin 2s infinite linear}.bb-get-platform{display:flex;flex-direction:row-reverse;justify-content:space-between;background-color:#fff;border:.5px solid #e0613c;border-radius:10px;box-shadow:0 4px 32px 0 rgba(0,0,0,.1);padding:40px 48px;max-width:990px;margin:80px auto 0}.bb-get-platform .bb-get-platform_details h3{color:#000;font-size:32px;font-weight:600;line-height:1.25;margin:0 0 16px}.bb-get-platform .bb-get-platform_details p{color:rgba(0,0,0,.8);font-size:14px;line-height:20px;margin-bottom:32px}.bb-get-platform .guarantee-img{width:180px;height:180px;object-fit:contain}.bb-get-platform .bb-upgrade-btn{color:#fff;background-color:#e0613c;font-size:14px;font-weight:500;line-height:22px;border-radius:5px;padding:8px 16px;text-decoration:none}.bb-integrations-loader{display:flex;justify-content:center;align-items:center;width:100%;min-height:250px}.bb-integrations-loader i{font-size:26px;display:inline-block}@media screen and (max-width:2600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(20% - 78px)}}@media screen and (max-width:1600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(25% - 78px)}}@media screen and (max-width:1200px){.bb-integrations-listing .integrations_single_holder{max-width:calc(33.3333% - 78px)}}@media screen and (max-width:1080px){.bb-integrations_filters_section{flex-direction:column;gap:20px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px;flex-wrap:wrap}.bb-integrations_filters_section .bb-integrations_filters.loading:after{right:-20px}.bb-get-platform{flex-direction:column}.bb-get-platform .guarantee-img{margin-bottom:24px}}@media screen and (max-width:900px){.bb-integrations-listing{gap:20px}.bb-integrations-listing .integrations_single_holder{max-width:calc(50% - 60px)}}@media screen and (max-width:560px){.bb-integrations_filters_section .bb-integrations_search{margin:0 25px;max-width:calc(100% - 50px)}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:11px;padding:5px 10px}.bb-integrations_filters_section .bb-integrations_filters{justify-content:center}.bb-integrations_filters_section .bb-integrations_filters select{font-size:13px;margin:0 25px;width:calc(100% - 50px);max-width:inherit}.bb-integrations_filters_section .bb-integrations_filters.loading:after{right:inherit;left:-4px}.bb-integrations-listing .integrations_single_holder{max-width:calc(100% - 40px)}}.buddyboss_page_bb-upgrade .nav-tab-wrapper{display:none}.bb-upgrade-nav-tag{display:inline-block;vertical-align:top;box-sizing:border-box;margin:0 5px -1px 0;padding-right:8px;padding-left:8px;min-width:18px;height:20px;line-height:20px;border-radius:15px;background-color:#d63638;color:#fff;font-size:11px;text-align:center}@media screen and (max-width:760px){.bb-upgrade-nav-tag{margin-top:2px}}.advance-performance-wrapper .wrap--performance{width:100%}.wrap.wrap--upgrade{width:calc(100% - 22px);margin-right:0}@media screen and (max-width:782px){.wrap.wrap--upgrade{width:calc(100% - 34px);margin-right:12px}}.wrap.wrap--upgrade>.wrap{margin-right:0;margin-left:0}.advance-tab-header{margin:16px 0 0;padding:0 0 16px;border-bottom:1px solid rgba(0,0,0,.1);display:flex;align-items:center}@media screen and (max-width:700px){.advance-tab-header{flex-direction:column}.advance-tab-header .advance-brand{margin:0 auto 16px}.advance-tab-header .nav-settings-subsubsub{margin-bottom:16px}.advance-tab-header .adv-sep{display:none}.advance-tab-header .advance-actions{flex-direction:column}.advance-tab-header .advance-actions .advance-nav-action{margin-right:0;margin-top:8px}}.advance-tab-header .nav-settings-subsubsub{padding:0}.advance-tab-header .subsubsub{margin:0}.advance-tab-header .subsubsub>li{margin-left:24px}.advance-tab-header .subsubsub>li:last-of-type{margin-left:0}.advance-tab-header .subsubsub a{color:rgba(0,0,0,.6);font-weight:500;font-size:14px}.advance-tab-header .subsubsub a:active,.advance-tab-header .subsubsub a:focus{box-shadow:none}.advance-tab-header .subsubsub a.current{color:#e0613c}.advance-tab-header .advance-nav-action{margin-right:24px}.advance-brand{margin-left:auto}.advance-brand .upgrade-brand{border-radius:50%;max-width:40px}.adv-sep{width:1px;height:24px;background-color:rgba(0,0,0,.2);margin:0 24px}.advance-actions{display:flex;align-items:center}.advance-actions .advance-action-link{font-size:14px}.advance-nav-action{font-size:14px;font-weight:500;background:#e0613c;color:#fff;border-radius:5px;padding:8px 16px;display:inline-flex;align-items:center;text-decoration:none}.advance-nav-action:hover{color:rgba(255,255,255,.8)}.advance-nav-action:hover svg path{fill:rgba(255,255,255,0.8)}.advance-nav-action:active,.advance-nav-action:focus{color:#fff;box-shadow:none}.advance-nav-action svg{margin-left:8px}h1.bb-advance-heading{font-size:40px;font-weight:600;margin-bottom:72px;max-width:45%;margin-top:48px}@media screen and (max-width:1400px){h1.bb-advance-heading{max-width:75%}}@media screen and (max-width:1080px){h1.bb-advance-heading{font-size:28px}}@media screen and (max-width:760px){h1.bb-advance-heading{max-width:95%;margin-top:24px;margin-bottom:42px}}@media screen and (max-width:560px){h1.bb-advance-heading{font-size:20px;margin-bottom:30px;text-align:center}}.bb-upgrade-wrap{position:relative;font-size:15px;max-width:1400px;margin-top:25px;display:flex;align-items:flex-start;flex-wrap:wrap;justify-content:space-between}.bb-advance-card{flex:0 0 48%;max-width:48%;margin:0;padding:0;border-radius:9px;overflow:hidden;border:1px solid #ccd0d4;box-shadow:0 4px 28px 0 rgba(0,0,0,.08);background:#fff}@media screen and (max-width:760px){.bb-advance-card{flex:0 0 100%;max-width:100%;margin-bottom:24px}.bb-advance-card.bb-advance-card--hero{margin-bottom:24px}}.bb-advance-card h2{font-weight:600;font-size:1.6em;line-height:1.2;margin:0 0 11px}.bb-advance-card .card-subtitle{font-size:1em;line-height:1.4}.card-data{flex:1;padding:2.3em 2.3em;display:flex;flex-direction:column}.card-figure{width:100%;height:100%;position:relative;padding-top:52.56%;display:block;background-color:#faf9f7;border-bottom:1px solid rgba(0,0,0,.1)}.card-figure .upgrade-figure{position:absolute;top:0;bottom:0;right:0;left:0;margin:24px auto 0;z-index:0;max-height:calc(100% - 24px);width:auto;max-width:100%;object-fit:cover}.bb-advance-card--hero{width:100%;flex:0 0 100%;max-width:100%;margin-bottom:48px}.bb-advance-card--hero .card-inner-wrap{display:flex}@media screen and (max-width:760px){.bb-advance-card--hero .card-inner-wrap{flex-direction:column}.bb-advance-card--hero .card-inner-wrap .card-figure-wrapper{width:100%}.bb-advance-card--hero .card-inner-wrap .card-figure{padding-top:52.56%}.bb-advance-card--hero .card-inner-wrap .card-figure .upgrade-figure{max-height:100%}.bb-advance-card--hero .card-inner-wrap .card-data{padding:2.3em 2.3em}}.bb-advance-card--hero .card-figure-wrapper{width:42.417%}.bb-advance-card--hero .card-figure{width:100%;padding-top:0;border:0;background-color:#1a1830}.bb-advance-card--hero .card-figure .upgrade-figure{max-height:none;margin:auto}.bb-advance-card--hero .card-data{flex:1;padding:4.2em 2.8em;display:flex;flex-direction:column}.advance-card-note{margin:24px 0}.advance-card-note p{margin:0}.advance-card-note p.wp-upgrade-description{color:rgba(0,0,0,.6)}.advance-card-action{display:flex;align-items:center;margin-top:auto}@media screen and (max-width:900px){.advance-card-action{flex-direction:column}}.advance-action-button,.wp-performance-check input[type=submit]{border:1px solid #e0613c;color:#e0613c;font-weight:500;background-color:#fff;border-radius:5px;padding:8px 16px;margin-left:16px;cursor:pointer;text-decoration:none;outline:0;box-shadow:none;font-size:15px}@media screen and (max-width:900px){.advance-action-button,.wp-performance-check input[type=submit]{margin:0 0 16px}}.advance-action-button:hover,.wp-performance-check input[type=submit]:hover{color:#e0613c}.advance-action-button:active,.advance-action-button:focus,.wp-performance-check input[type=submit]:active,.wp-performance-check input[type=submit]:focus{background-color:rgba(224,97,60,.1);color:#e0613c;outline:0;box-shadow:none}.advance-action-success .advance-action-button,.advance-action-success .wp-performance-check input[type=submit]{border-color:#019701;color:#019701}.advance-action-button.advance-action-button--idle,.wp-performance-check input[type=submit].advance-action-button--idle{pointer-events:none;cursor:default}.advance-action-link{color:#640398;font-weight:500;text-decoration:none;outline:0;box-shadow:none;border-bottom:1px solid transparent;padding:2px 0 1px}.advance-action-link i{display:inline-block;transform:rotate(-45deg);line-height:1}.advance-action-link:hover{color:#640398;border-bottom:1px solid #640398}.advance-action-link:active,.advance-action-link:focus{outline:0;box-shadow:none;color:#640398}.advance-action-link.advance-action-link--back{display:inline-block;margin:12px 0}.advance-action-link.advance-action-link--back i{transform:none}.advance-list{display:flex;flex-wrap:wrap;margin:0 0 0 33.33%}.bb-advance-card--theme .advance-list{margin-left:16%}@media screen and (max-width:1500px){.advance-list{margin-left:0}.bb-advance-card--theme .advance-list{margin-left:0}}.advance-list li{max-width:50%;flex:0 0 50%;margin:0 0 11px;font-weight:600;font-size:95%}@media screen and (max-width:1300px){.advance-list li{max-width:100%;flex:0 0 100%}}.advance-list li.advance-list__expand{max-width:100%;flex:0 0 100%}.advance-list li:before{content:"\e876";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:400;margin-left:8px;line-height:1;color:#e0613c}.bb-upgrade-notice{background-color:#f6efe8;padding:8px;text-align:center;border-bottom:1px solid #c5bfba;margin-right:-20px;position:relative}.bb-upgrade-notice .bb-upgrade-point{font-size:1rem;font-weight:500;color:#000;display:flex;align-items:center;justify-content:center}.bb-upgrade-notice .bb-upgrade-point i{font-size:24px;margin-left:4px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link{font-weight:600;color:inherit;margin-right:16px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link:focus{box-shadow:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice{display:inline-block;width:20px;height:20px;position:absolute;color:rgba(0,0,0,.6);left:8px;top:50%;transform:translateY(-50%);border:0;padding:0;outline:0;cursor:pointer}.bb-upgrade-notice .bb-dismiss-upgrade-notice:before{content:"\e828";font-family:bb-icons;font-style:normal;display:inline-block;width:20px;height:20px;font-size:20px;text-decoration:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice:hover{color:#000}.bb-upgrade-notice .bb-dismiss-upgrade-notice:active,.bb-upgrade-notice .bb-dismiss-upgrade-notice:focus{outline:0;box-shadow:none}@media screen and (max-width:768px){.bb-upgrade-notice{margin:0 -10px 0 0;padding-left:35px}}.wrap.wrap--performance>h2:first-child{font-weight:500;font-size:24px}.wrap.wrap--performance>p{color:rgba(0,0,0,.6);font-size:14px}.wp-performance-check input[type=submit]{margin:24px 0 32px}.wrap--performance{max-width:600px}.wrap--performance #resultTable table{width:100%} \ No newline at end of file +@charset "UTF-8";:root{--bb-plt-color-black:#000;--bb-plt-color-white:rgba(255, 255, 255, 1);--bb-plt-tooltip-background:var(--bb-plt-color-black);--bb-plt-tooltip-color:var(--bb-plt-color-white);--bb-plt-font-size-base:16px}button[data-balloon]{overflow:visible}[data-balloon]{position:relative}[data-balloon]:after{opacity:0;pointer-events:none;transition:all .18s ease-out .18s;font-weight:600;font-size:11px;line-height:var(--bb-plt-font-size-base);background:var(--bb-plt-tooltip-background);border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.22);color:var(--bb-plt-tooltip-color);content:attr(data-balloon);line-height:1.3;padding:7px 15px;position:absolute;white-space:nowrap;z-index:10;text-align:center}[data-balloon]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;content:"";position:absolute;z-index:10}[data-balloon]:hover:after,[data-balloon]:hover:before,[data-balloon][data-balloon-visible]:after,[data-balloon][data-balloon-visible]:before{opacity:1;pointer-events:auto}[data-balloon].font-awesome:after{font-family:FontAwesome}[data-balloon][data-balloon-break]:after{white-space:pre}[data-balloon][data-balloon-blunt]:after,[data-balloon][data-balloon-blunt]:before{transition:none}[data-balloon][data-balloon-pos=up]:after{bottom:100%;right:50%;margin-bottom:11px;transform:translate(50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:before{bottom:100%;right:50%;margin-bottom:5px;transform:translate(50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:hover:after,[data-balloon][data-balloon-pos=up][data-balloon-visible]:after{transform:translate(50%,0)}[data-balloon][data-balloon-pos=up]:hover:before,[data-balloon][data-balloon-pos=up][data-balloon-visible]:before{transform:translate(50%,0)}[data-balloon][data-balloon-pos=up-left]:after{bottom:100%;right:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:before{bottom:100%;right:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:hover:after,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-left]:hover:before,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:after{bottom:100%;left:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:before{bottom:100%;left:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:hover:after,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:hover:before,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down]:after{right:50%;margin-top:11px;top:100%;transform:translate(50%,-10px)}[data-balloon][data-balloon-pos=down]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;right:50%;margin-top:5px;top:100%;transform:translate(50%,-10px)}[data-balloon][data-balloon-pos=down]:hover:after,[data-balloon][data-balloon-pos=down][data-balloon-visible]:after{transform:translate(50%,0)}[data-balloon][data-balloon-pos=down]:hover:before,[data-balloon][data-balloon-pos=down][data-balloon-visible]:before{transform:translate(50%,0)}[data-balloon][data-balloon-pos=down-left]:after{right:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;right:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:hover:after,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-left]:hover:before,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:after{left:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;left:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:hover:after,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:hover:before,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=left]:after{margin-left:11px;left:100%;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;margin-left:5px;left:100%;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=left]:hover:after,[data-balloon][data-balloon-pos=left][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=left]:hover:before,[data-balloon][data-balloon-pos=left][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:after{right:100%;margin-right:11px;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;right:100%;margin-right:5px;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=right]:hover:after,[data-balloon][data-balloon-pos=right][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:hover:before,[data-balloon][data-balloon-pos=right][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-length=small]:after{white-space:normal;width:80px}[data-balloon][data-balloon-length=medium]:after{white-space:normal;width:150px}[data-balloon][data-balloon-length=large]:after{white-space:normal;width:260px}[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:380px}@media screen and (max-width:768px){[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:90vw}}[data-balloon][data-balloon-length=fit]:after{white-space:normal;width:100%}[data-bp-tooltip]:after{background:var(--bb-plt-tooltip-background);color:var(--bb-plt-tooltip-color)}[data-bp-tooltip]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s}.bp-badge{color:#d84800;display:inline-block;font:400 150px/1 dashicons!important}.bp-badge:before{content:"\f448"}.index_page_bp-about code,.settings_page_bp-credits code{background-color:#e0e0e0;color:#636363;font-size:1em}.bp-about-wrap{position:relative;font-size:15px;max-width:1150px;margin-top:25px}.bp-about-wrap .bp-admin-card{margin:20px 0 0}.bp-about-wrap .bp-admin-card h2{font-weight:600}.bp-about-wrap .bp-admin-card h2:before{content:none}.bp-about-wrap .bp-admin-card img{margin:0;max-width:100%;height:auto;vertical-align:middle}.bp-about-wrap .bp-admin-card ul{margin:0}.bp-about-wrap .bp-admin-card p{line-height:1.5;font-size:14px;margin:0}.bp-about-wrap .bp-admin-card .wp-person{display:inline-block;vertical-align:top;margin:0 0 0 10px;height:70px;width:280px}.bp-about-wrap .bp-admin-card .wp-person .gravatar{float:right;margin:0 0 10px 10px;border-radius:100%;width:60px;height:60px}.bp-about-wrap .bp-admin-card .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.bp-about-wrap .bp-admin-card .wp-person .title{display:block;font-weight:300}.bp-about-wrap .bp-admin-card p.wp-credits-list a{white-space:nowrap}#adminmenu #toplevel_page_bp-activity_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-activity_user .wp-menu-image:before{content:"\f130"}#adminmenu #toplevel_page_bp-groups_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-groups_user .wp-menu-image:before{content:"\f307"}#adminmenu #toplevel_page_bp-notifications .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_user .wp-menu-image:before{content:"\f439"}#adminmenu #toplevel_page_bp-messages .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_user .wp-menu-image:before{content:"\f465"}#adminmenu #toplevel_page_bp-friends .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before{content:"\f325"}#adminmenu #toplevel_page_bp-settings .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_user .wp-menu-image:before{content:"\f108"}#adminmenu li.toplevel_page_bp-components .wp-menu-image,#adminmenu li.toplevel_page_bp-general-settings .wp-menu-image{content:"\f448"}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-left:16px;margin-right:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-left:16px;margin-right:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-separator-notice]{pointer-events:none;cursor:default;padding-bottom:0;margin-left:16px;margin-right:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform .wp-menu-image:before{content:"\edc8";font-family:bb-icons;font-style:normal;font-weight:300;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-left:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:20px;margin-right:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:23px}#bp-admin-component-form .tablenav{margin-bottom:10px}#bp-admin-component-form .wp-list-table.plugins .plugin-title{width:25%;padding-bottom:15px}#bp-admin-component-form .subsubsub{padding-bottom:5px}#bp-admin-component-form span.required{color:#32373c}.nav-settings-subsubsub{padding-bottom:0}.nav-settings-subsubsub .subsubsub{float:none}@media screen and (max-width:782px){#bp-admin-component-form .wp-list-table.plugins .plugin-title{display:block;width:auto}#bp-admin-component-form .subsubsub{margin-bottom:0;padding-bottom:35px}}#adminmenu .toplevel_page_network-tools div.wp-menu-image:before{content:""}.buddyboss_page_bp-tools .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-tools .section-default_data ul li.main ul{margin:5px 25px 0 0}.buddyboss_page_bp-tools .section-default_data #message ul.results li{list-style:disc;margin-right:25px}.buddyboss_page_bp-repair-community .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-repair-community .section-default_data ul li.main ul{margin:5px 20px 0 0}.buddyboss_page_bp-repair-community .section-default_data #message ul.results li{list-style:disc;margin-right:25px}tr.bp-search-child-field,tr.bp-search-child-field th{padding:0}tr.bp-search-child-field td{padding:6px 25px}tr.bp-search-parent-field td,tr.bp-search-parent-field th{padding:15px 0 10px 20px}tr.bp-search-parent-field td p{margin-top:0}tr.bp-search-parent-field td p.section-header{margin:0 0 20px}tr.bp-custom-post-type-child-field td{padding:6px 40px}tr.bp-custom-post-type-child-field,tr.bp-search-parent-field label{font-weight:600}tr.bp-search-parent-field label{font-size:16px}.bp-admin-card{position:relative;margin-top:20px;padding:2.2em 2.8em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-admin-card .form-table td p{color:#999;margin-top:6px}.bp-admin-card .form-table td a.button-secondary{margin-top:1px}.bp-admin-card h2{line-height:1;margin:0 0 1em;padding-bottom:1.2em;font-size:22px;font-weight:700;color:#333;border-bottom:1px solid #eaeaea;align-items:center;display:flex}.bp-admin-card h2 span{font-weight:400}.bp-admin-card h2 a{text-decoration:none}.bp-admin-card h2 [class*=" bb-icon-"]{font-size:36px;width:36px;margin-left:16px;vertical-align:middle;position:relative}.bp-admin-card h2 [class*=" bb-icon-"]:before{margin:0;color:#f6f6f6;position:relative;z-index:2}.bp-admin-card h2 [class*=" bb-icon-"]:after{position:absolute;right:4px;top:4px;z-index:1;content:" ";width:28px;height:28px;background:#333}.bp-admin-card h3{font-size:19px;font-weight:600}.bp-admin-card p.alert{padding:10px 12px;background:#f3f5f6;border-radius:3px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp-admin-card p.alert code a{text-decoration:none;color:#444}.bp-admin-card p.alert code a:hover{color:#0073aa}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td{background:#f0f0f1;margin:10px 10px 0 0;padding:10px 20px 10px 15px;border:1px solid #ccd0d4;display:block;border-radius:4px}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td p{margin:0}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin:10px 10px 10px 0}@media screen and (max-width:782px){.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td,.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin-right:0}}.bp-admin-card.section-bp_document_settings_extensions h2:before,.bp-admin-card.section-bp_video_settings_extensions h2:before,.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>th{display:none}.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>td{padding:0}.bp-admin-card.section-bp_media_settings_symlinks{display:block!important}.bp-admin-card.section-bp_search_settings_community table,.bp-admin-card.section-bp_search_settings_post_types table{margin-bottom:20px}.bp-admin-card.section-bp_search_settings_community th[scope=row],.bp-admin-card.section-bp_search_settings_post_types th[scope=row]{width:1px}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing th{display:none}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing td table.extension-listing thead tr th{display:table-cell}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing>td{padding:0}.section-bp_document_settings_extensions+.submit>a{margin-right:5px}table.extension-listing{border-radius:4px;margin:9px 0 12px}table.extension-listing thead th{padding:12px 18px}table.extension-listing thead th.ext-head-extension{width:2.5em}table.extension-listing thead th.ext-head-desc{width:16%}table.extension-listing thead th.ext-head-icon{width:4em}table.extension-listing thead td.ext-head-enable{width:1.2em}table.extension-listing tbody td{padding:10px}table.extension-listing tbody td [class*=" bb-icon-"]{font-size:33px;color:#999;margin-right:8px;vertical-align:middle}table.extension-listing tbody td input.error{border:1px solid red}table.extension-listing tbody td input.hide-border{border:none;background-color:transparent;color:#555;margin:0}table.extension-listing tbody td input.hide-border:focus{background-color:#eee}table.extension-listing tbody td input[type=text]{width:100%}table.extension-listing tbody td #btn-remove-extensions{cursor:pointer;color:#a00;font-size:18px;vertical-align:middle;margin-right:6px}table.extension-listing tbody tr.custom-extension td input.extension-mime[type=text]{width:50%}table.extension-listing tfoot td #btn-add-extensions,table.extension-listing tfoot td #btn-add-video-extensions,table.extension-listing tfoot td #btn-check-mime-type{cursor:pointer;float:left;margin-right:8px}@media screen and (max-width:782px){table.extension-listing{display:block}table.extension-listing tbody,table.extension-listing thead,table.extension-listing tr{display:block;width:100%}table.extension-listing tbody.extra-extension input[type=text],table.extension-listing thead.extra-extension input[type=text],table.extension-listing tr.extra-extension input[type=text]{margin-top:15px;margin-right:10px;width:calc(100% - 10px)}table.extension-listing tbody.extra-extension .icon-select-main,table.extension-listing thead.extra-extension .icon-select-main,table.extension-listing tr.extra-extension .icon-select-main{margin-right:10px}table.extension-listing tr.custom-extension{background-color:#fff}table.extension-listing tr.custom-extension td{padding-right:20px!important}table.extension-listing tfoot{width:100%;display:inline-block;box-sizing:border-box}table.extension-listing tfoot td #btn-add-extensions{margin:10px 0 15px}table.extension-listing thead .ext-head:not(.ext-head-enable){display:none!important}table.extension-listing .ext-head.ext-head-enable{width:100%!important;padding:10px 10px 0 0!important}table.extension-listing tbody td{padding-right:10px!important;width:100%!important;box-sizing:border-box}table.extension-listing tbody td>i{margin:15px 10px 10px 0}table.extension-listing tbody td:before{top:0;right:20px!important;font-weight:600}table.extension-listing tbody td:first-child{padding-right:20px!important}table.extension-listing tbody td .extension-mime{margin-bottom:15px}table.extension-listing tbody td .btn-check-mime-type{margin-right:10px}}table.extension-listing select.extension-icon{display:none}table.extension-listing .icon-select-main{position:relative;display:inline-block;vertical-align:middle;width:100%}table.extension-listing .icon-select-main .icon-select-button{font-size:14px;line-height:2;color:#32373c;border:1px solid #7e8993;border-width:1px;box-shadow:none;border-radius:3px;padding:3px 8px 3px 24px;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat left 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;max-width:100%;width:100%;display:inline-block;box-sizing:border-box}table.extension-listing .icon-select-main .icon-select-button li{list-style:none;margin:0;line-height:20px;white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-align:right;color:#555}table.extension-listing .icon-select-main .icon-select-button i{font-size:22px;color:#888;margin-left:10px;vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list{position:absolute;right:0;left:0;min-width:160px;background-color:#fff;border:1px solid #ccd0d4;border-radius:3px;box-shadow:0 2px 12px 1px rgba(0,0,0,.1);padding:0;bottom:100%;max-height:60vh;overflow:auto;display:none}table.extension-listing .icon-select-main .custom-extension-list ul.custom-extension-list-select{font-size:0;color:#888}table.extension-listing .icon-select-main .custom-extension-list li{list-style:none;cursor:pointer;font-size:14px;padding:8px 12px;margin:0}table.extension-listing .icon-select-main .custom-extension-list li:first-child{border-bottom:1px solid #eee;padding-top:10px;padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:nth-child(2){padding-top:10px}table.extension-listing .icon-select-main .custom-extension-list li:last-child{padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:hover{background-color:#f9f9f9}table.extension-listing .icon-select-main .custom-extension-list li span{vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list i{font-size:28px;margin-left:10px;vertical-align:middle;color:#888}@media screen and (max-width:1023px){#bp-hello-container.bp-hello-mime{bottom:0}#bp-hello-container.bp-hello-mime .bp-hello-header{height:auto;max-height:initial;min-height:58px}}body.site-users-php th#role,body.users-php th#role,body.users_page_bp-signups th#count_sent{width:10%}body.site-users-php th#email,body.site-users-php th#name,body.users-php th#email,body.users-php th#name,body.users-php th#registered,body.users_page_bp-signups th#date_sent,body.users_page_bp-signups th#email,body.users_page_bp-signups th#name,body.users_page_bp-signups th#registered{width:15%}body.users-php th#blogs,body.users_page_bp-signups th#blogs{width:20%}body.users_page_bp-signups td.count_sent,body.users_page_bp-signups th.column-count_sent{text-align:center}.bp-signups-list table{margin:1em 0}.bp-signups-list .column-fields{font-weight:700}#bp-activities-form .fixed .column-author{width:15%}#bp-activities-form #the-comment-list td.comment img,#bp-activities-form #the-comment-list td.comment video{max-width:300px;display:block;margin:.6em 0}.activity-attached-gif-container{cursor:pointer;max-width:480px}.activity-attached-gif-container .gif-player{position:relative;max-width:480px}.activity-attached-gif-container .gif-player video{margin:0}.activity-attached-gif-container .gif-play-button{height:80px;width:80px;position:absolute;right:29%;margin-right:-32px;top:69%;margin-top:-44px}.activity-attached-gif-container .gif-play-button .bb-icon-play-thin{font-size:80px;width:80px;height:80px;margin:0;padding:0;line-height:0}.activity-attached-gif-container .gif-icon{background:url(../images/GIF.svg) center no-repeat;position:absolute;display:block;height:28px;width:44px;bottom:0;right:0;border-radius:4px 0 0 0;background-size:28px;padding:8px;background-color:#000;opacity:.45}form#bp-groups-form .fixed .column-comment{width:20%}@media only screen and (min-width:700px){#poststuff #bbp_reply_attributes select{min-width:70%}}body.post-type-reply #edit-slug-box{padding-right:0;margin-top:0}#bbpress_group_admin_ui_meta_box fieldset{min-width:230px}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;right:15px;left:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:right;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now .table_discussion{float:left;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-left:6px;padding-right:0;text-align:left;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now .t .b{font-size:18px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-left:12px;padding-right:0;padding-top:6px;color:#777}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now a.button{float:left;clear:left;position:relative;top:-5px}.bp-new-notice-panel{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:13px;line-height:2.1;margin:1.5em 0 3em;overflow:auto;padding:10px 25px 25px;position:relative}.bp-new-notice-panel label{clear:both;float:right;margin-left:3%;width:20%}.bp-new-notice-panel input,.bp-new-notice-panel textarea{clear:none;margin-bottom:1em;width:75%}.bp-new-notice-panel input[type=text]:after,.bp-new-notice-panel textarea:after{clear:both;content:" ";display:table}.bp-new-notice-panel .button-primary{margin-right:23%;width:auto}.bp-notice-about{font-size:1em;margin-bottom:1em}.bp-new-notice{margin-bottom:1em;margin-top:0}.bp-notices-list{margin-bottom:0}@media screen and (max-width:782px){.bp-new-notice-panel{margin-bottom:1.5em}.bp-new-notice-panel input,.bp-new-notice-panel textarea{margin-right:0;width:100%}.bp-new-notice-panel .button-primary{margin-right:0;width:auto}.bp-new-notice-panel .button{max-width:45%;word-wrap:break-word}.bp-notice-about{margin-top:0;margin-bottom:1em}.bp-new-notice{margin-bottom:.5em}#bp-activities-form .wp-list-table th.column-primary.column-author,form#bp-groups-form .wp-list-table th.column-primary.column-comment{width:auto}.wp-list-table.activities tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before,.wp-list-table.groups tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{font-weight:600}}body.post-type-bp-group-type .postbox .inside,body.post-type-bp-member-type .postbox .inside{padding:0 12px 12px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker{display:flex;flex-direction:row}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one{display:flex;flex-direction:column;vertical-align:middle;text-align:-webkit-match-parent;flex-basis:auto}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child),body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child){margin-right:15px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label{margin-bottom:10px;color:#686868}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker{display:none}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker{display:block}body.post-type-bp-group-type #group-type-shortcode,body.post-type-bp-member-type #member-type-shortcode{line-height:1;margin-left:10px;padding:7px;display:inline-block}table.bp-postbox-table{background:#f9f9f9;margin-top:22px;border-radius:3px}table.bp-postbox-table thead th{font-weight:600}table.bp-postbox-table tbody th{width:23%;vertical-align:top}table.bp-postbox-table tbody td input[type=checkbox]{margin-left:8px}body.post-type-bp-email #excerpt{height:auto}body.post-type-bp-email th#situation{width:20%}body.post-type-bp-email td.column-situation ul{margin:0}body.post-type-bp-email .categorydiv label{display:block;float:right;padding-right:25px;text-indent:-25px}.buddyboss_page_bbp-repair .wrap,.buddyboss_page_bp-repair-community .wrap,.buddyboss_page_bp-tools .wrap{max-width:950px}.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p,.buddyboss_page_bp-tools p{line-height:2}.buddyboss_page_bbp-repair fieldset,.buddyboss_page_bp-repair-community fieldset,.buddyboss_page_bp-tools fieldset{margin:2em 0 0}.buddyboss_page_bbp-repair legend,.buddyboss_page_bp-repair-community legend,.buddyboss_page_bp-tools legend{color:#23282d;font-size:1.3em;font-weight:600;margin:1em 0}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label,.buddyboss_page_bp-tools label{clear:right;display:block;line-height:1.5;margin:0 0 7px;padding:3px;border-radius:3px}@media screen and (max-width:782px){.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p{line-height:1.5}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label{margin-bottom:1em;padding-left:25px;text-indent:-33px}.buddyboss_page_bbp-repair .checkbox,.buddyboss_page_bp-repair-community .checkbox{padding:0 30px 0 0}}.bp-display-none{display:none}.wrap .bp-help-doc{position:relative;margin-top:20px;padding:2.2em 2.8em 2em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-help-card-grid{margin-top:20px;min-width:255px;max-width:1050px}.bp-help-card-grid .bp-help-main-menu-wrap{display:flex;flex-flow:wrap;margin-right:-10px;margin-left:-10px}.bp-help-card-grid .bp-help-card{margin:0 10px 2%;background-color:#fff;border:1px solid #ccd0d4;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;flex:0 0 calc(33.33% - 20px);min-width:0}.bp-help-card-grid .bp-help-card .inside{padding:1.8em 2em 5em}.bp-help-card-grid .bp-help-card h2{font-size:18px;padding:0;margin:0 0 1em;line-height:1.4}.bp-help-card-grid .bp-help-card p:first-child{margin-top:0}.bp-help-card-grid .bp-help-content-wrap{display:flex}.bp-help-content-wrap{display:flex;flex-flow:row wrap;min-width:255px;max-width:1050px;background-color:#fff;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box}.bp-help-sidebar>ul{margin:0}.bp-help-sidebar>ul>li>a{color:#23282d;font-size:16px;font-weight:600}.bp-help-sidebar>ul>li>ul{margin-top:20px}.bp-help-sidebar>ul>li>ul li{line-height:1.6;margin:1.2em 0}.bp-help-sidebar>ul>li ul>li.selected>a{font-weight:600}.bp-help-sidebar>ul>li>ul>li>ul>li{margin-right:1.6em;list-style-type:disc}.bp-help-sidebar>ul span.open{font-size:0}.bp-help-sidebar>ul span.open:after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:bottom;font-size:10px;color:#999;cursor:pointer}.bp-help-sidebar>ul span.open.active:after{transform:rotate(-90deg)}.bp-help-content p,.bp-help-content ul li{line-height:2}.bp-help-content ul.bp-help-menu{margin:0 0 2.5em}.bp-help-content ul.bp-help-menu li{display:inline}.bp-help-content ul.bp-help-menu li.miscellaneous{display:none!important}.bp-help-content ul.bp-help-menu li:not(:last-child):after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:middle;font-size:10px;color:#999}.bp-help-content ul.bp-help-menu li:last-child a{color:#999}.bp-help-content h1{font-weight:500;font-size:2em;margin-bottom:1em}.bp-help-content h2{font-size:1.5em;margin-bottom:1em}.bp-help-content h3{font-size:1.2em;margin-bottom:1em}.bp-help-content code{border-radius:3px}.bp-help-content ol,.bp-help-content ul{margin-right:25px;margin-top:6px;line-height:1.5}.bp-help-content ul li{list-style-type:circle}.bp-help-content ol li{list-style-type:decimal}.bp-help-content hr{border-top:none;border-bottom:1px solid #eaeaea}.bp-help-content table{border:1px solid #eaeaea;border-collapse:collapse;width:100%;margin-bottom:3em}.bp-help-content th{background:#f9f9f9;font-weight:500;border-bottom:1px solid #eaeaea}.bp-help-content td,.bp-help-content th{padding:10px 12px}.bp-help-content img{max-width:100%;width:auto;height:auto;border:1px solid #ddd;border-radius:5px;box-shadow:0 3px 20px -1px rgba(7,10,25,.1)}.bp-help-content .article-child>ul>li{list-style-type:disc}.bp-help-content .article-child .actions,.bp-help-content .article-child .sub-menu-count{display:none}.bp-help-main-menu-wrap div.notice{margin:0 10px!important;width:100%}@media screen and (min-width:782px){.bp-help-sidebar{background:#f9f9f9;padding:2.5em;border-left:1px solid #ccd0d4;border-radius:0 6px 6px 0;-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;min-width:0;overflow:initial;width:100%;min-height:60vh}.bp-help-content{padding:2.5em 3em;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.bp-help-content th:first-child{width:40%}}@media screen and (max-width:781px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(50% - 20px);min-width:0}.bp-help-sidebar{background:#f9f9f9;padding:2.5em;width:100%;min-height:auto;border-bottom:1px solid #ccd0d4;border-radius:6px 6px 0 0}.bp-help-content{padding:2.5em;width:100%}.bp-help-content th:last-child{display:none}}@media screen and (max-width:550px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(100% - 20px)}}#buddypress-update.not-shiny .update-message{border-right:0;padding-right:36px}#buddypress-update.not-shiny .update-message:before{content:"\f534"}.bp_buddyboss_app_wrap{min-width:255px;max-width:1150px}.bp_buddyboss_app_wrap .buddyboss-app-featured{margin:20px 2px 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block,.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{background:#fff;margin:0 0 20px;padding:2em 2.8em;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-items{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around;margin:0 -10px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item{-webkit-box-flex:1;flex:1;margin:2em 1em;min-width:200px;width:30%}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{border-top:2px solid #f9f9f9;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;-webkit-box-pack:justify;justify-content:space-between;margin:0 -2em;padding:20px 2em}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{display:none}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item:nth-of-type(-n+3){display:flex}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item:nth-child(-n+3){display:block}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon{justify-content:left}.bp_buddyboss_app_wrap .buddyboss-app-banner-block img{height:62px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-pack:justify;justify-content:space-between;padding:24px 0 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content h3{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content p{margin:0 0 auto}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{background:#f7f7f7;border:1px solid #e6e6e6;height:100px;margin:0 0 0 20px;width:100px}.bp_buddyboss_app_wrap .buddyboss-app-column-block img{max-height:50px;max-width:50px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1;flex-wrap:wrap;height:20%;-webkit-box-pack:justify;justify-content:space-between;min-width:200px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content h2{float:right;margin-top:10px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content p{float:right;margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-button{border-radius:3px;cursor:pointer;display:block;height:37px;line-height:37px;text-align:center;text-decoration:none;background-color:#00aae1;color:#fff;width:124px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image{margin-left:2em;padding:1em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image .buddyboss-app-img{max-height:130px;max-width:160px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around;align-self:stretch;padding:1em 0}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content h1{padding-bottom:0}.bp_buddyboss_app_wrap .buddyboss-app-column-section{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-column{-webkit-box-flex:1;flex:1;min-width:0;width:50%;padding-left:20px}.bp_buddyboss_app_wrap .buddyboss-app-column:last-child{padding-left:0}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{box-sizing:border-box;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 0 20px;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{background:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{display:-webkit-box;display:flex;flex-wrap:wrap}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block img{height:225px;margin:0 -2em 0 2em}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 1 100px;min-width:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block h1{margin-top:-12px}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block p{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-buttons{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content a{width:48%}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block{background-color:#00aae1;text-align:center}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block h1{color:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block p{color:#fafafa}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block img{margin:10px 0;max-width:100%}body.post-type-bp_ps_form .page-title-action{display:none}.buddypress .wrap div#message,.buddypress .wrap div.notice{margin:25px 0 15px}tr.child-no-padding th{padding:0 0 0 10px}tr.child-no-padding td{padding:5px 10px}tr.child-no-padding-first th{padding:20px 0 0 10px}tr.child-no-padding-first td{padding:15px 10px 5px}@media screen and (max-width:782px){.form-table tr.child-no-padding td,.form-table tr.child-no-padding-first td{padding-right:0}}td.inviter.column-inviter strong img{float:right;margin-left:10px;margin-top:1px}td label.platform-activity{clear:right;display:block;line-height:1.5;margin:0 0 1em}.nav-tab-wrapper .bp-emails-customizer,.nav-tab-wrapper .bp-group-customizer,.nav-tab-wrapper .bp-user-customizer{padding-left:6px}.nav-tab-wrapper .bp-emails-customizer:after,.nav-tab-wrapper .bp-group-customizer:after,.nav-tab-wrapper .bp-user-customizer:after{font-family:dashicons;content:"\f345";margin-right:3px;display:inline-block;vertical-align:top}.bb-nickname-hide-last-name{margin-top:-21px}.bb-nickname-hide-last-name input[type=checkbox]{margin-top:0}.bb-nickname-hide-first-name{margin-top:-8px}.bb-nickname-hide-first-name input[type=checkbox]{margin-top:0}.loader-repair-tools{border:4px solid #f3f3f3;border-top:4px solid #3498db;border-left:4px solid green;border-right:4px solid red;border-bottom:4px solid pink;border-radius:50%;width:10px;height:10px;animation:spin 2s linear infinite;display:inline-block;margin-right:8px;vertical-align:middle}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}body .section-repair_community .settings fieldset .submit a.disable-btn{pointer-events:none}body .section-repair_community .settings fieldset .checkbox label code{margin-right:10px}@media screen and (max-width:782px){.bb-nickname-hide-last-name{margin-top:-2px}.bb-nickname-hide-first-name{margin-top:0}}.animate-spin{animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-o-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@-ms-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}.wp-block-embed{margin:0}.wp-block-embed iframe{max-width:100%}#bp-help-content-area.loading,#bp-help-main-menu-wrap.loading,.bp-help-sidebar.loading{display:flex;justify-content:center;align-items:center}.content-loader{display:inline-block;position:relative;width:80px;height:80px}.content-loader div{display:inline-block;position:absolute;right:5px;width:9px;background:#dadada;animation:contentLoader 1.2s cubic-bezier(0,.5,.5,1) infinite}.content-loader div:nth-child(1){right:8px;animation-delay:-.24s}.content-loader div:nth-child(2){right:28px;animation-delay:-.12s}.content-loader div:nth-child(3){right:48px;animation-delay:0}#the-moderation-request-list .blocked_member>img,#the-moderation-request-list .content_owner>img{vertical-align:middle;margin-left:5px}#the-moderation-request-list [data-colname] a{outline:0;box-shadow:none}#the-moderation-request-list [data-colname] a img{display:inline-block;vertical-align:middle}#the-moderation-request-list .content_type strong{color:#1d2327}#the-moderation-request-list .content_type strong>span{color:grey}@keyframes contentLoader{0%{top:8px;height:50px}100%,50%{top:24px;height:28px}}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label{min-width:27%}#bp_moderation_settings_reporting label[for=bpm_reporting_content_reporting]{margin-top:5px;display:block}#bp_moderation_settings_reporting .small-text{width:48px;min-height:24px;height:24px}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label{display:inline-block;margin-bottom:30px}#bp_moderation_settings_blocking label.is_disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled,#bp_moderation_settings_reporting label.is_disabled{pointer-events:none;opacity:.5}#bp_moderation_settings_blocking label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.is_disabled input[type=checkbox]:disabled{opacity:1;border-color:inherit}#bb-hello-container.deactivation-popup,#bp-hello-container.deactivation-popup{top:50%;bottom:initial;transform:translateY(-50%);overflow:auto;max-height:90%;max-width:640px;margin:0 auto}#bb-hello-container.deactivation-popup .bb-hello-footer,#bb-hello-container.deactivation-popup .bp-hello-footer,#bp-hello-container.deactivation-popup .bb-hello-footer,#bp-hello-container.deactivation-popup .bp-hello-footer{position:static;padding:10px 23px}#bb-hello-container.deactivation-popup .bb-hello-footer button+button,#bb-hello-container.deactivation-popup .bp-hello-footer button+button,#bp-hello-container.deactivation-popup .bb-hello-footer button+button,#bp-hello-container.deactivation-popup .bp-hello-footer button+button{margin-right:10px}#bb-hello-container.deactivation-popup .bb-hello-content,#bb-hello-container.deactivation-popup .bp-hello-content,#bp-hello-container.deactivation-popup .bb-hello-content,#bp-hello-container.deactivation-popup .bp-hello-content{height:auto;padding:20px 23px}#bb-hello-container.deactivation-popup .bb-hello-content h4,#bb-hello-container.deactivation-popup .bp-hello-content h4,#bp-hello-container.deactivation-popup .bb-hello-content h4,#bp-hello-container.deactivation-popup .bp-hello-content h4{margin-bottom:0}#bb-hello-container.deactivation-popup .bb-hello-content ul,#bb-hello-container.deactivation-popup .bp-hello-content ul,#bp-hello-container.deactivation-popup .bb-hello-content ul,#bp-hello-container.deactivation-popup .bp-hello-content ul{margin-right:17px;list-style-type:disc}#bb-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bb-hello-container.deactivation-popup .bp-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bp-hello-content>p:first-child{margin-top:0}#bp_moderation_action td a{text-decoration:none}.row-actions .suspend a,.row-actions .suspend a:hover{color:#dc3232}.users tr.suspended-user{background-color:#f5dada}h2.has_tutorial_btn{position:relative}h2.has_tutorial_btn .bbapp-tutorial-btn{position:absolute;left:0;right:initial;top:5px;font-weight:400}h2.has_tutorial_btn .bbapp-tutorial-btn p{margin:0}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled{color:#fff;background:#2271b1}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled:hover{background:#135e96;border-color:transparent}@media screen and (max-width:580px){h2.has_tutorial_btn{margin-bottom:65px}h2.has_tutorial_btn .bbapp-tutorial-btn{top:inherit;bottom:-55px}}.bb-screen-position-outer{display:flex;width:180px;justify-content:space-between}.bb-screen-position-outer .bb-screen-position{display:flex;width:85px;flex-direction:column;text-align:center}.bb-screen-position-outer .bb-screen-position input[type=radio]{opacity:0;visibility:hidden;height:0}.bb-screen-position-outer .bb-screen-position .option{position:relative;display:flex;flex-direction:column}.bb-screen-position-outer .bb-screen-position .option:before{content:" ";height:80px;width:80px;background:#f0f0f1;display:flex;border-radius:5px;border:2px solid #ccd0d4;transition:all .3s ease}.bb-screen-position-outer .bb-screen-position .option:after{content:" ";width:40px;height:20px;border-radius:2px;background:#c3c4c7;position:absolute;top:55px}.bb-screen-position-outer .bb-screen-position .option.opt-right:after{left:8px}.bb-screen-position-outer .bb-screen-position .option.opt-left:after{right:8px}.bb-screen-position-outer .bb-screen-position .option span{font-size:14px;color:#999;line-height:2}.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_left:checked:checked+.option:before,.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_right:checked:checked+.option:before{border-color:#2370b1}.bp-messages-feedback .bp-feedback.error{margin:0;border:0;padding:0}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon{border-radius:0 4px 4px 0;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px 8px;border:1px solid #ccc;border-radius:4px 0 0 4px;border-right:0;width:100%}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback,.admin-notice .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon,.admin-notice .bp-feedback .bp-icon{border-radius:0 4px 4px 0;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p,.admin-notice .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px;border:1px solid #ccc;border-radius:4px 0 0 4px;border-right:0;width:100%}.bp-messages-feedback .bp-feedback.warning .bp-icon{background-color:#f7ba45}.bp-messages-feedback .bp-feedback.warning .bp-icon:before{font-family:bb-icons;content:"\e855"}.bb-error-section{padding:10px;margin-right:-210px;background:#ffdcdc;color:#d42929;line-height:1.5;border:1px solid #ffc5ca;border-radius:4px}@media screen and (max-width:782px){.bb-error-section{margin-right:0}}.bb-warning-section-wrap.hidden-header>th{opacity:0;visibility:hidden;padding:0;margin:0}.bb-warning-section-wrap.hidden-header>th+td{padding-right:0;padding-left:0}.bb-warning-section{padding:10px;margin-right:-210px;background:#fff3c8;color:#8b6300;line-height:1.5;border:1px solid #ffeeb3;border-radius:4px}@media screen and (max-width:782px){.bb-warning-section{margin-right:0}}.status-line{display:inline-block;font-size:14px;padding:10px 15px;background:#f0f0f1;border-radius:5px;color:grey}.status-line:before{content:"";display:inline-block;width:10px;height:10px;border-radius:100%;background:grey;margin-left:10px;vertical-align:baseline}.status-line.error-connected{color:#ce1010}.status-line.error-connected:before{background:#ce1010}.status-line.connected{color:#858585}.status-line.connected:before{background:#8fd14f}.status-line.warn-connected{color:#858585}.status-line.warn-connected:before{background:#fac710}.buddyboss_page_bp-settings .bp-avatar-nav{display:none}.avatar-options .avatar-custom-input{display:inline-block;margin:0 0 0 7px}.avatar-options .avatar-custom-input+p.description{margin-top:15px}.avatar-options .avatar-custom-input>label{display:inline-block;vertical-align:top}.avatar-options .avatar-custom-input input[type=radio]{opacity:0;visibility:hidden;height:0;margin:0;padding:0!important;border:0;display:block}.avatar-options .avatar-custom-input input[type=radio]:checked+label .img-block img{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1}.avatar-options .avatar-custom-input input[type=radio]:checked:before{position:absolute}.avatar-options .avatar-custom-input .img-block{display:flex;border-radius:5px;margin-bottom:5px}.avatar-options .avatar-custom-input img{width:80px;height:80px;border:1px solid #ccd0d4;border-radius:5px;object-fit:cover}.avatar-options .avatar-custom-input span{display:block;text-align:center;color:#999}.avatar-options .avatar-custom-input .description{margin-top:15px}.avatar-options .bb-default-custom-upload-file .bb-upload-container img{margin-bottom:10px;max-width:120px}.avatar-options .bb-default-custom-upload-file .button.delete{border-color:#d33;color:#d33;margin-right:5px}.avatar-options .bb-default-custom-upload-file .button.delete.bp-hide{display:none}.avatar-options .bb-default-custom-upload-file.cover-uploader .bb-upload-container img{max-width:300px;width:100%}.avatar-options .cover-uploader-label{position:relative;display:inline-block;overflow:hidden;cursor:pointer}.avatar-options .cover-uploader-label .cover-uploader-hide{border:0;opacity:0;position:absolute;left:0;top:0;bottom:0}.avatar-options .image-width-height>label{min-width:80px;display:inline-block}.avatar-options .image-width-height .description{margin-right:85px;margin-bottom:15px}@media screen and (max-width:782px){.avatar-options .image-width-height>label{min-width:auto;margin-bottom:10px}.avatar-options .image-width-height .description{margin-right:0}}.bp-admin-card .avatar-options .no-field-notice{margin:15px 0;padding:10px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-uploader-progress div.error{margin:5px 0 2px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-progress{margin-left:0}.preview_avatar_cover .preview-switcher{margin-bottom:25px}.preview_avatar_cover .preview-switcher .button:focus{box-shadow:none}.preview_avatar_cover .preview-block{max-width:260px;border:1px solid #ccd0d4;border-radius:5px;overflow:hidden;margin-bottom:25px;display:none}.preview_avatar_cover .preview-block.active{display:block}.preview_avatar_cover .app-preview-wrap{max-width:200px}.preview_avatar_cover .app-preview-wrap .preview-item-avatar{right:50%;border-radius:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);overflow:hidden}.preview_avatar_cover .preview-item-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;min-height:80px;max-height:80px;background-color:#ccc;overflow:hidden}.preview_avatar_cover .preview-item-cover.large-image{min-height:130px;max-height:130px}.preview_avatar_cover .preview-item-avatar{height:75px;width:75px;position:relative;top:-35px;right:25px;border:3px solid #fff;border-radius:5px}.preview_avatar_cover .preview-item-avatar.centered-image{right:50%;transform:translateX(50%)}.preview_avatar_cover .preview-item-avatar img{background-color:#f9f9f9}.preview_avatar_cover .preview-item-avatar img,.preview_avatar_cover .preview-item-cover img{object-fit:cover;width:100%}.preview_avatar_cover .preview-item-avatar img[src=""],.preview_avatar_cover .preview-item-cover img[src=""]{display:none}.preview_avatar_cover:not(.has-avatar) .preview-item-avatar{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-cover{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-avatar{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.preview_avatar_cover:not(.has-cover):not(.has-avatar){display:none}.preview_avatar_cover .button-group>.button:last-child:first-child{border-radius:3px}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar{border-radius:50%}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar img{border-radius:50%}.group-cover-options .preview_avatar_cover .app-preview-wrap{position:relative}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-cover{min-height:120px;max-height:120px;margin-bottom:45px}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-avatar{top:25px;position:absolute;border-radius:12px;border:0;height:70px;width:70px}.buddyboss_page_bp-settings #TB_window,body.users_page_bp-profile-edit #TB_window{height:auto!important;width:820px!important;max-width:90%;top:50%!important;transform:translateY(-50%);max-height:90%;overflow:auto}.buddyboss_page_bp-settings #TB_window .bp-avatar #avatar-to-crop,body.users_page_bp-profile-edit #TB_window .bp-avatar #avatar-to-crop{margin-bottom:15px}.buddyboss_page_bp-settings #TB_ajaxContent,body.users_page_bp-profile-edit #TB_ajaxContent{height:auto!important;width:auto!important;padding:15px}table tbody td .bb-description{color:#999;margin-top:6px;margin-bottom:0}.bb-group-element,.bb-group-headers-element,.bb-member-directory-element,.bb-member-directory-profile-action,.bb-profile-header-element{margin-bottom:10px}@media screen and (max-width:782px){.bb-group-element input[type=checkbox],.bb-group-headers-element input[type=checkbox],.bb-member-directory-element input[type=checkbox],.bb-member-directory-profile-action input[type=checkbox],.bb-profile-header-element input[type=checkbox]{width:auto}}.bb-header-style-outer{display:flex}.bb-header-style-outer .bb-header-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-header-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-header-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-header-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-header-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-left.png) no-repeat center}html[dir=rtl] .bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-right.png) no-repeat center}.bb-header-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-group-header-center.png) no-repeat center}.bb-header-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-header-style-outer .bb-header-style #bb-group-header-style-centered:checked:checked+.option:before,.bb-header-style-outer .bb-header-style #bb-group-header-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer{display:flex}.bb-grid-style-outer .bb-grid-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-grid-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-grid-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-grid-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-grid-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-right.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option.opt-centered:after{background:url(../../images/bb-group-directory-center.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-centered:checked:checked+.option:before,.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer .bb-header-style{display:flex;flex-direction:column;margin-left:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;right:6px;position:absolute;left:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-right.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-profile-header-center.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-stylecentered:checked:checked+.option:before,.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-styleleft:checked:checked+.option:before{border-color:#2370b1}.bb-head-notice{background-color:#f6f6f6;border-radius:4px;color:#999;display:inline-block;font-size:12px;font-weight:400;line-height:1.5;margin-top:10px;max-width:140px;padding:5px 10px;width:auto}.bb-head-notice a{color:inherit;font-weight:700;text-decoration:none}.bb-inactive-field>th:before,.bb-pro-inactive>th:before{content:"\eecc";font-family:bb-icons;margin-left:5px;vertical-align:top;display:inline-block;line-height:1;font-weight:300;font-size:15px}.bb-inactive-field>td,.bb-pro-inactive>td{opacity:.3}.bb-inactive-field>td,.bb-inactive-field>td *,.bb-pro-inactive>td,.bb-pro-inactive>td *{pointer-events:none;user-select:none}.bb-active-field>th:before,.bb-pro-active>th:before{display:none}.bb-active-field .bb-head-notice,.bb-pro-active .bb-head-notice{display:none}.bp-hello-email .bp-hello-title .count,.btn-open-missing-email .count{display:inline-block;background-color:#2271b1;color:#fff;padding:1px 6px;border-radius:4px;line-height:1.3;font-size:smaller}.btn-open-missing-email+#bp-hello-backdrop{display:block}.bp-hello-email .bp-hello-title .count{font-size:inherit;padding:2px 10px;margin-left:10px}.bp-hello-email .bp-hello-content{height:auto;padding:0 23px;min-height:180px;max-height:calc(100vh - 320px);margin-bottom:62px}.bp-hello-email .missing-email-list ul{list-style:disc;margin:25px 20px 25px 0}.bp-hello-email .bb-popup-buttons{position:absolute;bottom:0;padding:15px;text-align:left;width:calc(100% - 30px);margin:0 -23px;border-top:1px solid var(--bp-hello-color-secondary);background-color:#f0f0f1}@media screen and (orientation:landscape) and (max-height:480px){.bp-hello-email .bp-hello-content{min-height:110px}}#bp-hello-container.bp-hello-email{top:50%;bottom:initial;transform:translateY(-50%);margin-top:32px}#bp-hello-container.bp-hello-email .button-primary{color:#fff;margin-right:10px}@media screen and (max-width:480px){#bp-hello-container.bp-hello-email .button-primary{margin-right:0}}#bp_notification_settings_automatic table.render-dynamic-notification,#bp_notification_settings_automatic table.render-dynamic-notification tbody,#bp_notification_settings_automatic table.render-dynamic-notification td,#bp_notification_settings_automatic table.render-dynamic-notification th,#bp_notification_settings_automatic table.render-dynamic-notification tr{display:block}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th{display:none}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_notification_settings_automatic table.form-table .no-padding{padding:0}#bp_notification_settings_automatic table.form-table tbody tr{margin-bottom:20px}#bp_notification_settings_automatic table.form-table tbody tr th{margin-bottom:15px;width:100%}#bp_notification_settings_automatic .field-set{margin-top:10px;background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px}#bp_notification_settings_automatic .field-set .field-block{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;padding:15px}#bp_notification_settings_automatic .field-set .field-block+.field-block{border-top:1px solid #ccd0d4}#bp_notification_settings_automatic .field-set .field-block .no-email-info{margin-left:15px;margin-right:auto;background-color:#ffdcdc;border-radius:5px;padding:5px 10px;color:#8c0202;font-size:11px;text-decoration:none}#bp_notification_settings_automatic .field-set .field-block .email-info{margin-left:15px;margin-right:auto;border-radius:5px;padding:5px 10px;font-size:11px;text-decoration:none;background-color:#dfe5ea}#bp_notification_settings_automatic .field-set .field-block .notification-defaults{padding:3px 0;cursor:pointer}#bp_notification_settings_automatic .field-set .field-block input[type=checkbox]{margin-top:0}#bp_notification_settings_automatic .field-set .field-block .manage-defaults{margin-top:15px;justify-content:flex-end;width:100%;display:flex}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap{margin-right:15px;min-width:58px;text-align:center}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled{pointer-events:none}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]{opacity:.7;background:rgba(255,255,255,.5);border-color:rgba(220,220,222,.75);color:rgba(44,51,56,.5)}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]::before{opacity:.7}#bp_notification_settings_automatic .field-set .field-block .manage-defaults-hide{display:none}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr th{min-width:200px;padding:15px 0 0 20px;width:auto}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr td{padding:15px 0 15px 10px}.bb-bottom-notice{margin:2.2em -2.8em -2.2em;background:#f6f6f8;padding:2.2em 2.8em;border-radius:0 0 5px 5px;border-top:1px solid #ccd0d4}.bp-admin-card .form-table .bb-lab-notice{background:#f6f6f8;padding:1.2em;margin-top:1.2em;border-radius:3px;border:1px solid #ccd0d4}.bp-admin-card .form-table .bp-new-notice-panel-notice{color:#8b6300;background-color:#fff3c8;padding:1.2em;font-size:14px;line-height:1.5;border-radius:3px;margin:20px 0}.bp-admin-card .form-table .bp-new-notice-panel-notice a{color:inherit}.bp-admin-card .form-table .bp-new-notice-panel-notice+p.description{margin-bottom:15px}.bb-lab-notice.notification-information:before{content:"\eebc";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:100;margin-left:10px;line-height:1}.bb-lab-notice.notification-information:first-child{margin-top:0}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_messaging_notification_settings table.form-table .no-padding{padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default{width:300px;max-height:calc(90vh - 50px);overflow:auto}#wpadminbar #wp-admin-bar-bp-notifications-default>li{display:inline-block;width:100%;padding:5px 0}#wpadminbar #wp-admin-bar-bp-notifications-default>li#wp-admin-bar-notification-view-all{text-align:center}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar{float:right;width:40px;margin-top:4px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar .member-status{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a{height:auto;padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a img{max-width:36px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a>i{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content{float:left;width:calc(100% - 60px)}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .bb-full-link>a{opacity:1;padding:0;height:auto;position:static;white-space:normal;line-height:1.5}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .posted{line-height:1.4}table.moderations .column-content_type a[data-action=unhide],table.moderations .column-content_type a[data-action=unsuspend],table.moderations .column-member a[data-action=unhide],table.moderations .column-member a[data-action=unsuspend]{color:#5f9a22}table.moderations tfoot tr th,table.moderations thead tr th{font-weight:600}table.moderations tbody tr .column-suspend .dashicons{color:#000;font-size:24px}table.moderations .bp-block-user.disabled{cursor:default}table.moderations .bp-block-user[data-bp-tooltip]{display:inline-block}table.moderations .bp-block-user[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center}table.moderations.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{display:none}.buddyboss_page_bp-moderation .dashicons{font-weight:700}.buddyboss_page_bp-moderation .bb-back{display:inline-block;margin-top:15px;text-decoration:none}.buddyboss_page_bp-moderation .bb-back [class*=bb-icon]{display:inline-block;font-size:17px;margin:-1px 0 0 3px;vertical-align:middle}.buddyboss_page_bp-moderation table.reports tfoot tr th,.buddyboss_page_bp-moderation table.reports thead tr th{font-weight:600}table.moderations .column-member img,table.moderations .content_owner img,table.reports .column-reporter img{vertical-align:middle;margin-left:5px;border-radius:50%}#bp_moderation_action>.inside{margin:0;padding:0 20px}#bp_moderation_action>.inside .tablenav.bottom{height:auto;min-height:20px;margin:0;padding-top:0}#bp_moderation_action>.inside .tablenav.bottom .tablenav-pages{margin:20px 0}#bp_moderation_action .report-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;margin:0 -20px;padding:20px}#bp_moderation_action .report-header_content_id{font-size:20px;font-weight:600;color:#1d2327;margin-bottom:10px}#bp_moderation_action .report-header_content_id span{color:grey;margin-right:5px}#bp_moderation_action .report-header_content_id a{text-decoration:none}#bp_moderation_action .report-header_content_id a i{font-weight:300;font-size:18px;transform:translateY(-1px);display:inline-block}#bp_moderation_action .report-header_user{display:flex;align-items:center}#bp_moderation_action .report-header_user strong a{text-decoration:none;font-size:16px;box-shadow:none}#bp_moderation_action .report-header_user img{border-radius:50%;max-width:35px;height:auto;margin-left:10px;vertical-align:middle}#bp_moderation_action .report-header_content{text-align:center;font-weight:600}#bp_moderation_action .report-header_content strong{display:block;font-size:24px}#bp_moderation_action .report-header_action .report-header_button{color:#b32d2e;border-color:#b32d2e}#bp_moderation_action .report-header_action .report-header_button.green{color:#5f9a22;border-color:#afcc90}#bp_moderation_action .report-header_action .report-header_button+.report-header_button{margin-right:10px}.moderation-table-heading.form-table td{padding:15px 0}#the-moderation-report-list .reporter a{box-shadow:none}.taxonomy-bpm_category .form-field.term-slug-wrap{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th+td,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th+td{padding-right:0;padding-left:0}#bp_labs_settings table.form-table .no-padding,#bp_web_push_notification_settings table.form-table .no-padding{padding:0}.no-field-notice{background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px;padding:15px}.notification-settings-input[data-bp-tooltip]{display:inline-block}.notification-settings-input[data-bp-tooltip]::after{min-width:140px;white-space:normal;padding:7px 12px;text-align:center}.bp-admin-card .password-toggle{position:relative;display:inline-block;width:50%}.bp-admin-card .password-toggle>input{padding-left:30px;width:100%!important}.bp-admin-card .password-toggle .bb-hide-pw{position:absolute;left:0;top:0;height:100%;width:30px;border:0;padding:0;background:0 0!important;box-shadow:none}.bp-admin-card .password-toggle .bb-hide-pw .bb-icon{font-size:16px;line-height:1}.bp-admin-card .password-toggle .bb-hide-pw.bb-show-pass .bb-icon::before{content:"\ee6a"}table.users .suspend a.disabled,table.users .unsuspend a.disabled{cursor:default}table.users .suspend a.disabled[data-bp-tooltip],table.users .unsuspend a.disabled[data-bp-tooltip]{display:inline-block}table.users .suspend a.disabled[data-bp-tooltip]:after,table.users .unsuspend a.disabled[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center;z-index:9999}.registration-restrictions-rule-list{margin:15px 0;max-width:560px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule{padding-right:40px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule:before{cursor:grab;content:"\e858";font-family:bb-icons;font-weight:400;font-size:22px;position:absolute;top:50%;transform:translateY(-50%);right:10px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule.ui-sortable-helper:before{cursor:grabbing}.registration-restrictions-rule-list .registration-restrictions-rule{display:flex;align-items:center;flex-wrap:wrap;gap:15px;background-color:#f6f7f7;border:1px solid #c3c4c7;position:relative;border-radius:4px;padding:15px 15px 15px 40px;margin-bottom:15px}.registration-restrictions-rule-list .registration-restrictions-rule.error{background-color:rgba(255,0,0,.1);border-color:#ffc5ca}.registration-restrictions-rule-list .registration-restrictions-rule input,.registration-restrictions-rule-list .registration-restrictions-rule select{width:100%}.registration-restrictions-rule-list .registration-restrictions-rule>div{flex:1 0 130px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld{flex-basis:80px;display:flex;align-items:baseline;margin-right:-5px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld:before{content:".";margin-left:5px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-priority{position:absolute;top:50%;transform:translateY(-50%);right:15px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove{position:absolute;top:50%;transform:translateY(-50%);left:10px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove button{color:#3c434a;font-size:20px;cursor:pointer;border:0;background-color:transparent;padding:0}.section-bb_registration_restrictions .registration-restrictions-listing{position:relative}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:absolute;left:0;top:0;font-size:13px;max-width:200px;min-width:200px;padding:10px 12px;border-radius:4px;color:#d42929;border:1px solid #ffc5ca;background:#ffdcdc}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p{color:inherit;margin:0 0 5px 0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p:last-child{margin-bottom:0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error:empty{display:none}@media screen and (max-width:1320px){.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:static;max-width:inherit;margin:20px 0}}.custom-select2{font-size:14px;line-height:2;color:#2c3338;border:1px solid #8c8f94;box-shadow:none;border-radius:3px;padding:0 8px 0 24px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat left 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.custom-select2 .select2-selection__arrow{display:none}.select2-container--open .custom-select2{border-radius:3px 3px 0 0}.custom-dropdown-select2 .select2-search__field{min-height:25px;line-height:1}.custom-dropdown-select2 .select2-results__options{max-height:240px;overflow:auto}.custom-dropdown-select2 .select2-results__options li{padding:6px 10px}.custom-dropdown-select2 .select2-results__options li.select2-results__option--highlighted{background-color:rgba(170,170,170,.5);color:inherit}.section-bp_reaction_settings_section>h2{width:100%}.section-bp_reaction_settings_section .bb-reactions-setting-field{margin-top:8px}.section-bp_reaction_settings_section label[for=bb_reaction_mode_likes]{margin-left:15px}.section-bp_reaction_settings_section .bb-reaction-mode-description{margin-top:10px}.section-bp_reaction_settings_section .bb-reaction-button-label{display:flex!important;flex-wrap:wrap;align-items:center;gap:5px;cursor:default}.section-bp_reaction_settings_section .bb-reaction-button-label>p{width:100%;cursor:text}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit{display:none}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit.active{display:inline-block}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser{padding:3px;border-color:#8c8f94;vertical-align:middle;border-radius:4px;min-height:auto;margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i{color:#9b9f9b;font-size:24px;display:block;line-height:1}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i:before{margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser:focus{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}.section-bp_reaction_settings_section .bb-reaction-button-label input#bb-reaction-button-text{color:#2c3338;font-size:14px;vertical-align:middle;border-radius:4px;width:auto;min-height:30px;padding:3px 8px;line-height:25px}.bb-telemetry-notice.notice-info{display:flex;border-right-color:#e0623d;border-radius:4px;padding:0}.bb-telemetry-notice.notice-info .bb-telemetry-notice_content{padding-right:20px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_logo{background-color:rgba(224,98,61,.1);padding:15px 10px;color:#e0623d;font-size:28px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_heading{font-size:16px;margin:1.2em 0 .5em}.bb-telemetry-notice.notice-info p{margin-bottom:15px}.bb-telemetry-notice.notice-info a.button{padding:2px 16px;display:inline-block;margin-bottom:5px;border-radius:5px}.bb-telemetry-notice.notice-info a.button:after{font-size:16px;content:"\ee68";font-family:bb-icons;font-weight:400;margin-right:5px}.bb-telemetry-notice.notice-info .notice-dismiss:before{font-size:20px;content:"\e828";font-family:bb-icons}#loco-admin.wrap .bb-telemetry-notice.notice-info{border:1px solid #c3c4c7;border-right:4px solid #e0623d;padding:0}.section-bb_advanced_telemetry label[for=complete_reporting]{margin-left:15px}.section-bb_advanced_telemetry .bb-telemetry-tutorial-link:after{content:"\ee68";font-family:bb-icons;font-size:14px;margin-right:5px}.bb-integrations-section h1.bb-advance-heading{max-width:900px}.bb-integrations_filters_section{display:flex;justify-content:space-between;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid rgba(0,0,0,.1)}.bb-integrations_filters_section .bb-integrations_search{width:100%;max-width:290px;position:relative}.bb-integrations_filters_section .bb-integrations_search span{font-size:15px;font-weight:400;color:#000;position:absolute;left:12px;top:50%;transform:translateY(-50%);pointer-events:none}.bb-integrations_filters_section .bb-integrations_search span.clear-search{font-size:18px;pointer-events:all;cursor:pointer}.bb-integrations_filters_section .bb-integrations_search span.clear-search:before{content:"\e828"}.bb-integrations_filters_section .bb-integrations_search input{font-size:12px;font-weight:500;color:#000;padding:6px 16px 6px 32px;border:1px solid rgba(0,0,0,.3);border-radius:5px;width:100%}.bb-integrations_filters_section .bb-integrations_search input::placeholder{color:#000}.bb-integrations_filters_section .bb-integrations_search input::-webkit-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search input::-moz-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search.loading{pointer-events:none}.bb-integrations_filters_section .bb-integrations_search.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;left:-30px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px}.bb-integrations_filters_section .bb-integrations_filters select{border:1px solid rgba(0,0,0,.1);border-radius:5px;padding:5px 16px 5px 16px}.bb-integrations_filters_section .bb-integrations_filters.loading{pointer-events:none;position:relative}.bb-integrations_filters_section .bb-integrations_filters.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;right:-30px}.bb-integrations_filters_section .integrations_collection-sub{display:flex;margin:0}.bb-integrations_filters_section .integrations_collection-sub li{display:flex;align-items:center;cursor:pointer;position:relative;margin:0}.bb-integrations_filters_section .integrations_collection-sub li:hover span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:12px;font-weight:500;color:#000;border:1px solid rgba(0,0,0,.1);border-right-width:0;padding:8px 16px}.bb-integrations_filters_section .integrations_collection-sub li input{opacity:0;position:absolute;inset:0;width:auto;height:auto;margin:0}.bb-integrations_filters_section .integrations_collection-sub li input:checked+span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li:first-child span{border-right:1px solid rgba(0,0,0,.1);border-radius:0 3px 3px 0}.bb-integrations_filters_section .integrations_collection-sub li:last-child span{border-radius:3px 0 0 3px}.bb-integrations-listing{display:flex;flex-wrap:wrap;gap:34px;margin-bottom:60px}.bb-integrations-listing .integration_cat_title{width:100%}.bb-integrations-listing .cat_title{font-size:18px;font-weight:600;color:#000;margin:25px 0 0}.bb-integrations-listing .integrations_single_holder{display:inline-block;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:24px 24px 42px;width:100%;max-width:256px;position:relative}.bb-integrations-listing .integrations_single_holder .holder_integrations_img{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:24px}.bb-integrations-listing .integrations_single_holder .holder_integrations_img img{height:56px;width:56px;object-fit:contain;padding:8px;border:1px solid rgba(0,0,0,.1);border-radius:50%}.bb-integrations-listing .integrations_single_holder .holder_integrations_img .type_integrations_text{font-size:12px;line-height:22px;color:rgba(0,0,0,.8);border:1px solid rgba(0,0,0,.1);padding:0 8px;border-radius:19px}.bb-integrations-listing .integrations_single_holder .logo_title{color:#000;font-size:14px;font-weight:600;line-height:20px;margin-bottom:8px}.bb-integrations-listing .integrations_single_holder .short_desc p{font-size:12px;color:rgba(0,0,0,.6);min-height:45px;margin:0 0 15px}.bb-integrations-listing .integrations_single_holder .integration_readmore{font-size:12px;font-weight:500;color:#640398;text-decoration:none;position:absolute;bottom:24px;right:24px}.bb-integrations-listing .integrations_single_holder .integration_readmore i{font-size:15px;transform:rotate(45deg);display:inline-block}.bb-integrations-listing .integrations_single_holder .integration_readmore:active,.bb-integrations-listing .integrations_single_holder .integration_readmore:focus{box-shadow:none}.bb-integrations-listing .integrations_single_holder.loading{border:0}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_avatar{height:70px;width:70px;border-radius:50%;margin-bottom:35px}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_block{height:18px;border-radius:6px;width:100%;margin-bottom:15px}.bb-integrations-listing .bb-integrations-no-results{display:flex;align-items:center;flex-direction:column;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:40px 20px;width:100%}.bb-integrations-listing .bb-integrations-no-results h2{font-size:22px;margin-top:20px;margin-bottom:0}.bb-integrations-listing .bb-integrations-no-results p{font-size:14px;color:#9b9c9f;margin-top:10px}.bb-integrations-listing .bb-integrations-no-results>i{color:#9b9c9f;font-size:38px;opacity:.9}.bb-integrations-listing_loadmore{display:flex;justify-content:center}.bb-integrations_loadmore{display:flex;align-items:center;gap:5px;justify-content:center;color:#fff;cursor:pointer;font-size:14px;font-weight:500;background-color:#e0613c;border:0;border-radius:5px;padding:16px 20px;min-width:150px}.bb-integrations_loadmore:hover{color:rgba(255,255,255,.8)}.bb-integrations_loadmore.loading{pointer-events:none;opacity:.8}.bb-integrations_loadmore.loading:after{content:"\ef30";font-family:bb-icons;font-size:18px;font-weight:400;display:inline-block;animation:spin 2s infinite linear}.bb-get-platform{display:flex;flex-direction:row-reverse;justify-content:space-between;background-color:#fff;border:.5px solid #e0613c;border-radius:10px;box-shadow:0 4px 32px 0 rgba(0,0,0,.1);padding:40px 48px;max-width:990px;margin:80px auto 0}.bb-get-platform .bb-get-platform_details h3{color:#000;font-size:32px;font-weight:600;line-height:1.25;margin:0 0 16px}.bb-get-platform .bb-get-platform_details p{color:rgba(0,0,0,.8);font-size:14px;line-height:20px;margin-bottom:32px}.bb-get-platform .guarantee-img{width:180px;height:180px;object-fit:contain}.bb-get-platform .bb-upgrade-btn{color:#fff;background-color:#e0613c;font-size:14px;font-weight:500;line-height:22px;border-radius:5px;padding:8px 16px;text-decoration:none}.bb-integrations-loader{display:flex;justify-content:center;align-items:center;width:100%;min-height:250px}.bb-integrations-loader i{font-size:26px;display:inline-block}@media screen and (max-width:2600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(20% - 78px)}}@media screen and (max-width:1600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(25% - 78px)}}@media screen and (max-width:1200px){.bb-integrations-listing .integrations_single_holder{max-width:calc(33.3333% - 78px)}}@media screen and (max-width:1080px){.bb-integrations_filters_section{flex-direction:column;gap:20px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px;flex-wrap:wrap}.bb-integrations_filters_section .bb-integrations_filters.loading:after{right:-20px}.bb-get-platform{flex-direction:column}.bb-get-platform .guarantee-img{margin-bottom:24px}}@media screen and (max-width:900px){.bb-integrations-listing{gap:20px}.bb-integrations-listing .integrations_single_holder{max-width:calc(50% - 60px)}}@media screen and (max-width:560px){.bb-integrations_filters_section .bb-integrations_search{margin:0 25px;max-width:calc(100% - 50px)}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:11px;padding:5px 10px}.bb-integrations_filters_section .bb-integrations_filters{justify-content:center}.bb-integrations_filters_section .bb-integrations_filters select{font-size:13px;margin:0 25px;width:calc(100% - 50px);max-width:inherit}.bb-integrations_filters_section .bb-integrations_filters.loading:after{right:inherit;left:-4px}.bb-integrations-listing .integrations_single_holder{max-width:calc(100% - 40px)}}.buddyboss_page_bb-upgrade .nav-tab-wrapper{display:none}.bb-upgrade-nav-tag{display:inline-block;vertical-align:top;box-sizing:border-box;margin:0 5px -1px 0;padding-right:8px;padding-left:8px;min-width:18px;height:20px;line-height:20px;border-radius:15px;background-color:#d63638;color:#fff;font-size:11px;text-align:center}@media screen and (max-width:760px){.bb-upgrade-nav-tag{margin-top:2px}}.advance-performance-wrapper .wrap--performance{width:100%}.wrap.wrap--upgrade{width:calc(100% - 22px);margin-right:0}@media screen and (max-width:782px){.wrap.wrap--upgrade{width:calc(100% - 34px);margin-right:12px}}.wrap.wrap--upgrade>.wrap{margin-right:0;margin-left:0}.advance-tab-header{margin:16px 0 0;padding:0 0 16px;border-bottom:1px solid rgba(0,0,0,.1);display:flex;align-items:center}@media screen and (max-width:700px){.advance-tab-header{flex-direction:column}.advance-tab-header .advance-brand{margin:0 auto 16px}.advance-tab-header .nav-settings-subsubsub{margin-bottom:16px}.advance-tab-header .adv-sep{display:none}.advance-tab-header .advance-actions{flex-direction:column}.advance-tab-header .advance-actions .advance-nav-action{margin-right:0;margin-top:8px}}.advance-tab-header .nav-settings-subsubsub{padding:0}.advance-tab-header .subsubsub{margin:0}.advance-tab-header .subsubsub>li{margin-left:24px}.advance-tab-header .subsubsub>li:last-of-type{margin-left:0}.advance-tab-header .subsubsub a{color:rgba(0,0,0,.6);font-weight:500;font-size:14px}.advance-tab-header .subsubsub a:active,.advance-tab-header .subsubsub a:focus{box-shadow:none}.advance-tab-header .subsubsub a.current{color:#e0613c}.advance-tab-header .advance-nav-action{margin-right:24px}.advance-brand{margin-left:auto}.advance-brand .upgrade-brand{border-radius:50%;max-width:40px}.adv-sep{width:1px;height:24px;background-color:rgba(0,0,0,.2);margin:0 24px}.advance-actions{display:flex;align-items:center}.advance-actions .advance-action-link{font-size:14px}.advance-nav-action{font-size:14px;font-weight:500;background:#e0613c;color:#fff;border-radius:5px;padding:8px 16px;display:inline-flex;align-items:center;text-decoration:none}.advance-nav-action:hover{color:rgba(255,255,255,.8)}.advance-nav-action:hover svg path{fill:rgba(255,255,255,0.8)}.advance-nav-action:active,.advance-nav-action:focus{color:#fff;box-shadow:none}.advance-nav-action svg{margin-left:8px}h1.bb-advance-heading{font-size:40px;font-weight:600;margin-bottom:72px;max-width:45%;margin-top:48px}@media screen and (max-width:1400px){h1.bb-advance-heading{max-width:75%}}@media screen and (max-width:1080px){h1.bb-advance-heading{font-size:28px}}@media screen and (max-width:760px){h1.bb-advance-heading{max-width:95%;margin-top:24px;margin-bottom:42px}}@media screen and (max-width:560px){h1.bb-advance-heading{font-size:20px;margin-bottom:30px;text-align:center}}.bb-upgrade-wrap{position:relative;font-size:15px;max-width:1400px;margin-top:25px;display:flex;align-items:flex-start;flex-wrap:wrap;justify-content:space-between}.bb-advance-card{flex:0 0 48%;max-width:48%;margin:0;padding:0;border-radius:9px;overflow:hidden;border:1px solid #ccd0d4;box-shadow:0 4px 28px 0 rgba(0,0,0,.08);background:#fff}@media screen and (max-width:760px){.bb-advance-card{flex:0 0 100%;max-width:100%;margin-bottom:24px}.bb-advance-card.bb-advance-card--hero{margin-bottom:24px}}.bb-advance-card h2{font-weight:600;font-size:1.6em;line-height:1.2;margin:0 0 11px}.bb-advance-card .card-subtitle{font-size:1em;line-height:1.4}.card-data{flex:1;padding:2.3em 2.3em;display:flex;flex-direction:column}.card-figure{width:100%;height:100%;position:relative;padding-top:52.56%;display:block;background-color:#faf9f7;border-bottom:1px solid rgba(0,0,0,.1)}.card-figure .upgrade-figure{position:absolute;top:0;bottom:0;right:0;left:0;margin:24px auto 0;z-index:0;max-height:calc(100% - 24px);width:auto;max-width:100%;object-fit:cover}.bb-advance-card--hero{width:100%;flex:0 0 100%;max-width:100%;margin-bottom:48px}.bb-advance-card--hero .card-inner-wrap{display:flex}@media screen and (max-width:760px){.bb-advance-card--hero .card-inner-wrap{flex-direction:column}.bb-advance-card--hero .card-inner-wrap .card-figure-wrapper{width:100%}.bb-advance-card--hero .card-inner-wrap .card-figure{padding-top:52.56%}.bb-advance-card--hero .card-inner-wrap .card-figure .upgrade-figure{max-height:100%}.bb-advance-card--hero .card-inner-wrap .card-data{padding:2.3em 2.3em}}.bb-advance-card--hero .card-figure-wrapper{width:42.417%}.bb-advance-card--hero .card-figure{width:100%;padding-top:0;border:0;background-color:#1a1830}.bb-advance-card--hero .card-figure .upgrade-figure{max-height:none;margin:auto}.bb-advance-card--hero .card-data{flex:1;padding:4.2em 2.8em;display:flex;flex-direction:column}.advance-card-note{margin:24px 0}.advance-card-note p{margin:0}.advance-card-note p.wp-upgrade-description{color:rgba(0,0,0,.6)}.advance-card-action{display:flex;align-items:center;margin-top:auto}@media screen and (max-width:900px){.advance-card-action{flex-direction:column}}.advance-action-button,.wp-performance-check input[type=submit]{border:1px solid #e0613c;color:#e0613c;font-weight:500;background-color:#fff;border-radius:5px;padding:8px 16px;margin-left:16px;cursor:pointer;text-decoration:none;outline:0;box-shadow:none;font-size:15px}@media screen and (max-width:900px){.advance-action-button,.wp-performance-check input[type=submit]{margin:0 0 16px}}.advance-action-button:hover,.wp-performance-check input[type=submit]:hover{color:#e0613c}.advance-action-button:active,.advance-action-button:focus,.wp-performance-check input[type=submit]:active,.wp-performance-check input[type=submit]:focus{background-color:rgba(224,97,60,.1);color:#e0613c;outline:0;box-shadow:none}.advance-action-success .advance-action-button,.advance-action-success .wp-performance-check input[type=submit]{border-color:#019701;color:#019701}.advance-action-button.advance-action-button--idle,.wp-performance-check input[type=submit].advance-action-button--idle{pointer-events:none;cursor:default}.advance-action-link{color:#640398;font-weight:500;text-decoration:none;outline:0;box-shadow:none;border-bottom:1px solid transparent;padding:2px 0 1px}.advance-action-link i{display:inline-block;transform:rotate(-45deg);line-height:1}.advance-action-link:hover{color:#640398;border-bottom:1px solid #640398}.advance-action-link:active,.advance-action-link:focus{outline:0;box-shadow:none;color:#640398}.advance-action-link.advance-action-link--back{display:inline-block;margin:12px 0}.advance-action-link.advance-action-link--back i{transform:none}.advance-list{display:flex;flex-wrap:wrap;margin:0 0 0 33.33%}.bb-advance-card--theme .advance-list{margin-left:16%}@media screen and (max-width:1500px){.advance-list{margin-left:0}.bb-advance-card--theme .advance-list{margin-left:0}}.advance-list li{max-width:50%;flex:0 0 50%;margin:0 0 11px;font-weight:600;font-size:95%}@media screen and (max-width:1300px){.advance-list li{max-width:100%;flex:0 0 100%}}.advance-list li.advance-list__expand{max-width:100%;flex:0 0 100%}.advance-list li:before{content:"\e876";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:400;margin-left:8px;line-height:1;color:#e0613c}.bb-upgrade-notice{background-color:#f6efe8;padding:8px;text-align:center;border-bottom:1px solid #c5bfba;margin-right:-20px;position:relative}.bb-upgrade-notice .bb-upgrade-point{font-size:1rem;font-weight:500;color:#000;display:flex;align-items:center;justify-content:center}.bb-upgrade-notice .bb-upgrade-point i{font-size:24px;margin-left:4px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link{font-weight:600;color:inherit;margin-right:16px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link:focus{box-shadow:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice{display:inline-block;width:20px;height:20px;position:absolute;color:rgba(0,0,0,.6);left:8px;top:50%;transform:translateY(-50%);border:0;padding:0;outline:0;cursor:pointer}.bb-upgrade-notice .bb-dismiss-upgrade-notice:before{content:"\e828";font-family:bb-icons;font-style:normal;display:inline-block;width:20px;height:20px;font-size:20px;text-decoration:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice:hover{color:#000}.bb-upgrade-notice .bb-dismiss-upgrade-notice:active,.bb-upgrade-notice .bb-dismiss-upgrade-notice:focus{outline:0;box-shadow:none}@media screen and (max-width:768px){.bb-upgrade-notice{margin:0 -10px 0 0;padding-left:35px}}.wrap.wrap--performance>h2:first-child{font-weight:500;font-size:24px}.wrap.wrap--performance>p{color:rgba(0,0,0,.6);font-size:14px}.wp-performance-check input[type=submit]{margin:24px 0 32px}.wrap--performance{max-width:600px}.wrap--performance #resultTable table{width:100%}.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item{margin-bottom:10px}.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item:before{content:"\edb2";color:#000;font-family:bb-icons;font-size:16px;font-weight:400;cursor:move;margin-left:8px} \ No newline at end of file diff --git a/src/bp-core/admin/css/common.css b/src/bp-core/admin/css/common.css index ed9e17a46f..2ac368c710 100644 --- a/src/bp-core/admin/css/common.css +++ b/src/bp-core/admin/css/common.css @@ -43,6 +43,8 @@ TABLE OF CONTENTS: 17.0 Domain restriction 18.0 Redirection Settings 19.0 Reactions Settings +20.0 Upgrade +21.0 Activity Filter & Sorting ------------------------------------------------------------------------------*/ :root { --bb-plt-color-black: #000; @@ -5382,3 +5384,20 @@ h1.bb-advance-heading { .wrap--performance #resultTable table { width: 100%; } + +/*------------------------------------------------------------------------------ + * 21.0 Activity Filter & Sorting + *----------------------------------------------------------------------------*/ +.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item { + margin-bottom: 10px; +} + +.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item:before { + content: "\edb2"; + color: #000; + font-family: bb-icons; + font-size: 16px; + font-weight: 400; + cursor: move; + margin-right: 8px; +} diff --git a/src/bp-core/admin/css/common.min.css b/src/bp-core/admin/css/common.min.css index 6efd24a02d..c0023c1f18 100644 --- a/src/bp-core/admin/css/common.min.css +++ b/src/bp-core/admin/css/common.min.css @@ -1 +1 @@ -@charset "UTF-8";:root{--bb-plt-color-black:#000;--bb-plt-color-white:rgba(255, 255, 255, 1);--bb-plt-tooltip-background:var(--bb-plt-color-black);--bb-plt-tooltip-color:var(--bb-plt-color-white);--bb-plt-font-size-base:16px}button[data-balloon]{overflow:visible}[data-balloon]{position:relative}[data-balloon]:after{opacity:0;pointer-events:none;transition:all .18s ease-out .18s;font-weight:600;font-size:11px;line-height:var(--bb-plt-font-size-base);background:var(--bb-plt-tooltip-background);border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.22);color:var(--bb-plt-tooltip-color);content:attr(data-balloon);line-height:1.3;padding:7px 15px;position:absolute;white-space:nowrap;z-index:10;text-align:center}[data-balloon]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;content:"";position:absolute;z-index:10}[data-balloon]:hover:after,[data-balloon]:hover:before,[data-balloon][data-balloon-visible]:after,[data-balloon][data-balloon-visible]:before{opacity:1;pointer-events:auto}[data-balloon].font-awesome:after{font-family:FontAwesome}[data-balloon][data-balloon-break]:after{white-space:pre}[data-balloon][data-balloon-blunt]:after,[data-balloon][data-balloon-blunt]:before{transition:none}[data-balloon][data-balloon-pos=up]:after{bottom:100%;left:50%;margin-bottom:11px;transform:translate(-50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:before{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:hover:after,[data-balloon][data-balloon-pos=up][data-balloon-visible]:after{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=up]:hover:before,[data-balloon][data-balloon-pos=up][data-balloon-visible]:before{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=up-left]:after{bottom:100%;left:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:before{bottom:100%;left:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:hover:after,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-left]:hover:before,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:after{bottom:100%;right:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:before{bottom:100%;right:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:hover:after,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:hover:before,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down]:after{left:50%;margin-top:11px;top:100%;transform:translate(-50%,-10px)}[data-balloon][data-balloon-pos=down]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;left:50%;margin-top:5px;top:100%;transform:translate(-50%,-10px)}[data-balloon][data-balloon-pos=down]:hover:after,[data-balloon][data-balloon-pos=down][data-balloon-visible]:after{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=down]:hover:before,[data-balloon][data-balloon-pos=down][data-balloon-visible]:before{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=down-left]:after{left:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;left:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:hover:after,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-left]:hover:before,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:after{right:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;right:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:hover:after,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:hover:before,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=left]:after{margin-right:11px;right:100%;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;margin-right:5px;right:100%;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=left]:hover:after,[data-balloon][data-balloon-pos=left][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=left]:hover:before,[data-balloon][data-balloon-pos=left][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:after{left:100%;margin-left:11px;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;left:100%;margin-left:5px;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=right]:hover:after,[data-balloon][data-balloon-pos=right][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:hover:before,[data-balloon][data-balloon-pos=right][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-length=small]:after{white-space:normal;width:80px}[data-balloon][data-balloon-length=medium]:after{white-space:normal;width:150px}[data-balloon][data-balloon-length=large]:after{white-space:normal;width:260px}[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:380px}@media screen and (max-width:768px){[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:90vw}}[data-balloon][data-balloon-length=fit]:after{white-space:normal;width:100%}[data-bp-tooltip]:after{background:var(--bb-plt-tooltip-background);color:var(--bb-plt-tooltip-color)}[data-bp-tooltip]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s}.bp-badge{color:#d84800;display:inline-block;font:400 150px/1 dashicons!important}.bp-badge:before{content:"\f448"}.index_page_bp-about code,.settings_page_bp-credits code{background-color:#e0e0e0;color:#636363;font-size:1em}.bp-about-wrap{position:relative;font-size:15px;max-width:1150px;margin-top:25px}.bp-about-wrap .bp-admin-card{margin:20px 0 0}.bp-about-wrap .bp-admin-card h2{font-weight:600}.bp-about-wrap .bp-admin-card h2:before{content:none}.bp-about-wrap .bp-admin-card img{margin:0;max-width:100%;height:auto;vertical-align:middle}.bp-about-wrap .bp-admin-card ul{margin:0}.bp-about-wrap .bp-admin-card p{line-height:1.5;font-size:14px;margin:0}.bp-about-wrap .bp-admin-card .wp-person{display:inline-block;vertical-align:top;margin:0 10px 0 0;height:70px;width:280px}.bp-about-wrap .bp-admin-card .wp-person .gravatar{float:left;margin:0 10px 10px 0;border-radius:100%;width:60px;height:60px}.bp-about-wrap .bp-admin-card .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.bp-about-wrap .bp-admin-card .wp-person .title{display:block;font-weight:300}.bp-about-wrap .bp-admin-card p.wp-credits-list a{white-space:nowrap}#adminmenu #toplevel_page_bp-activity_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-activity_user .wp-menu-image:before{content:"\f130"}#adminmenu #toplevel_page_bp-groups_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-groups_user .wp-menu-image:before{content:"\f307"}#adminmenu #toplevel_page_bp-notifications .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_user .wp-menu-image:before{content:"\f439"}#adminmenu #toplevel_page_bp-messages .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_user .wp-menu-image:before{content:"\f465"}#adminmenu #toplevel_page_bp-friends .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before{content:"\f325"}#adminmenu #toplevel_page_bp-settings .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_user .wp-menu-image:before{content:"\f108"}#adminmenu li.toplevel_page_bp-components .wp-menu-image,#adminmenu li.toplevel_page_bp-general-settings .wp-menu-image{content:"\f448"}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-separator-notice]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform .wp-menu-image:before{content:"\edc8";font-family:bb-icons;font-style:normal;font-weight:300;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:20px;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:23px}#bp-admin-component-form .tablenav{margin-bottom:10px}#bp-admin-component-form .wp-list-table.plugins .plugin-title{width:25%;padding-bottom:15px}#bp-admin-component-form .subsubsub{padding-bottom:5px}#bp-admin-component-form span.required{color:#32373c}.nav-settings-subsubsub{padding-bottom:0}.nav-settings-subsubsub .subsubsub{float:none}@media screen and (max-width:782px){#bp-admin-component-form .wp-list-table.plugins .plugin-title{display:block;width:auto}#bp-admin-component-form .subsubsub{margin-bottom:0;padding-bottom:35px}}#adminmenu .toplevel_page_network-tools div.wp-menu-image:before{content:""}.buddyboss_page_bp-tools .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-tools .section-default_data ul li.main ul{margin:5px 0 0 25px}.buddyboss_page_bp-tools .section-default_data #message ul.results li{list-style:disc;margin-left:25px}.buddyboss_page_bp-repair-community .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-repair-community .section-default_data ul li.main ul{margin:5px 0 0 20px}.buddyboss_page_bp-repair-community .section-default_data #message ul.results li{list-style:disc;margin-left:25px}tr.bp-search-child-field,tr.bp-search-child-field th{padding:0}tr.bp-search-child-field td{padding:6px 25px}tr.bp-search-parent-field td,tr.bp-search-parent-field th{padding:15px 20px 10px 0}tr.bp-search-parent-field td p{margin-top:0}tr.bp-search-parent-field td p.section-header{margin:0 0 20px}tr.bp-custom-post-type-child-field td{padding:6px 40px}tr.bp-custom-post-type-child-field,tr.bp-search-parent-field label{font-weight:600}tr.bp-search-parent-field label{font-size:16px}.bp-admin-card{position:relative;margin-top:20px;padding:2.2em 2.8em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-admin-card .form-table td p{color:#999;margin-top:6px}.bp-admin-card .form-table td a.button-secondary{margin-top:1px}.bp-admin-card h2{line-height:1;margin:0 0 1em;padding-bottom:1.2em;font-size:22px;font-weight:700;color:#333;border-bottom:1px solid #eaeaea;align-items:center;display:flex}.bp-admin-card h2 span{font-weight:400}.bp-admin-card h2 a{text-decoration:none}.bp-admin-card h2 [class*=" bb-icon-"]{font-size:36px;width:36px;margin-right:16px;vertical-align:middle;position:relative}.bp-admin-card h2 [class*=" bb-icon-"]:before{margin:0;color:#f6f6f6;position:relative;z-index:2}.bp-admin-card h2 [class*=" bb-icon-"]:after{position:absolute;left:4px;top:4px;z-index:1;content:" ";width:28px;height:28px;background:#333}.bp-admin-card h3{font-size:19px;font-weight:600}.bp-admin-card p.alert{padding:10px 12px;background:#f3f5f6;border-radius:3px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp-admin-card p.alert code a{text-decoration:none;color:#444}.bp-admin-card p.alert code a:hover{color:#0073aa}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td{background:#f0f0f1;margin:10px 0 0 10px;padding:10px 15px 10px 20px;border:1px solid #ccd0d4;display:block;border-radius:4px}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td p{margin:0}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin:10px 0 10px 10px}@media screen and (max-width:782px){.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td,.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin-left:0}}.bp-admin-card.section-bp_document_settings_extensions h2:before,.bp-admin-card.section-bp_video_settings_extensions h2:before,.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>th{display:none}.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>td{padding:0}.bp-admin-card.section-bp_media_settings_symlinks{display:block!important}.bp-admin-card.section-bp_search_settings_community table,.bp-admin-card.section-bp_search_settings_post_types table{margin-bottom:20px}.bp-admin-card.section-bp_search_settings_community th[scope=row],.bp-admin-card.section-bp_search_settings_post_types th[scope=row]{width:1px}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing th{display:none}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing td table.extension-listing thead tr th{display:table-cell}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing>td{padding:0}.section-bp_document_settings_extensions+.submit>a{margin-left:5px}table.extension-listing{border-radius:4px;margin:9px 0 12px}table.extension-listing thead th{padding:12px 18px}table.extension-listing thead th.ext-head-extension{width:2.5em}table.extension-listing thead th.ext-head-desc{width:16%}table.extension-listing thead th.ext-head-icon{width:4em}table.extension-listing thead td.ext-head-enable{width:1.2em}table.extension-listing tbody td{padding:10px}table.extension-listing tbody td [class*=" bb-icon-"]{font-size:33px;color:#999;margin-left:8px;vertical-align:middle}table.extension-listing tbody td input.error{border:1px solid red}table.extension-listing tbody td input.hide-border{border:none;background-color:transparent;color:#555;margin:0}table.extension-listing tbody td input.hide-border:focus{background-color:#eee}table.extension-listing tbody td input[type=text]{width:100%}table.extension-listing tbody td #btn-remove-extensions{cursor:pointer;color:#a00;font-size:18px;vertical-align:middle;margin-left:6px}table.extension-listing tbody tr.custom-extension td input.extension-mime[type=text]{width:50%}table.extension-listing tfoot td #btn-add-extensions,table.extension-listing tfoot td #btn-add-video-extensions,table.extension-listing tfoot td #btn-check-mime-type{cursor:pointer;float:right;margin-left:8px}@media screen and (max-width:782px){table.extension-listing{display:block}table.extension-listing tbody,table.extension-listing thead,table.extension-listing tr{display:block;width:100%}table.extension-listing tbody.extra-extension input[type=text],table.extension-listing thead.extra-extension input[type=text],table.extension-listing tr.extra-extension input[type=text]{margin-top:15px;margin-left:10px;width:calc(100% - 10px)}table.extension-listing tbody.extra-extension .icon-select-main,table.extension-listing thead.extra-extension .icon-select-main,table.extension-listing tr.extra-extension .icon-select-main{margin-left:10px}table.extension-listing tr.custom-extension{background-color:#fff}table.extension-listing tr.custom-extension td{padding-left:20px!important}table.extension-listing tfoot{width:100%;display:inline-block;box-sizing:border-box}table.extension-listing tfoot td #btn-add-extensions{margin:10px 0 15px}table.extension-listing thead .ext-head:not(.ext-head-enable){display:none!important}table.extension-listing .ext-head.ext-head-enable{width:100%!important;padding:10px 0 0 10px!important}table.extension-listing tbody td{padding-left:10px!important;width:100%!important;box-sizing:border-box}table.extension-listing tbody td>i{margin:15px 0 10px 10px}table.extension-listing tbody td:before{top:0;left:20px!important;font-weight:600}table.extension-listing tbody td:first-child{padding-left:20px!important}table.extension-listing tbody td .extension-mime{margin-bottom:15px}table.extension-listing tbody td .btn-check-mime-type{margin-left:10px}}table.extension-listing select.extension-icon{display:none}table.extension-listing .icon-select-main{position:relative;display:inline-block;vertical-align:middle;width:100%}table.extension-listing .icon-select-main .icon-select-button{font-size:14px;line-height:2;color:#32373c;border:1px solid #7e8993;border-width:1px;box-shadow:none;border-radius:3px;padding:3px 24px 3px 8px;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;max-width:100%;width:100%;display:inline-block;box-sizing:border-box}table.extension-listing .icon-select-main .icon-select-button li{list-style:none;margin:0;line-height:20px;white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-align:left;color:#555}table.extension-listing .icon-select-main .icon-select-button i{font-size:22px;color:#888;margin-right:10px;vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list{position:absolute;left:0;right:0;min-width:160px;background-color:#fff;border:1px solid #ccd0d4;border-radius:3px;box-shadow:0 2px 12px 1px rgba(0,0,0,.1);padding:0;bottom:100%;max-height:60vh;overflow:auto;display:none}table.extension-listing .icon-select-main .custom-extension-list ul.custom-extension-list-select{font-size:0;color:#888}table.extension-listing .icon-select-main .custom-extension-list li{list-style:none;cursor:pointer;font-size:14px;padding:8px 12px;margin:0}table.extension-listing .icon-select-main .custom-extension-list li:first-child{border-bottom:1px solid #eee;padding-top:10px;padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:nth-child(2){padding-top:10px}table.extension-listing .icon-select-main .custom-extension-list li:last-child{padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:hover{background-color:#f9f9f9}table.extension-listing .icon-select-main .custom-extension-list li span{vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list i{font-size:28px;margin-right:10px;vertical-align:middle;color:#888}@media screen and (max-width:1023px){#bp-hello-container.bp-hello-mime{bottom:0}#bp-hello-container.bp-hello-mime .bp-hello-header{height:auto;max-height:initial;min-height:58px}}body.site-users-php th#role,body.users-php th#role,body.users_page_bp-signups th#count_sent{width:10%}body.site-users-php th#email,body.site-users-php th#name,body.users-php th#email,body.users-php th#name,body.users-php th#registered,body.users_page_bp-signups th#date_sent,body.users_page_bp-signups th#email,body.users_page_bp-signups th#name,body.users_page_bp-signups th#registered{width:15%}body.users-php th#blogs,body.users_page_bp-signups th#blogs{width:20%}body.users_page_bp-signups td.count_sent,body.users_page_bp-signups th.column-count_sent{text-align:center}.bp-signups-list table{margin:1em 0}.bp-signups-list .column-fields{font-weight:700}#bp-activities-form .fixed .column-author{width:15%}#bp-activities-form #the-comment-list td.comment img,#bp-activities-form #the-comment-list td.comment video{max-width:300px;display:block;margin:.6em 0}.activity-attached-gif-container{cursor:pointer;max-width:480px}.activity-attached-gif-container .gif-player{position:relative;max-width:480px}.activity-attached-gif-container .gif-player video{margin:0}.activity-attached-gif-container .gif-play-button{height:80px;width:80px;position:absolute;left:29%;margin-left:-32px;top:69%;margin-top:-44px}.activity-attached-gif-container .gif-play-button .bb-icon-play-thin{font-size:80px;width:80px;height:80px;margin:0;padding:0;line-height:0}.activity-attached-gif-container .gif-icon{background:url(../images/GIF.svg) center no-repeat;position:absolute;display:block;height:28px;width:44px;bottom:0;left:0;border-radius:0 4px 0 0;background-size:28px;padding:8px;background-color:#000;opacity:.45}form#bp-groups-form .fixed .column-comment{width:20%}@media only screen and (min-width:700px){#poststuff #bbp_reply_attributes select{min-width:70%}}body.post-type-reply #edit-slug-box{padding-left:0;margin-top:0}#bbpress_group_admin_ui_meta_box fieldset{min-width:230px}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px;right:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:left;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-right:6px;padding-left:0;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now .t .b{font-size:18px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-right:12px;padding-left:0;padding-top:6px;color:#777}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now a.button{float:right;clear:right;position:relative;top:-5px}.bp-new-notice-panel{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:13px;line-height:2.1;margin:1.5em 0 3em;overflow:auto;padding:10px 25px 25px;position:relative}.bp-new-notice-panel label{clear:both;float:left;margin-right:3%;width:20%}.bp-new-notice-panel input,.bp-new-notice-panel textarea{clear:none;margin-bottom:1em;width:75%}.bp-new-notice-panel input[type=text]:after,.bp-new-notice-panel textarea:after{clear:both;content:" ";display:table}.bp-new-notice-panel .button-primary{margin-left:23%;width:auto}.bp-notice-about{font-size:1em;margin-bottom:1em}.bp-new-notice{margin-bottom:1em;margin-top:0}.bp-notices-list{margin-bottom:0}@media screen and (max-width:782px){.bp-new-notice-panel{margin-bottom:1.5em}.bp-new-notice-panel input,.bp-new-notice-panel textarea{margin-left:0;width:100%}.bp-new-notice-panel .button-primary{margin-left:0;width:auto}.bp-new-notice-panel .button{max-width:45%;word-wrap:break-word}.bp-notice-about{margin-top:0;margin-bottom:1em}.bp-new-notice{margin-bottom:.5em}#bp-activities-form .wp-list-table th.column-primary.column-author,form#bp-groups-form .wp-list-table th.column-primary.column-comment{width:auto}.wp-list-table.activities tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before,.wp-list-table.groups tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{font-weight:600}}body.post-type-bp-group-type .postbox .inside,body.post-type-bp-member-type .postbox .inside{padding:0 12px 12px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker{display:flex;flex-direction:row}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one{display:flex;flex-direction:column;vertical-align:middle;text-align:-webkit-match-parent;flex-basis:auto}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child),body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child){margin-left:15px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label{margin-bottom:10px;color:#686868}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker{display:none}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker{display:block}body.post-type-bp-group-type #group-type-shortcode,body.post-type-bp-member-type #member-type-shortcode{line-height:1;margin-right:10px;padding:7px;display:inline-block}table.bp-postbox-table{background:#f9f9f9;margin-top:22px;border-radius:3px}table.bp-postbox-table thead th{font-weight:600}table.bp-postbox-table tbody th{width:23%;vertical-align:top}table.bp-postbox-table tbody td input[type=checkbox]{margin-right:8px}body.post-type-bp-email #excerpt{height:auto}body.post-type-bp-email th#situation{width:20%}body.post-type-bp-email td.column-situation ul{margin:0}body.post-type-bp-email .categorydiv label{display:block;float:left;padding-left:25px;text-indent:-25px}.buddyboss_page_bbp-repair .wrap,.buddyboss_page_bp-repair-community .wrap,.buddyboss_page_bp-tools .wrap{max-width:950px}.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p,.buddyboss_page_bp-tools p{line-height:2}.buddyboss_page_bbp-repair fieldset,.buddyboss_page_bp-repair-community fieldset,.buddyboss_page_bp-tools fieldset{margin:2em 0 0}.buddyboss_page_bbp-repair legend,.buddyboss_page_bp-repair-community legend,.buddyboss_page_bp-tools legend{color:#23282d;font-size:1.3em;font-weight:600;margin:1em 0}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label,.buddyboss_page_bp-tools label{clear:left;display:block;line-height:1.5;margin:0 0 7px;padding:3px;border-radius:3px}@media screen and (max-width:782px){.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p{line-height:1.5}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label{margin-bottom:1em;padding-right:25px;text-indent:-33px}.buddyboss_page_bbp-repair .checkbox,.buddyboss_page_bp-repair-community .checkbox{padding:0 0 0 30px}}.bp-display-none{display:none}.wrap .bp-help-doc{position:relative;margin-top:20px;padding:2.2em 2.8em 2em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-help-card-grid{margin-top:20px;min-width:255px;max-width:1050px}.bp-help-card-grid .bp-help-main-menu-wrap{display:flex;flex-flow:wrap;margin-left:-10px;margin-right:-10px}.bp-help-card-grid .bp-help-card{margin:0 10px 2%;background-color:#fff;border:1px solid #ccd0d4;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;flex:0 0 calc(33.33% - 20px);min-width:0}.bp-help-card-grid .bp-help-card .inside{padding:1.8em 2em 5em}.bp-help-card-grid .bp-help-card h2{font-size:18px;padding:0;margin:0 0 1em;line-height:1.4}.bp-help-card-grid .bp-help-card p:first-child{margin-top:0}.bp-help-card-grid .bp-help-content-wrap{display:flex}.bp-help-content-wrap{display:flex;flex-flow:row wrap;min-width:255px;max-width:1050px;background-color:#fff;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box}.bp-help-sidebar>ul{margin:0}.bp-help-sidebar>ul>li>a{color:#23282d;font-size:16px;font-weight:600}.bp-help-sidebar>ul>li>ul{margin-top:20px}.bp-help-sidebar>ul>li>ul li{line-height:1.6;margin:1.2em 0}.bp-help-sidebar>ul>li ul>li.selected>a{font-weight:600}.bp-help-sidebar>ul>li>ul>li>ul>li{margin-left:1.6em;list-style-type:disc}.bp-help-sidebar>ul span.open{font-size:0}.bp-help-sidebar>ul span.open:after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:bottom;font-size:10px;color:#999;cursor:pointer}.bp-help-sidebar>ul span.open.active:after{transform:rotate(90deg)}.bp-help-content p,.bp-help-content ul li{line-height:2}.bp-help-content ul.bp-help-menu{margin:0 0 2.5em}.bp-help-content ul.bp-help-menu li{display:inline}.bp-help-content ul.bp-help-menu li.miscellaneous{display:none!important}.bp-help-content ul.bp-help-menu li:not(:last-child):after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:middle;font-size:10px;color:#999}.bp-help-content ul.bp-help-menu li:last-child a{color:#999}.bp-help-content h1{font-weight:500;font-size:2em;margin-bottom:1em}.bp-help-content h2{font-size:1.5em;margin-bottom:1em}.bp-help-content h3{font-size:1.2em;margin-bottom:1em}.bp-help-content code{border-radius:3px}.bp-help-content ol,.bp-help-content ul{margin-left:25px;margin-top:6px;line-height:1.5}.bp-help-content ul li{list-style-type:circle}.bp-help-content ol li{list-style-type:decimal}.bp-help-content hr{border-top:none;border-bottom:1px solid #eaeaea}.bp-help-content table{border:1px solid #eaeaea;border-collapse:collapse;width:100%;margin-bottom:3em}.bp-help-content th{background:#f9f9f9;font-weight:500;border-bottom:1px solid #eaeaea}.bp-help-content td,.bp-help-content th{padding:10px 12px}.bp-help-content img{max-width:100%;width:auto;height:auto;border:1px solid #ddd;border-radius:5px;box-shadow:0 3px 20px -1px rgba(7,10,25,.1)}.bp-help-content .article-child>ul>li{list-style-type:disc}.bp-help-content .article-child .actions,.bp-help-content .article-child .sub-menu-count{display:none}.bp-help-main-menu-wrap div.notice{margin:0 10px!important;width:100%}@media screen and (min-width:782px){.bp-help-sidebar{background:#f9f9f9;padding:2.5em;border-right:1px solid #ccd0d4;border-radius:6px 0 0 6px;-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;min-width:0;overflow:initial;width:100%;min-height:60vh}.bp-help-content{padding:2.5em 3em;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.bp-help-content th:first-child{width:40%}}@media screen and (max-width:781px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(50% - 20px);min-width:0}.bp-help-sidebar{background:#f9f9f9;padding:2.5em;width:100%;min-height:auto;border-bottom:1px solid #ccd0d4;border-radius:6px 6px 0 0}.bp-help-content{padding:2.5em;width:100%}.bp-help-content th:last-child{display:none}}@media screen and (max-width:550px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(100% - 20px)}}#buddypress-update.not-shiny .update-message{border-left:0;padding-left:36px}#buddypress-update.not-shiny .update-message:before{content:"\f534"}.bp_buddyboss_app_wrap{min-width:255px;max-width:1150px}.bp_buddyboss_app_wrap .buddyboss-app-featured{margin:20px 2px 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block,.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{background:#fff;margin:0 0 20px;padding:2em 2.8em;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-items{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around;margin:0 -10px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item{-webkit-box-flex:1;flex:1;margin:2em 1em;min-width:200px;width:30%}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{border-top:2px solid #f9f9f9;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;-webkit-box-pack:justify;justify-content:space-between;margin:0 -2em;padding:20px 2em}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{display:none}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item:nth-of-type(-n+3){display:flex}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item:nth-child(-n+3){display:block}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon{justify-content:left}.bp_buddyboss_app_wrap .buddyboss-app-banner-block img{height:62px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-pack:justify;justify-content:space-between;padding:24px 0 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content h3{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content p{margin:0 0 auto}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{background:#f7f7f7;border:1px solid #e6e6e6;height:100px;margin:0 20px 0 0;width:100px}.bp_buddyboss_app_wrap .buddyboss-app-column-block img{max-height:50px;max-width:50px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1;flex-wrap:wrap;height:20%;-webkit-box-pack:justify;justify-content:space-between;min-width:200px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content h2{float:left;margin-top:10px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content p{float:left;margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-button{border-radius:3px;cursor:pointer;display:block;height:37px;line-height:37px;text-align:center;text-decoration:none;background-color:#00aae1;color:#fff;width:124px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image{margin-right:2em;padding:1em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image .buddyboss-app-img{max-height:130px;max-width:160px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around;align-self:stretch;padding:1em 0}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content h1{padding-bottom:0}.bp_buddyboss_app_wrap .buddyboss-app-column-section{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-column{-webkit-box-flex:1;flex:1;min-width:0;width:50%;padding-right:20px}.bp_buddyboss_app_wrap .buddyboss-app-column:last-child{padding-right:0}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{box-sizing:border-box;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 0 20px;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{background:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{display:-webkit-box;display:flex;flex-wrap:wrap}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block img{height:225px;margin:0 2em 0 -2em}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 1 100px;min-width:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block h1{margin-top:-12px}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block p{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-buttons{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content a{width:48%}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block{background-color:#00aae1;text-align:center}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block h1{color:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block p{color:#fafafa}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block img{margin:10px 0;max-width:100%}body.post-type-bp_ps_form .page-title-action{display:none}.buddypress .wrap div#message,.buddypress .wrap div.notice{margin:25px 0 15px}tr.child-no-padding th{padding:0 10px 0 0}tr.child-no-padding td{padding:5px 10px}tr.child-no-padding-first th{padding:20px 10px 0 0}tr.child-no-padding-first td{padding:15px 10px 5px}@media screen and (max-width:782px){.form-table tr.child-no-padding td,.form-table tr.child-no-padding-first td{padding-left:0}}td.inviter.column-inviter strong img{float:left;margin-right:10px;margin-top:1px}td label.platform-activity{clear:left;display:block;line-height:1.5;margin:0 0 1em}.nav-tab-wrapper .bp-emails-customizer,.nav-tab-wrapper .bp-group-customizer,.nav-tab-wrapper .bp-user-customizer{padding-right:6px}.nav-tab-wrapper .bp-emails-customizer:after,.nav-tab-wrapper .bp-group-customizer:after,.nav-tab-wrapper .bp-user-customizer:after{font-family:dashicons;content:"\f345";margin-left:3px;display:inline-block;vertical-align:top}.bb-nickname-hide-last-name{margin-top:-21px}.bb-nickname-hide-last-name input[type=checkbox]{margin-top:0}.bb-nickname-hide-first-name{margin-top:-8px}.bb-nickname-hide-first-name input[type=checkbox]{margin-top:0}.loader-repair-tools{border:4px solid #f3f3f3;border-top:4px solid #3498db;border-right:4px solid green;border-left:4px solid red;border-bottom:4px solid pink;border-radius:50%;width:10px;height:10px;animation:spin 2s linear infinite;display:inline-block;margin-left:8px;vertical-align:middle}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body .section-repair_community .settings fieldset .submit a.disable-btn{pointer-events:none}body .section-repair_community .settings fieldset .checkbox label code{margin-left:10px}@media screen and (max-width:782px){.bb-nickname-hide-last-name{margin-top:-2px}.bb-nickname-hide-first-name{margin-top:0}}.animate-spin{animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-o-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-ms-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.wp-block-embed{margin:0}.wp-block-embed iframe{max-width:100%}#bp-help-content-area.loading,#bp-help-main-menu-wrap.loading,.bp-help-sidebar.loading{display:flex;justify-content:center;align-items:center}.content-loader{display:inline-block;position:relative;width:80px;height:80px}.content-loader div{display:inline-block;position:absolute;left:5px;width:9px;background:#dadada;animation:contentLoader 1.2s cubic-bezier(0,.5,.5,1) infinite}.content-loader div:nth-child(1){left:8px;animation-delay:-.24s}.content-loader div:nth-child(2){left:28px;animation-delay:-.12s}.content-loader div:nth-child(3){left:48px;animation-delay:0}#the-moderation-request-list .blocked_member>img,#the-moderation-request-list .content_owner>img{vertical-align:middle;margin-right:5px}#the-moderation-request-list [data-colname] a{outline:0;box-shadow:none}#the-moderation-request-list [data-colname] a img{display:inline-block;vertical-align:middle}#the-moderation-request-list .content_type strong{color:#1d2327}#the-moderation-request-list .content_type strong>span{color:grey}@keyframes contentLoader{0%{top:8px;height:50px}100%,50%{top:24px;height:28px}}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label{min-width:27%}#bp_moderation_settings_reporting label[for=bpm_reporting_content_reporting]{margin-top:5px;display:block}#bp_moderation_settings_reporting .small-text{width:48px;min-height:24px;height:24px}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label{display:inline-block;margin-bottom:30px}#bp_moderation_settings_blocking label.is_disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled,#bp_moderation_settings_reporting label.is_disabled{pointer-events:none;opacity:.5}#bp_moderation_settings_blocking label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.is_disabled input[type=checkbox]:disabled{opacity:1;border-color:inherit}#bb-hello-container.deactivation-popup,#bp-hello-container.deactivation-popup{top:50%;bottom:initial;transform:translateY(-50%);overflow:auto;max-height:90%;max-width:640px;margin:0 auto}#bb-hello-container.deactivation-popup .bb-hello-footer,#bb-hello-container.deactivation-popup .bp-hello-footer,#bp-hello-container.deactivation-popup .bb-hello-footer,#bp-hello-container.deactivation-popup .bp-hello-footer{position:static;padding:10px 23px}#bb-hello-container.deactivation-popup .bb-hello-footer button+button,#bb-hello-container.deactivation-popup .bp-hello-footer button+button,#bp-hello-container.deactivation-popup .bb-hello-footer button+button,#bp-hello-container.deactivation-popup .bp-hello-footer button+button{margin-left:10px}#bb-hello-container.deactivation-popup .bb-hello-content,#bb-hello-container.deactivation-popup .bp-hello-content,#bp-hello-container.deactivation-popup .bb-hello-content,#bp-hello-container.deactivation-popup .bp-hello-content{height:auto;padding:20px 23px}#bb-hello-container.deactivation-popup .bb-hello-content h4,#bb-hello-container.deactivation-popup .bp-hello-content h4,#bp-hello-container.deactivation-popup .bb-hello-content h4,#bp-hello-container.deactivation-popup .bp-hello-content h4{margin-bottom:0}#bb-hello-container.deactivation-popup .bb-hello-content ul,#bb-hello-container.deactivation-popup .bp-hello-content ul,#bp-hello-container.deactivation-popup .bb-hello-content ul,#bp-hello-container.deactivation-popup .bp-hello-content ul{margin-left:17px;list-style-type:disc}#bb-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bb-hello-container.deactivation-popup .bp-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bp-hello-content>p:first-child{margin-top:0}#bp_moderation_action td a{text-decoration:none}.row-actions .suspend a,.row-actions .suspend a:hover{color:#dc3232}.users tr.suspended-user{background-color:#f5dada}h2.has_tutorial_btn{position:relative}h2.has_tutorial_btn .bbapp-tutorial-btn{position:absolute;right:0;left:initial;top:5px;font-weight:400}h2.has_tutorial_btn .bbapp-tutorial-btn p{margin:0}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled{color:#fff;background:#2271b1}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled:hover{background:#135e96;border-color:transparent}@media screen and (max-width:580px){h2.has_tutorial_btn{margin-bottom:65px}h2.has_tutorial_btn .bbapp-tutorial-btn{top:inherit;bottom:-55px}}.bb-screen-position-outer{display:flex;width:180px;justify-content:space-between}.bb-screen-position-outer .bb-screen-position{display:flex;width:85px;flex-direction:column;text-align:center}.bb-screen-position-outer .bb-screen-position input[type=radio]{opacity:0;visibility:hidden;height:0}.bb-screen-position-outer .bb-screen-position .option{position:relative;display:flex;flex-direction:column}.bb-screen-position-outer .bb-screen-position .option:before{content:" ";height:80px;width:80px;background:#f0f0f1;display:flex;border-radius:5px;border:2px solid #ccd0d4;transition:all .3s ease}.bb-screen-position-outer .bb-screen-position .option:after{content:" ";width:40px;height:20px;border-radius:2px;background:#c3c4c7;position:absolute;top:55px}.bb-screen-position-outer .bb-screen-position .option.opt-right:after{right:8px}.bb-screen-position-outer .bb-screen-position .option.opt-left:after{left:8px}.bb-screen-position-outer .bb-screen-position .option span{font-size:14px;color:#999;line-height:2}.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_left:checked:checked+.option:before,.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_right:checked:checked+.option:before{border-color:#2370b1}.bp-messages-feedback .bp-feedback.error{margin:0;border:0;padding:0}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon{border-radius:4px 0 0 4px;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px 8px;border:1px solid #ccc;border-radius:0 4px 4px 0;border-left:0;width:100%}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback,.admin-notice .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon,.admin-notice .bp-feedback .bp-icon{border-radius:4px 0 0 4px;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p,.admin-notice .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px;border:1px solid #ccc;border-radius:0 4px 4px 0;border-left:0;width:100%}.bp-messages-feedback .bp-feedback.warning .bp-icon{background-color:#f7ba45}.bp-messages-feedback .bp-feedback.warning .bp-icon:before{font-family:bb-icons;content:"\e855"}.bb-error-section{padding:10px;margin-left:-210px;background:#ffdcdc;color:#d42929;line-height:1.5;border:1px solid #ffc5ca;border-radius:4px}@media screen and (max-width:782px){.bb-error-section{margin-left:0}}.bb-warning-section-wrap.hidden-header>th{opacity:0;visibility:hidden;padding:0;margin:0}.bb-warning-section-wrap.hidden-header>th+td{padding-left:0;padding-right:0}.bb-warning-section{padding:10px;margin-left:-210px;background:#fff3c8;color:#8b6300;line-height:1.5;border:1px solid #ffeeb3;border-radius:4px}@media screen and (max-width:782px){.bb-warning-section{margin-left:0}}.status-line{display:inline-block;font-size:14px;padding:10px 15px;background:#f0f0f1;border-radius:5px;color:grey}.status-line:before{content:"";display:inline-block;width:10px;height:10px;border-radius:100%;background:grey;margin-right:10px;vertical-align:baseline}.status-line.error-connected{color:#ce1010}.status-line.error-connected:before{background:#ce1010}.status-line.connected{color:#858585}.status-line.connected:before{background:#8fd14f}.status-line.warn-connected{color:#858585}.status-line.warn-connected:before{background:#fac710}.buddyboss_page_bp-settings .bp-avatar-nav{display:none}.avatar-options .avatar-custom-input{display:inline-block;margin:0 7px 0 0}.avatar-options .avatar-custom-input+p.description{margin-top:15px}.avatar-options .avatar-custom-input>label{display:inline-block;vertical-align:top}.avatar-options .avatar-custom-input input[type=radio]{opacity:0;visibility:hidden;height:0;margin:0;padding:0!important;border:0;display:block}.avatar-options .avatar-custom-input input[type=radio]:checked+label .img-block img{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1}.avatar-options .avatar-custom-input input[type=radio]:checked:before{position:absolute}.avatar-options .avatar-custom-input .img-block{display:flex;border-radius:5px;margin-bottom:5px}.avatar-options .avatar-custom-input img{width:80px;height:80px;border:1px solid #ccd0d4;border-radius:5px;object-fit:cover}.avatar-options .avatar-custom-input span{display:block;text-align:center;color:#999}.avatar-options .avatar-custom-input .description{margin-top:15px}.avatar-options .bb-default-custom-upload-file .bb-upload-container img{margin-bottom:10px;max-width:120px}.avatar-options .bb-default-custom-upload-file .button.delete{border-color:#d33;color:#d33;margin-left:5px}.avatar-options .bb-default-custom-upload-file .button.delete.bp-hide{display:none}.avatar-options .bb-default-custom-upload-file.cover-uploader .bb-upload-container img{max-width:300px;width:100%}.avatar-options .cover-uploader-label{position:relative;display:inline-block;overflow:hidden;cursor:pointer}.avatar-options .cover-uploader-label .cover-uploader-hide{border:0;opacity:0;position:absolute;right:0;top:0;bottom:0}.avatar-options .image-width-height>label{min-width:80px;display:inline-block}.avatar-options .image-width-height .description{margin-left:85px;margin-bottom:15px}@media screen and (max-width:782px){.avatar-options .image-width-height>label{min-width:auto;margin-bottom:10px}.avatar-options .image-width-height .description{margin-left:0}}.bp-admin-card .avatar-options .no-field-notice{margin:15px 0;padding:10px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-uploader-progress div.error{margin:5px 0 2px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-progress{margin-right:0}.preview_avatar_cover .preview-switcher{margin-bottom:25px}.preview_avatar_cover .preview-switcher .button:focus{box-shadow:none}.preview_avatar_cover .preview-block{max-width:260px;border:1px solid #ccd0d4;border-radius:5px;overflow:hidden;margin-bottom:25px;display:none}.preview_avatar_cover .preview-block.active{display:block}.preview_avatar_cover .app-preview-wrap{max-width:200px}.preview_avatar_cover .app-preview-wrap .preview-item-avatar{left:50%;border-radius:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);overflow:hidden}.preview_avatar_cover .preview-item-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;min-height:80px;max-height:80px;background-color:#ccc;overflow:hidden}.preview_avatar_cover .preview-item-cover.large-image{min-height:130px;max-height:130px}.preview_avatar_cover .preview-item-avatar{height:75px;width:75px;position:relative;top:-35px;left:25px;border:3px solid #fff;border-radius:5px}.preview_avatar_cover .preview-item-avatar.centered-image{left:50%;transform:translateX(-50%)}.preview_avatar_cover .preview-item-avatar img{background-color:#f9f9f9}.preview_avatar_cover .preview-item-avatar img,.preview_avatar_cover .preview-item-cover img{object-fit:cover;width:100%}.preview_avatar_cover .preview-item-avatar img[src=""],.preview_avatar_cover .preview-item-cover img[src=""]{display:none}.preview_avatar_cover:not(.has-avatar) .preview-item-avatar{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-cover{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-avatar{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.preview_avatar_cover:not(.has-cover):not(.has-avatar){display:none}.preview_avatar_cover .button-group>.button:last-child:first-child{border-radius:3px}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar{border-radius:50%}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar img{border-radius:50%}.group-cover-options .preview_avatar_cover .app-preview-wrap{position:relative}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-cover{min-height:120px;max-height:120px;margin-bottom:45px}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-avatar{top:25px;position:absolute;border-radius:12px;border:0;height:70px;width:70px}.buddyboss_page_bp-settings #TB_window,body.users_page_bp-profile-edit #TB_window{height:auto!important;width:820px!important;max-width:90%;top:50%!important;transform:translateY(-50%);max-height:90%;overflow:auto}.buddyboss_page_bp-settings #TB_window .bp-avatar #avatar-to-crop,body.users_page_bp-profile-edit #TB_window .bp-avatar #avatar-to-crop{margin-bottom:15px}.buddyboss_page_bp-settings #TB_ajaxContent,body.users_page_bp-profile-edit #TB_ajaxContent{height:auto!important;width:auto!important;padding:15px}table tbody td .bb-description{color:#999;margin-top:6px;margin-bottom:0}.bb-group-element,.bb-group-headers-element,.bb-member-directory-element,.bb-member-directory-profile-action,.bb-profile-header-element{margin-bottom:10px}@media screen and (max-width:782px){.bb-group-element input[type=checkbox],.bb-group-headers-element input[type=checkbox],.bb-member-directory-element input[type=checkbox],.bb-member-directory-profile-action input[type=checkbox],.bb-profile-header-element input[type=checkbox]{width:auto}}.bb-header-style-outer{display:flex}.bb-header-style-outer .bb-header-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-header-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-header-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-header-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-header-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-left.png) no-repeat center}html[dir=rtl] .bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-right.png) no-repeat center}.bb-header-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-group-header-center.png) no-repeat center}.bb-header-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-header-style-outer .bb-header-style #bb-group-header-style-centered:checked:checked+.option:before,.bb-header-style-outer .bb-header-style #bb-group-header-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer{display:flex}.bb-grid-style-outer .bb-grid-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-grid-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-grid-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-grid-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-grid-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-right.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option.opt-centered:after{background:url(../../images/bb-group-directory-center.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-centered:checked:checked+.option:before,.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer .bb-header-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-right.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-profile-header-center.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-stylecentered:checked:checked+.option:before,.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-styleleft:checked:checked+.option:before{border-color:#2370b1}.bb-head-notice{background-color:#f6f6f6;border-radius:4px;color:#999;display:inline-block;font-size:12px;font-weight:400;line-height:1.5;margin-top:10px;max-width:140px;padding:5px 10px;width:auto}.bb-head-notice a{color:inherit;font-weight:700;text-decoration:none}.bb-inactive-field>th:before,.bb-pro-inactive>th:before{content:"\eecc";font-family:bb-icons;margin-right:5px;vertical-align:top;display:inline-block;line-height:1;font-weight:300;font-size:15px}.bb-inactive-field>td,.bb-pro-inactive>td{opacity:.3}.bb-inactive-field>td,.bb-inactive-field>td *,.bb-pro-inactive>td,.bb-pro-inactive>td *{pointer-events:none;user-select:none}.bb-active-field>th:before,.bb-pro-active>th:before{display:none}.bb-active-field .bb-head-notice,.bb-pro-active .bb-head-notice{display:none}.bp-hello-email .bp-hello-title .count,.btn-open-missing-email .count{display:inline-block;background-color:#2271b1;color:#fff;padding:1px 6px;border-radius:4px;line-height:1.3;font-size:smaller}.btn-open-missing-email+#bp-hello-backdrop{display:block}.bp-hello-email .bp-hello-title .count{font-size:inherit;padding:2px 10px;margin-right:10px}.bp-hello-email .bp-hello-content{height:auto;padding:0 23px;min-height:180px;max-height:calc(100vh - 320px);margin-bottom:62px}.bp-hello-email .missing-email-list ul{list-style:disc;margin:25px 0 25px 20px}.bp-hello-email .bb-popup-buttons{position:absolute;bottom:0;padding:15px;text-align:right;width:calc(100% - 30px);margin:0 -23px;border-top:1px solid var(--bp-hello-color-secondary);background-color:#f0f0f1}@media screen and (orientation:landscape) and (max-height:480px){.bp-hello-email .bp-hello-content{min-height:110px}}#bp-hello-container.bp-hello-email{top:50%;bottom:initial;transform:translateY(-50%);margin-top:32px}#bp-hello-container.bp-hello-email .button-primary{color:#fff;margin-left:10px}@media screen and (max-width:480px){#bp-hello-container.bp-hello-email .button-primary{margin-left:0}}#bp_notification_settings_automatic table.render-dynamic-notification,#bp_notification_settings_automatic table.render-dynamic-notification tbody,#bp_notification_settings_automatic table.render-dynamic-notification td,#bp_notification_settings_automatic table.render-dynamic-notification th,#bp_notification_settings_automatic table.render-dynamic-notification tr{display:block}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th{display:none}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_notification_settings_automatic table.form-table .no-padding{padding:0}#bp_notification_settings_automatic table.form-table tbody tr{margin-bottom:20px}#bp_notification_settings_automatic table.form-table tbody tr th{margin-bottom:15px;width:100%}#bp_notification_settings_automatic .field-set{margin-top:10px;background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px}#bp_notification_settings_automatic .field-set .field-block{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;padding:15px}#bp_notification_settings_automatic .field-set .field-block+.field-block{border-top:1px solid #ccd0d4}#bp_notification_settings_automatic .field-set .field-block .no-email-info{margin-right:15px;margin-left:auto;background-color:#ffdcdc;border-radius:5px;padding:5px 10px;color:#8c0202;font-size:11px;text-decoration:none}#bp_notification_settings_automatic .field-set .field-block .email-info{margin-right:15px;margin-left:auto;border-radius:5px;padding:5px 10px;font-size:11px;text-decoration:none;background-color:#dfe5ea}#bp_notification_settings_automatic .field-set .field-block .notification-defaults{padding:3px 0;cursor:pointer}#bp_notification_settings_automatic .field-set .field-block input[type=checkbox]{margin-top:0}#bp_notification_settings_automatic .field-set .field-block .manage-defaults{margin-top:15px;justify-content:flex-end;width:100%;display:flex}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap{margin-left:15px;min-width:58px;text-align:center}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled{pointer-events:none}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]{opacity:.7;background:rgba(255,255,255,.5);border-color:rgba(220,220,222,.75);color:rgba(44,51,56,.5)}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]::before{opacity:.7}#bp_notification_settings_automatic .field-set .field-block .manage-defaults-hide{display:none}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr th{min-width:200px;padding:15px 20px 0 0;width:auto}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr td{padding:15px 10px 15px 0}.bb-bottom-notice{margin:2.2em -2.8em -2.2em;background:#f6f6f8;padding:2.2em 2.8em;border-radius:0 0 5px 5px;border-top:1px solid #ccd0d4}.bp-admin-card .form-table .bb-lab-notice{background:#f6f6f8;padding:1.2em;margin-top:1.2em;border-radius:3px;border:1px solid #ccd0d4}.bp-admin-card .form-table .bp-new-notice-panel-notice{color:#8b6300;background-color:#fff3c8;padding:1.2em;font-size:14px;line-height:1.5;border-radius:3px;margin:20px 0}.bp-admin-card .form-table .bp-new-notice-panel-notice a{color:inherit}.bp-admin-card .form-table .bp-new-notice-panel-notice+p.description{margin-bottom:15px}.bb-lab-notice.notification-information:before{content:"\eebc";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:100;margin-right:10px;line-height:1}.bb-lab-notice.notification-information:first-child{margin-top:0}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_messaging_notification_settings table.form-table .no-padding{padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default{width:300px;max-height:calc(90vh - 50px);overflow:auto}#wpadminbar #wp-admin-bar-bp-notifications-default>li{display:inline-block;width:100%;padding:5px 0}#wpadminbar #wp-admin-bar-bp-notifications-default>li#wp-admin-bar-notification-view-all{text-align:center}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar{float:left;width:40px;margin-top:4px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar .member-status{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a{height:auto;padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a img{max-width:36px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a>i{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content{float:right;width:calc(100% - 60px)}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .bb-full-link>a{opacity:1;padding:0;height:auto;position:static;white-space:normal;line-height:1.5}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .posted{line-height:1.4}table.moderations .column-content_type a[data-action=unhide],table.moderations .column-content_type a[data-action=unsuspend],table.moderations .column-member a[data-action=unhide],table.moderations .column-member a[data-action=unsuspend]{color:#5f9a22}table.moderations tfoot tr th,table.moderations thead tr th{font-weight:600}table.moderations tbody tr .column-suspend .dashicons{color:#000;font-size:24px}table.moderations .bp-block-user.disabled{cursor:default}table.moderations .bp-block-user[data-bp-tooltip]{display:inline-block}table.moderations .bp-block-user[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center}table.moderations.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{display:none}.buddyboss_page_bp-moderation .dashicons{font-weight:700}.buddyboss_page_bp-moderation .bb-back{display:inline-block;margin-top:15px;text-decoration:none}.buddyboss_page_bp-moderation .bb-back [class*=bb-icon]{display:inline-block;font-size:17px;margin:-1px 3px 0 0;vertical-align:middle}.buddyboss_page_bp-moderation table.reports tfoot tr th,.buddyboss_page_bp-moderation table.reports thead tr th{font-weight:600}table.moderations .column-member img,table.moderations .content_owner img,table.reports .column-reporter img{vertical-align:middle;margin-right:5px;border-radius:50%}#bp_moderation_action>.inside{margin:0;padding:0 20px}#bp_moderation_action>.inside .tablenav.bottom{height:auto;min-height:20px;margin:0;padding-top:0}#bp_moderation_action>.inside .tablenav.bottom .tablenav-pages{margin:20px 0}#bp_moderation_action .report-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;margin:0 -20px;padding:20px}#bp_moderation_action .report-header_content_id{font-size:20px;font-weight:600;color:#1d2327;margin-bottom:10px}#bp_moderation_action .report-header_content_id span{color:grey;margin-left:5px}#bp_moderation_action .report-header_content_id a{text-decoration:none}#bp_moderation_action .report-header_content_id a i{font-weight:300;font-size:18px;transform:translateY(-1px);display:inline-block}#bp_moderation_action .report-header_user{display:flex;align-items:center}#bp_moderation_action .report-header_user strong a{text-decoration:none;font-size:16px;box-shadow:none}#bp_moderation_action .report-header_user img{border-radius:50%;max-width:35px;height:auto;margin-right:10px;vertical-align:middle}#bp_moderation_action .report-header_content{text-align:center;font-weight:600}#bp_moderation_action .report-header_content strong{display:block;font-size:24px}#bp_moderation_action .report-header_action .report-header_button{color:#b32d2e;border-color:#b32d2e}#bp_moderation_action .report-header_action .report-header_button.green{color:#5f9a22;border-color:#afcc90}#bp_moderation_action .report-header_action .report-header_button+.report-header_button{margin-left:10px}.moderation-table-heading.form-table td{padding:15px 0}#the-moderation-report-list .reporter a{box-shadow:none}.taxonomy-bpm_category .form-field.term-slug-wrap{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th+td,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_labs_settings table.form-table .no-padding,#bp_web_push_notification_settings table.form-table .no-padding{padding:0}.no-field-notice{background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px;padding:15px}.notification-settings-input[data-bp-tooltip]{display:inline-block}.notification-settings-input[data-bp-tooltip]::after{min-width:140px;white-space:normal;padding:7px 12px;text-align:center}.bp-admin-card .password-toggle{position:relative;display:inline-block;width:50%}.bp-admin-card .password-toggle>input{padding-right:30px;width:100%!important}.bp-admin-card .password-toggle .bb-hide-pw{position:absolute;right:0;top:0;height:100%;width:30px;border:0;padding:0;background:0 0!important;box-shadow:none}.bp-admin-card .password-toggle .bb-hide-pw .bb-icon{font-size:16px;line-height:1}.bp-admin-card .password-toggle .bb-hide-pw.bb-show-pass .bb-icon::before{content:"\ee6a"}table.users .suspend a.disabled,table.users .unsuspend a.disabled{cursor:default}table.users .suspend a.disabled[data-bp-tooltip],table.users .unsuspend a.disabled[data-bp-tooltip]{display:inline-block}table.users .suspend a.disabled[data-bp-tooltip]:after,table.users .unsuspend a.disabled[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center;z-index:9999}.registration-restrictions-rule-list{margin:15px 0;max-width:560px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule{padding-left:40px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule:before{cursor:grab;content:"\e858";font-family:bb-icons;font-weight:400;font-size:22px;position:absolute;top:50%;transform:translateY(-50%);left:10px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule.ui-sortable-helper:before{cursor:grabbing}.registration-restrictions-rule-list .registration-restrictions-rule{display:flex;align-items:center;flex-wrap:wrap;gap:15px;background-color:#f6f7f7;border:1px solid #c3c4c7;position:relative;border-radius:4px;padding:15px 40px 15px 15px;margin-bottom:15px}.registration-restrictions-rule-list .registration-restrictions-rule.error{background-color:rgba(255,0,0,.1);border-color:#ffc5ca}.registration-restrictions-rule-list .registration-restrictions-rule input,.registration-restrictions-rule-list .registration-restrictions-rule select{width:100%}.registration-restrictions-rule-list .registration-restrictions-rule>div{flex:1 0 130px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld{flex-basis:80px;display:flex;align-items:baseline;margin-left:-5px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld:before{content:".";margin-right:5px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-priority{position:absolute;top:50%;transform:translateY(-50%);left:15px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove{position:absolute;top:50%;transform:translateY(-50%);right:10px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove button{color:#3c434a;font-size:20px;cursor:pointer;border:0;background-color:transparent;padding:0}.section-bb_registration_restrictions .registration-restrictions-listing{position:relative}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:absolute;right:0;top:0;font-size:13px;max-width:200px;min-width:200px;padding:10px 12px;border-radius:4px;color:#d42929;border:1px solid #ffc5ca;background:#ffdcdc}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p{color:inherit;margin:0 0 5px 0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p:last-child{margin-bottom:0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error:empty{display:none}@media screen and (max-width:1320px){.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:static;max-width:inherit;margin:20px 0}}.custom-select2{font-size:14px;line-height:2;color:#2c3338;border:1px solid #8c8f94;box-shadow:none;border-radius:3px;padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.custom-select2 .select2-selection__arrow{display:none}.select2-container--open .custom-select2{border-radius:3px 3px 0 0}.custom-dropdown-select2 .select2-search__field{min-height:25px;line-height:1}.custom-dropdown-select2 .select2-results__options{max-height:240px;overflow:auto}.custom-dropdown-select2 .select2-results__options li{padding:6px 10px}.custom-dropdown-select2 .select2-results__options li.select2-results__option--highlighted{background-color:rgba(170,170,170,.5);color:inherit}.section-bp_reaction_settings_section>h2{width:100%}.section-bp_reaction_settings_section .bb-reactions-setting-field{margin-top:8px}.section-bp_reaction_settings_section label[for=bb_reaction_mode_likes]{margin-right:15px}.section-bp_reaction_settings_section .bb-reaction-mode-description{margin-top:10px}.section-bp_reaction_settings_section .bb-reaction-button-label{display:flex!important;flex-wrap:wrap;align-items:center;gap:5px;cursor:default}.section-bp_reaction_settings_section .bb-reaction-button-label>p{width:100%;cursor:text}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit{display:none}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit.active{display:inline-block}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser{padding:3px;border-color:#8c8f94;vertical-align:middle;border-radius:4px;min-height:auto;margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i{color:#9b9f9b;font-size:24px;display:block;line-height:1}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i:before{margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser:focus{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}.section-bp_reaction_settings_section .bb-reaction-button-label input#bb-reaction-button-text{color:#2c3338;font-size:14px;vertical-align:middle;border-radius:4px;width:auto;min-height:30px;padding:3px 8px;line-height:25px}.bb-telemetry-notice.notice-info{display:flex;border-left-color:#e0623d;border-radius:4px;padding:0}.bb-telemetry-notice.notice-info .bb-telemetry-notice_content{padding-left:20px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_logo{background-color:rgba(224,98,61,.1);padding:15px 10px;color:#e0623d;font-size:28px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_heading{font-size:16px;margin:1.2em 0 .5em}.bb-telemetry-notice.notice-info p{margin-bottom:15px}.bb-telemetry-notice.notice-info a.button{padding:2px 16px;display:inline-block;margin-bottom:5px;border-radius:5px}.bb-telemetry-notice.notice-info a.button:after{font-size:16px;content:"\ee68";font-family:bb-icons;font-weight:400;margin-left:5px}.bb-telemetry-notice.notice-info .notice-dismiss:before{font-size:20px;content:"\e828";font-family:bb-icons}#loco-admin.wrap .bb-telemetry-notice.notice-info{border:1px solid #c3c4c7;border-left:4px solid #e0623d;padding:0}.section-bb_advanced_telemetry label[for=complete_reporting]{margin-right:15px}.section-bb_advanced_telemetry .bb-telemetry-tutorial-link:after{content:"\ee68";font-family:bb-icons;font-size:14px;margin-left:5px}.bb-integrations-section h1.bb-advance-heading{max-width:900px}.bb-integrations_filters_section{display:flex;justify-content:space-between;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid rgba(0,0,0,.1)}.bb-integrations_filters_section .bb-integrations_search{width:100%;max-width:290px;position:relative}.bb-integrations_filters_section .bb-integrations_search span{font-size:15px;font-weight:400;color:#000;position:absolute;right:12px;top:50%;transform:translateY(-50%);pointer-events:none}.bb-integrations_filters_section .bb-integrations_search span.clear-search{font-size:18px;pointer-events:all;cursor:pointer}.bb-integrations_filters_section .bb-integrations_search span.clear-search:before{content:"\e828"}.bb-integrations_filters_section .bb-integrations_search input{font-size:12px;font-weight:500;color:#000;padding:6px 32px 6px 16px;border:1px solid rgba(0,0,0,.3);border-radius:5px;width:100%}.bb-integrations_filters_section .bb-integrations_search input::placeholder{color:#000}.bb-integrations_filters_section .bb-integrations_search input::-webkit-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search input::-moz-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search.loading{pointer-events:none}.bb-integrations_filters_section .bb-integrations_search.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;right:-30px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px}.bb-integrations_filters_section .bb-integrations_filters select{border:1px solid rgba(0,0,0,.1);border-radius:5px;padding:5px 16px 5px 16px}.bb-integrations_filters_section .bb-integrations_filters.loading{pointer-events:none;position:relative}.bb-integrations_filters_section .bb-integrations_filters.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;left:-30px}.bb-integrations_filters_section .integrations_collection-sub{display:flex;margin:0}.bb-integrations_filters_section .integrations_collection-sub li{display:flex;align-items:center;cursor:pointer;position:relative;margin:0}.bb-integrations_filters_section .integrations_collection-sub li:hover span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:12px;font-weight:500;color:#000;border:1px solid rgba(0,0,0,.1);border-left-width:0;padding:8px 16px}.bb-integrations_filters_section .integrations_collection-sub li input{opacity:0;position:absolute;inset:0;width:auto;height:auto;margin:0}.bb-integrations_filters_section .integrations_collection-sub li input:checked+span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li:first-child span{border-left:1px solid rgba(0,0,0,.1);border-radius:3px 0 0 3px}.bb-integrations_filters_section .integrations_collection-sub li:last-child span{border-radius:0 3px 3px 0}.bb-integrations-listing{display:flex;flex-wrap:wrap;gap:34px;margin-bottom:60px}.bb-integrations-listing .integration_cat_title{width:100%}.bb-integrations-listing .cat_title{font-size:18px;font-weight:600;color:#000;margin:25px 0 0}.bb-integrations-listing .integrations_single_holder{display:inline-block;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:24px 24px 42px;width:100%;max-width:256px;position:relative}.bb-integrations-listing .integrations_single_holder .holder_integrations_img{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:24px}.bb-integrations-listing .integrations_single_holder .holder_integrations_img img{height:56px;width:56px;object-fit:contain;padding:8px;border:1px solid rgba(0,0,0,.1);border-radius:50%}.bb-integrations-listing .integrations_single_holder .holder_integrations_img .type_integrations_text{font-size:12px;line-height:22px;color:rgba(0,0,0,.8);border:1px solid rgba(0,0,0,.1);padding:0 8px;border-radius:19px}.bb-integrations-listing .integrations_single_holder .logo_title{color:#000;font-size:14px;font-weight:600;line-height:20px;margin-bottom:8px}.bb-integrations-listing .integrations_single_holder .short_desc p{font-size:12px;color:rgba(0,0,0,.6);min-height:45px;margin:0 0 15px}.bb-integrations-listing .integrations_single_holder .integration_readmore{font-size:12px;font-weight:500;color:#640398;text-decoration:none;position:absolute;bottom:24px;left:24px}.bb-integrations-listing .integrations_single_holder .integration_readmore i{font-size:15px;transform:rotate(-45deg);display:inline-block}.bb-integrations-listing .integrations_single_holder .integration_readmore:active,.bb-integrations-listing .integrations_single_holder .integration_readmore:focus{box-shadow:none}.bb-integrations-listing .integrations_single_holder.loading{border:0}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_avatar{height:70px;width:70px;border-radius:50%;margin-bottom:35px}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_block{height:18px;border-radius:6px;width:100%;margin-bottom:15px}.bb-integrations-listing .bb-integrations-no-results{display:flex;align-items:center;flex-direction:column;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:40px 20px;width:100%}.bb-integrations-listing .bb-integrations-no-results h2{font-size:22px;margin-top:20px;margin-bottom:0}.bb-integrations-listing .bb-integrations-no-results p{font-size:14px;color:#9b9c9f;margin-top:10px}.bb-integrations-listing .bb-integrations-no-results>i{color:#9b9c9f;font-size:38px;opacity:.9}.bb-integrations-listing_loadmore{display:flex;justify-content:center}.bb-integrations_loadmore{display:flex;align-items:center;gap:5px;justify-content:center;color:#fff;cursor:pointer;font-size:14px;font-weight:500;background-color:#e0613c;border:0;border-radius:5px;padding:16px 20px;min-width:150px}.bb-integrations_loadmore:hover{color:rgba(255,255,255,.8)}.bb-integrations_loadmore.loading{pointer-events:none;opacity:.8}.bb-integrations_loadmore.loading:after{content:"\ef30";font-family:bb-icons;font-size:18px;font-weight:400;display:inline-block;animation:spin 2s infinite linear}.bb-get-platform{display:flex;flex-direction:row-reverse;justify-content:space-between;background-color:#fff;border:.5px solid #e0613c;border-radius:10px;box-shadow:0 4px 32px 0 rgba(0,0,0,.1);padding:40px 48px;max-width:990px;margin:80px auto 0}.bb-get-platform .bb-get-platform_details h3{color:#000;font-size:32px;font-weight:600;line-height:1.25;margin:0 0 16px}.bb-get-platform .bb-get-platform_details p{color:rgba(0,0,0,.8);font-size:14px;line-height:20px;margin-bottom:32px}.bb-get-platform .guarantee-img{width:180px;height:180px;object-fit:contain}.bb-get-platform .bb-upgrade-btn{color:#fff;background-color:#e0613c;font-size:14px;font-weight:500;line-height:22px;border-radius:5px;padding:8px 16px;text-decoration:none}.bb-integrations-loader{display:flex;justify-content:center;align-items:center;width:100%;min-height:250px}.bb-integrations-loader i{font-size:26px;display:inline-block}@media screen and (max-width:2600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(20% - 78px)}}@media screen and (max-width:1600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(25% - 78px)}}@media screen and (max-width:1200px){.bb-integrations-listing .integrations_single_holder{max-width:calc(33.3333% - 78px)}}@media screen and (max-width:1080px){.bb-integrations_filters_section{flex-direction:column;gap:20px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px;flex-wrap:wrap}.bb-integrations_filters_section .bb-integrations_filters.loading:after{left:-20px}.bb-get-platform{flex-direction:column}.bb-get-platform .guarantee-img{margin-bottom:24px}}@media screen and (max-width:900px){.bb-integrations-listing{gap:20px}.bb-integrations-listing .integrations_single_holder{max-width:calc(50% - 60px)}}@media screen and (max-width:560px){.bb-integrations_filters_section .bb-integrations_search{margin:0 25px;max-width:calc(100% - 50px)}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:11px;padding:5px 10px}.bb-integrations_filters_section .bb-integrations_filters{justify-content:center}.bb-integrations_filters_section .bb-integrations_filters select{font-size:13px;margin:0 25px;width:calc(100% - 50px);max-width:inherit}.bb-integrations_filters_section .bb-integrations_filters.loading:after{left:inherit;right:-4px}.bb-integrations-listing .integrations_single_holder{max-width:calc(100% - 40px)}}.buddyboss_page_bb-upgrade .nav-tab-wrapper{display:none}.bb-upgrade-nav-tag{display:inline-block;vertical-align:top;box-sizing:border-box;margin:0 0 -1px 5px;padding-left:8px;padding-right:8px;min-width:18px;height:20px;line-height:20px;border-radius:15px;background-color:#d63638;color:#fff;font-size:11px;text-align:center}@media screen and (max-width:760px){.bb-upgrade-nav-tag{margin-top:2px}}.advance-performance-wrapper .wrap--performance{width:100%}.wrap.wrap--upgrade{width:calc(100% - 22px);margin-left:0}@media screen and (max-width:782px){.wrap.wrap--upgrade{width:calc(100% - 34px);margin-left:12px}}.wrap.wrap--upgrade>.wrap{margin-left:0;margin-right:0}.advance-tab-header{margin:16px 0 0;padding:0 0 16px;border-bottom:1px solid rgba(0,0,0,.1);display:flex;align-items:center}@media screen and (max-width:700px){.advance-tab-header{flex-direction:column}.advance-tab-header .advance-brand{margin:0 auto 16px}.advance-tab-header .nav-settings-subsubsub{margin-bottom:16px}.advance-tab-header .adv-sep{display:none}.advance-tab-header .advance-actions{flex-direction:column}.advance-tab-header .advance-actions .advance-nav-action{margin-left:0;margin-top:8px}}.advance-tab-header .nav-settings-subsubsub{padding:0}.advance-tab-header .subsubsub{margin:0}.advance-tab-header .subsubsub>li{margin-right:24px}.advance-tab-header .subsubsub>li:last-of-type{margin-right:0}.advance-tab-header .subsubsub a{color:rgba(0,0,0,.6);font-weight:500;font-size:14px}.advance-tab-header .subsubsub a:active,.advance-tab-header .subsubsub a:focus{box-shadow:none}.advance-tab-header .subsubsub a.current{color:#e0613c}.advance-tab-header .advance-nav-action{margin-left:24px}.advance-brand{margin-right:auto}.advance-brand .upgrade-brand{border-radius:50%;max-width:40px}.adv-sep{width:1px;height:24px;background-color:rgba(0,0,0,.2);margin:0 24px}.advance-actions{display:flex;align-items:center}.advance-actions .advance-action-link{font-size:14px}.advance-nav-action{font-size:14px;font-weight:500;background:#e0613c;color:#fff;border-radius:5px;padding:8px 16px;display:inline-flex;align-items:center;text-decoration:none}.advance-nav-action:hover{color:rgba(255,255,255,.8)}.advance-nav-action:hover svg path{fill:rgba(255,255,255,0.8)}.advance-nav-action:active,.advance-nav-action:focus{color:#fff;box-shadow:none}.advance-nav-action svg{margin-right:8px}h1.bb-advance-heading{font-size:40px;font-weight:600;margin-bottom:72px;max-width:45%;margin-top:48px}@media screen and (max-width:1400px){h1.bb-advance-heading{max-width:75%}}@media screen and (max-width:1080px){h1.bb-advance-heading{font-size:28px}}@media screen and (max-width:760px){h1.bb-advance-heading{max-width:95%;margin-top:24px;margin-bottom:42px}}@media screen and (max-width:560px){h1.bb-advance-heading{font-size:20px;margin-bottom:30px;text-align:center}}.bb-upgrade-wrap{position:relative;font-size:15px;max-width:1400px;margin-top:25px;display:flex;align-items:flex-start;flex-wrap:wrap;justify-content:space-between}.bb-advance-card{flex:0 0 48%;max-width:48%;margin:0;padding:0;border-radius:9px;overflow:hidden;border:1px solid #ccd0d4;box-shadow:0 4px 28px 0 rgba(0,0,0,.08);background:#fff}@media screen and (max-width:760px){.bb-advance-card{flex:0 0 100%;max-width:100%;margin-bottom:24px}.bb-advance-card.bb-advance-card--hero{margin-bottom:24px}}.bb-advance-card h2{font-weight:600;font-size:1.6em;line-height:1.2;margin:0 0 11px}.bb-advance-card .card-subtitle{font-size:1em;line-height:1.4}.card-data{flex:1;padding:2.3em 2.3em;display:flex;flex-direction:column}.card-figure{width:100%;height:100%;position:relative;padding-top:52.56%;display:block;background-color:#faf9f7;border-bottom:1px solid rgba(0,0,0,.1)}.card-figure .upgrade-figure{position:absolute;top:0;bottom:0;left:0;right:0;margin:24px auto 0;z-index:0;max-height:calc(100% - 24px);width:auto;max-width:100%;object-fit:cover}.bb-advance-card--hero{width:100%;flex:0 0 100%;max-width:100%;margin-bottom:48px}.bb-advance-card--hero .card-inner-wrap{display:flex}@media screen and (max-width:760px){.bb-advance-card--hero .card-inner-wrap{flex-direction:column}.bb-advance-card--hero .card-inner-wrap .card-figure-wrapper{width:100%}.bb-advance-card--hero .card-inner-wrap .card-figure{padding-top:52.56%}.bb-advance-card--hero .card-inner-wrap .card-figure .upgrade-figure{max-height:100%}.bb-advance-card--hero .card-inner-wrap .card-data{padding:2.3em 2.3em}}.bb-advance-card--hero .card-figure-wrapper{width:42.417%}.bb-advance-card--hero .card-figure{width:100%;padding-top:0;border:0;background-color:#1a1830}.bb-advance-card--hero .card-figure .upgrade-figure{max-height:none;margin:auto}.bb-advance-card--hero .card-data{flex:1;padding:4.2em 2.8em;display:flex;flex-direction:column}.advance-card-note{margin:24px 0}.advance-card-note p{margin:0}.advance-card-note p.wp-upgrade-description{color:rgba(0,0,0,.6)}.advance-card-action{display:flex;align-items:center;margin-top:auto}@media screen and (max-width:900px){.advance-card-action{flex-direction:column}}.advance-action-button,.wp-performance-check input[type=submit]{border:1px solid #e0613c;color:#e0613c;font-weight:500;background-color:#fff;border-radius:5px;padding:8px 16px;margin-right:16px;cursor:pointer;text-decoration:none;outline:0;box-shadow:none;font-size:15px}@media screen and (max-width:900px){.advance-action-button,.wp-performance-check input[type=submit]{margin:0 0 16px}}.advance-action-button:hover,.wp-performance-check input[type=submit]:hover{color:#e0613c}.advance-action-button:active,.advance-action-button:focus,.wp-performance-check input[type=submit]:active,.wp-performance-check input[type=submit]:focus{background-color:rgba(224,97,60,.1);color:#e0613c;outline:0;box-shadow:none}.advance-action-success .advance-action-button,.advance-action-success .wp-performance-check input[type=submit]{border-color:#019701;color:#019701}.advance-action-button.advance-action-button--idle,.wp-performance-check input[type=submit].advance-action-button--idle{pointer-events:none;cursor:default}.advance-action-link{color:#640398;font-weight:500;text-decoration:none;outline:0;box-shadow:none;border-bottom:1px solid transparent;padding:2px 0 1px}.advance-action-link i{display:inline-block;transform:rotate(45deg);line-height:1}.advance-action-link:hover{color:#640398;border-bottom:1px solid #640398}.advance-action-link:active,.advance-action-link:focus{outline:0;box-shadow:none;color:#640398}.advance-action-link.advance-action-link--back{display:inline-block;margin:12px 0}.advance-action-link.advance-action-link--back i{transform:none}.advance-list{display:flex;flex-wrap:wrap;margin:0 33.33% 0 0}.bb-advance-card--theme .advance-list{margin-right:16%}@media screen and (max-width:1500px){.advance-list{margin-right:0}.bb-advance-card--theme .advance-list{margin-right:0}}.advance-list li{max-width:50%;flex:0 0 50%;margin:0 0 11px;font-weight:600;font-size:95%}@media screen and (max-width:1300px){.advance-list li{max-width:100%;flex:0 0 100%}}.advance-list li.advance-list__expand{max-width:100%;flex:0 0 100%}.advance-list li:before{content:"\e876";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:400;margin-right:8px;line-height:1;color:#e0613c}.bb-upgrade-notice{background-color:#f6efe8;padding:8px;text-align:center;border-bottom:1px solid #c5bfba;margin-left:-20px;position:relative}.bb-upgrade-notice .bb-upgrade-point{font-size:1rem;font-weight:500;color:#000;display:flex;align-items:center;justify-content:center}.bb-upgrade-notice .bb-upgrade-point i{font-size:24px;margin-right:4px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link{font-weight:600;color:inherit;margin-left:16px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link:focus{box-shadow:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice{display:inline-block;width:20px;height:20px;position:absolute;color:rgba(0,0,0,.6);right:8px;top:50%;transform:translateY(-50%);border:0;padding:0;outline:0;cursor:pointer}.bb-upgrade-notice .bb-dismiss-upgrade-notice:before{content:"\e828";font-family:bb-icons;font-style:normal;display:inline-block;width:20px;height:20px;font-size:20px;text-decoration:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice:hover{color:#000}.bb-upgrade-notice .bb-dismiss-upgrade-notice:active,.bb-upgrade-notice .bb-dismiss-upgrade-notice:focus{outline:0;box-shadow:none}@media screen and (max-width:768px){.bb-upgrade-notice{margin:0 0 0 -10px;padding-right:35px}}.wrap.wrap--performance>h2:first-child{font-weight:500;font-size:24px}.wrap.wrap--performance>p{color:rgba(0,0,0,.6);font-size:14px}.wp-performance-check input[type=submit]{margin:24px 0 32px}.wrap--performance{max-width:600px}.wrap--performance #resultTable table{width:100%} \ No newline at end of file +@charset "UTF-8";:root{--bb-plt-color-black:#000;--bb-plt-color-white:rgba(255, 255, 255, 1);--bb-plt-tooltip-background:var(--bb-plt-color-black);--bb-plt-tooltip-color:var(--bb-plt-color-white);--bb-plt-font-size-base:16px}button[data-balloon]{overflow:visible}[data-balloon]{position:relative}[data-balloon]:after{opacity:0;pointer-events:none;transition:all .18s ease-out .18s;font-weight:600;font-size:11px;line-height:var(--bb-plt-font-size-base);background:var(--bb-plt-tooltip-background);border-radius:4px;box-shadow:0 1px 3px 0 rgba(0,0,0,.22);color:var(--bb-plt-tooltip-color);content:attr(data-balloon);line-height:1.3;padding:7px 15px;position:absolute;white-space:nowrap;z-index:10;text-align:center}[data-balloon]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;content:"";position:absolute;z-index:10}[data-balloon]:hover:after,[data-balloon]:hover:before,[data-balloon][data-balloon-visible]:after,[data-balloon][data-balloon-visible]:before{opacity:1;pointer-events:auto}[data-balloon].font-awesome:after{font-family:FontAwesome}[data-balloon][data-balloon-break]:after{white-space:pre}[data-balloon][data-balloon-blunt]:after,[data-balloon][data-balloon-blunt]:before{transition:none}[data-balloon][data-balloon-pos=up]:after{bottom:100%;left:50%;margin-bottom:11px;transform:translate(-50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:before{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%,10px);transform-origin:top}[data-balloon][data-balloon-pos=up]:hover:after,[data-balloon][data-balloon-pos=up][data-balloon-visible]:after{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=up]:hover:before,[data-balloon][data-balloon-pos=up][data-balloon-visible]:before{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=up-left]:after{bottom:100%;left:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:before{bottom:100%;left:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-left]:hover:after,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-left]:hover:before,[data-balloon][data-balloon-pos=up-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:after{bottom:100%;right:0;margin-bottom:11px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:before{bottom:100%;right:5px;margin-bottom:5px;transform:translate(0,10px);transform-origin:top}[data-balloon][data-balloon-pos=up-right]:hover:after,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=up-right]:hover:before,[data-balloon][data-balloon-pos=up-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down]:after{left:50%;margin-top:11px;top:100%;transform:translate(-50%,-10px)}[data-balloon][data-balloon-pos=down]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;left:50%;margin-top:5px;top:100%;transform:translate(-50%,-10px)}[data-balloon][data-balloon-pos=down]:hover:after,[data-balloon][data-balloon-pos=down][data-balloon-visible]:after{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=down]:hover:before,[data-balloon][data-balloon-pos=down][data-balloon-visible]:before{transform:translate(-50%,0)}[data-balloon][data-balloon-pos=down-left]:after{left:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;left:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-left]:hover:after,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-left]:hover:before,[data-balloon][data-balloon-pos=down-left][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:after{right:0;margin-top:11px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;right:5px;margin-top:5px;top:100%;transform:translate(0,-10px)}[data-balloon][data-balloon-pos=down-right]:hover:after,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:after{transform:translate(0,0)}[data-balloon][data-balloon-pos=down-right]:hover:before,[data-balloon][data-balloon-pos=down-right][data-balloon-visible]:before{transform:translate(0,0)}[data-balloon][data-balloon-pos=left]:after{margin-right:11px;right:100%;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=left]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;margin-right:5px;right:100%;top:50%;transform:translate(10px,-50%)}[data-balloon][data-balloon-pos=left]:hover:after,[data-balloon][data-balloon-pos=left][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=left]:hover:before,[data-balloon][data-balloon-pos=left][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:after{left:100%;margin-left:11px;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=right]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:6px;height:18px;left:100%;margin-left:5px;top:50%;transform:translate(-10px,-50%)}[data-balloon][data-balloon-pos=right]:hover:after,[data-balloon][data-balloon-pos=right][data-balloon-visible]:after{transform:translate(0,-50%)}[data-balloon][data-balloon-pos=right]:hover:before,[data-balloon][data-balloon-pos=right][data-balloon-visible]:before{transform:translate(0,-50%)}[data-balloon][data-balloon-length=small]:after{white-space:normal;width:80px}[data-balloon][data-balloon-length=medium]:after{white-space:normal;width:150px}[data-balloon][data-balloon-length=large]:after{white-space:normal;width:260px}[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:380px}@media screen and (max-width:768px){[data-balloon][data-balloon-length=xlarge]:after{white-space:normal;width:90vw}}[data-balloon][data-balloon-length=fit]:after{white-space:normal;width:100%}[data-bp-tooltip]:after{background:var(--bb-plt-tooltip-background);color:var(--bb-plt-tooltip-color)}[data-bp-tooltip]:before{background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22var(--bb-plt-tooltip-background)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;width:18px;height:6px;opacity:0;pointer-events:none;transition:all .18s ease-out .18s}.bp-badge{color:#d84800;display:inline-block;font:400 150px/1 dashicons!important}.bp-badge:before{content:"\f448"}.index_page_bp-about code,.settings_page_bp-credits code{background-color:#e0e0e0;color:#636363;font-size:1em}.bp-about-wrap{position:relative;font-size:15px;max-width:1150px;margin-top:25px}.bp-about-wrap .bp-admin-card{margin:20px 0 0}.bp-about-wrap .bp-admin-card h2{font-weight:600}.bp-about-wrap .bp-admin-card h2:before{content:none}.bp-about-wrap .bp-admin-card img{margin:0;max-width:100%;height:auto;vertical-align:middle}.bp-about-wrap .bp-admin-card ul{margin:0}.bp-about-wrap .bp-admin-card p{line-height:1.5;font-size:14px;margin:0}.bp-about-wrap .bp-admin-card .wp-person{display:inline-block;vertical-align:top;margin:0 10px 0 0;height:70px;width:280px}.bp-about-wrap .bp-admin-card .wp-person .gravatar{float:left;margin:0 10px 10px 0;border-radius:100%;width:60px;height:60px}.bp-about-wrap .bp-admin-card .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.bp-about-wrap .bp-admin-card .wp-person .title{display:block;font-weight:300}.bp-about-wrap .bp-admin-card p.wp-credits-list a{white-space:nowrap}#adminmenu #toplevel_page_bp-activity_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-activity_user .wp-menu-image:before{content:"\f130"}#adminmenu #toplevel_page_bp-groups_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-groups_user .wp-menu-image:before{content:"\f307"}#adminmenu #toplevel_page_bp-notifications .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-notifications_user .wp-menu-image:before{content:"\f439"}#adminmenu #toplevel_page_bp-messages .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-messages_user .wp-menu-image:before{content:"\f465"}#adminmenu #toplevel_page_bp-friends .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before{content:"\f325"}#adminmenu #toplevel_page_bp-settings .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_network .wp-menu-image:before,#adminmenu #toplevel_page_bp-settings_user .wp-menu-image:before{content:"\f108"}#adminmenu li.toplevel_page_bp-components .wp-menu-image,#adminmenu li.toplevel_page_bp-general-settings .wp-menu-image{content:"\f448"}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-seperator]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform a[href=bp-plugin-separator-notice]{pointer-events:none;cursor:default;padding-bottom:0;margin-right:16px;margin-left:14px;margin-bottom:5px;border-bottom:1px solid #555}#adminmenu li.toplevel_page_buddyboss-platform .wp-menu-image:before{content:"\edc8";font-family:bb-icons;font-style:normal;font-weight:300;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:20px;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:23px}#bp-admin-component-form .tablenav{margin-bottom:10px}#bp-admin-component-form .wp-list-table.plugins .plugin-title{width:25%;padding-bottom:15px}#bp-admin-component-form .subsubsub{padding-bottom:5px}#bp-admin-component-form span.required{color:#32373c}.nav-settings-subsubsub{padding-bottom:0}.nav-settings-subsubsub .subsubsub{float:none}@media screen and (max-width:782px){#bp-admin-component-form .wp-list-table.plugins .plugin-title{display:block;width:auto}#bp-admin-component-form .subsubsub{margin-bottom:0;padding-bottom:35px}}#adminmenu .toplevel_page_network-tools div.wp-menu-image:before{content:""}.buddyboss_page_bp-tools .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-tools .section-default_data ul li.main ul{margin:5px 0 0 25px}.buddyboss_page_bp-tools .section-default_data #message ul.results li{list-style:disc;margin-left:25px}.buddyboss_page_bp-repair-community .section-default_data ul li.main{border-bottom:1px solid #eee;margin:0 0 10px;padding:5px 0}.buddyboss_page_bp-repair-community .section-default_data ul li.main ul{margin:5px 0 0 20px}.buddyboss_page_bp-repair-community .section-default_data #message ul.results li{list-style:disc;margin-left:25px}tr.bp-search-child-field,tr.bp-search-child-field th{padding:0}tr.bp-search-child-field td{padding:6px 25px}tr.bp-search-parent-field td,tr.bp-search-parent-field th{padding:15px 20px 10px 0}tr.bp-search-parent-field td p{margin-top:0}tr.bp-search-parent-field td p.section-header{margin:0 0 20px}tr.bp-custom-post-type-child-field td{padding:6px 40px}tr.bp-custom-post-type-child-field,tr.bp-search-parent-field label{font-weight:600}tr.bp-search-parent-field label{font-size:16px}.bp-admin-card{position:relative;margin-top:20px;padding:2.2em 2.8em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-admin-card .form-table td p{color:#999;margin-top:6px}.bp-admin-card .form-table td a.button-secondary{margin-top:1px}.bp-admin-card h2{line-height:1;margin:0 0 1em;padding-bottom:1.2em;font-size:22px;font-weight:700;color:#333;border-bottom:1px solid #eaeaea;align-items:center;display:flex}.bp-admin-card h2 span{font-weight:400}.bp-admin-card h2 a{text-decoration:none}.bp-admin-card h2 [class*=" bb-icon-"]{font-size:36px;width:36px;margin-right:16px;vertical-align:middle;position:relative}.bp-admin-card h2 [class*=" bb-icon-"]:before{margin:0;color:#f6f6f6;position:relative;z-index:2}.bp-admin-card h2 [class*=" bb-icon-"]:after{position:absolute;left:4px;top:4px;z-index:1;content:" ";width:28px;height:28px;background:#333}.bp-admin-card h3{font-size:19px;font-weight:600}.bp-admin-card p.alert{padding:10px 12px;background:#f3f5f6;border-radius:3px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp-admin-card p.alert code a{text-decoration:none;color:#444}.bp-admin-card p.alert code a:hover{color:#0073aa}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td{background:#f0f0f1;margin:10px 0 0 10px;padding:10px 15px 10px 20px;border:1px solid #ccd0d4;display:block;border-radius:4px}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td p{margin:0}.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin:10px 0 10px 10px}@media screen and (max-width:782px){.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none td,.buddyboss_page_bp-settings .section-bp_custom_post_type .form-table .child-no-padding.bp-display-none.child-custom-post-type td{margin-left:0}}.bp-admin-card.section-bp_document_settings_extensions h2:before,.bp-admin-card.section-bp_video_settings_extensions h2:before,.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>th{display:none}.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing>td{padding:0}.bp-admin-card.section-bp_media_settings_symlinks{display:block!important}.bp-admin-card.section-bp_search_settings_community table,.bp-admin-card.section-bp_search_settings_post_types table{margin-bottom:20px}.bp-admin-card.section-bp_search_settings_community th[scope=row],.bp-admin-card.section-bp_search_settings_post_types th[scope=row]{width:1px}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing th{display:none}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing td table.extension-listing thead tr th{display:table-cell}.section-bp_document_settings_extensions table.form-table tbody tr.document-extensions-listing>td{padding:0}.section-bp_document_settings_extensions+.submit>a{margin-left:5px}table.extension-listing{border-radius:4px;margin:9px 0 12px}table.extension-listing thead th{padding:12px 18px}table.extension-listing thead th.ext-head-extension{width:2.5em}table.extension-listing thead th.ext-head-desc{width:16%}table.extension-listing thead th.ext-head-icon{width:4em}table.extension-listing thead td.ext-head-enable{width:1.2em}table.extension-listing tbody td{padding:10px}table.extension-listing tbody td [class*=" bb-icon-"]{font-size:33px;color:#999;margin-left:8px;vertical-align:middle}table.extension-listing tbody td input.error{border:1px solid red}table.extension-listing tbody td input.hide-border{border:none;background-color:transparent;color:#555;margin:0}table.extension-listing tbody td input.hide-border:focus{background-color:#eee}table.extension-listing tbody td input[type=text]{width:100%}table.extension-listing tbody td #btn-remove-extensions{cursor:pointer;color:#a00;font-size:18px;vertical-align:middle;margin-left:6px}table.extension-listing tbody tr.custom-extension td input.extension-mime[type=text]{width:50%}table.extension-listing tfoot td #btn-add-extensions,table.extension-listing tfoot td #btn-add-video-extensions,table.extension-listing tfoot td #btn-check-mime-type{cursor:pointer;float:right;margin-left:8px}@media screen and (max-width:782px){table.extension-listing{display:block}table.extension-listing tbody,table.extension-listing thead,table.extension-listing tr{display:block;width:100%}table.extension-listing tbody.extra-extension input[type=text],table.extension-listing thead.extra-extension input[type=text],table.extension-listing tr.extra-extension input[type=text]{margin-top:15px;margin-left:10px;width:calc(100% - 10px)}table.extension-listing tbody.extra-extension .icon-select-main,table.extension-listing thead.extra-extension .icon-select-main,table.extension-listing tr.extra-extension .icon-select-main{margin-left:10px}table.extension-listing tr.custom-extension{background-color:#fff}table.extension-listing tr.custom-extension td{padding-left:20px!important}table.extension-listing tfoot{width:100%;display:inline-block;box-sizing:border-box}table.extension-listing tfoot td #btn-add-extensions{margin:10px 0 15px}table.extension-listing thead .ext-head:not(.ext-head-enable){display:none!important}table.extension-listing .ext-head.ext-head-enable{width:100%!important;padding:10px 0 0 10px!important}table.extension-listing tbody td{padding-left:10px!important;width:100%!important;box-sizing:border-box}table.extension-listing tbody td>i{margin:15px 0 10px 10px}table.extension-listing tbody td:before{top:0;left:20px!important;font-weight:600}table.extension-listing tbody td:first-child{padding-left:20px!important}table.extension-listing tbody td .extension-mime{margin-bottom:15px}table.extension-listing tbody td .btn-check-mime-type{margin-left:10px}}table.extension-listing select.extension-icon{display:none}table.extension-listing .icon-select-main{position:relative;display:inline-block;vertical-align:middle;width:100%}table.extension-listing .icon-select-main .icon-select-button{font-size:14px;line-height:2;color:#32373c;border:1px solid #7e8993;border-width:1px;box-shadow:none;border-radius:3px;padding:3px 24px 3px 8px;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;max-width:100%;width:100%;display:inline-block;box-sizing:border-box}table.extension-listing .icon-select-main .icon-select-button li{list-style:none;margin:0;line-height:20px;white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-align:left;color:#555}table.extension-listing .icon-select-main .icon-select-button i{font-size:22px;color:#888;margin-right:10px;vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list{position:absolute;left:0;right:0;min-width:160px;background-color:#fff;border:1px solid #ccd0d4;border-radius:3px;box-shadow:0 2px 12px 1px rgba(0,0,0,.1);padding:0;bottom:100%;max-height:60vh;overflow:auto;display:none}table.extension-listing .icon-select-main .custom-extension-list ul.custom-extension-list-select{font-size:0;color:#888}table.extension-listing .icon-select-main .custom-extension-list li{list-style:none;cursor:pointer;font-size:14px;padding:8px 12px;margin:0}table.extension-listing .icon-select-main .custom-extension-list li:first-child{border-bottom:1px solid #eee;padding-top:10px;padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:nth-child(2){padding-top:10px}table.extension-listing .icon-select-main .custom-extension-list li:last-child{padding-bottom:10px}table.extension-listing .icon-select-main .custom-extension-list li:hover{background-color:#f9f9f9}table.extension-listing .icon-select-main .custom-extension-list li span{vertical-align:middle}table.extension-listing .icon-select-main .custom-extension-list i{font-size:28px;margin-right:10px;vertical-align:middle;color:#888}@media screen and (max-width:1023px){#bp-hello-container.bp-hello-mime{bottom:0}#bp-hello-container.bp-hello-mime .bp-hello-header{height:auto;max-height:initial;min-height:58px}}body.site-users-php th#role,body.users-php th#role,body.users_page_bp-signups th#count_sent{width:10%}body.site-users-php th#email,body.site-users-php th#name,body.users-php th#email,body.users-php th#name,body.users-php th#registered,body.users_page_bp-signups th#date_sent,body.users_page_bp-signups th#email,body.users_page_bp-signups th#name,body.users_page_bp-signups th#registered{width:15%}body.users-php th#blogs,body.users_page_bp-signups th#blogs{width:20%}body.users_page_bp-signups td.count_sent,body.users_page_bp-signups th.column-count_sent{text-align:center}.bp-signups-list table{margin:1em 0}.bp-signups-list .column-fields{font-weight:700}#bp-activities-form .fixed .column-author{width:15%}#bp-activities-form #the-comment-list td.comment img,#bp-activities-form #the-comment-list td.comment video{max-width:300px;display:block;margin:.6em 0}.activity-attached-gif-container{cursor:pointer;max-width:480px}.activity-attached-gif-container .gif-player{position:relative;max-width:480px}.activity-attached-gif-container .gif-player video{margin:0}.activity-attached-gif-container .gif-play-button{height:80px;width:80px;position:absolute;left:29%;margin-left:-32px;top:69%;margin-top:-44px}.activity-attached-gif-container .gif-play-button .bb-icon-play-thin{font-size:80px;width:80px;height:80px;margin:0;padding:0;line-height:0}.activity-attached-gif-container .gif-icon{background:url(../images/GIF.svg) center no-repeat;position:absolute;display:block;height:28px;width:44px;bottom:0;left:0;border-radius:0 4px 0 0;background-size:28px;padding:8px;background-color:#000;opacity:.45}form#bp-groups-form .fixed .column-comment{width:20%}@media only screen and (min-width:700px){#poststuff #bbp_reply_attributes select{min-width:70%}}body.post-type-reply #edit-slug-box{padding-left:0;margin-top:0}#bbpress_group_admin_ui_meta_box fieldset{min-width:230px}#bbp-dashboard-right-now .table,#bbp-dashboard-right-now .versions,#bbp-dashboard-right-now p.sub{margin:-12px}#bbp-dashboard-right-now .inside{font-size:12px;padding-top:20px;margin-bottom:0}#bbp-dashboard-right-now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px;right:0}#bbp-dashboard-right-now .table{margin:0;padding:0;position:relative}#bbp-dashboard-right-now .table_content{float:left;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now .table_discussion{float:right;border-top:#ececec 1px solid;width:45%}#bbp-dashboard-right-now table td{padding:3px 0;white-space:nowrap}#bbp-dashboard-right-now table tr.first td{border-top:none}#bbp-dashboard-right-now td.b{padding-right:6px;padding-left:0;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;width:1%}#bbp-dashboard-right-now td.b a{font-size:18px}#bbp-dashboard-right-now .t .b{font-size:18px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}#bbp-dashboard-right-now td.b a:hover{color:#d54e21}#bbp-dashboard-right-now .t{font-size:12px;padding-right:12px;padding-left:0;padding-top:6px;color:#777}#bbp-dashboard-right-now .t a{white-space:nowrap}#bbp-dashboard-right-now .spam{color:red}#bbp-dashboard-right-now .waiting{color:#e66f00}#bbp-dashboard-right-now .approved{color:#0f0}#bbp-dashboard-right-now a.button{float:right;clear:right;position:relative;top:-5px}.bp-new-notice-panel{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:13px;line-height:2.1;margin:1.5em 0 3em;overflow:auto;padding:10px 25px 25px;position:relative}.bp-new-notice-panel label{clear:both;float:left;margin-right:3%;width:20%}.bp-new-notice-panel input,.bp-new-notice-panel textarea{clear:none;margin-bottom:1em;width:75%}.bp-new-notice-panel input[type=text]:after,.bp-new-notice-panel textarea:after{clear:both;content:" ";display:table}.bp-new-notice-panel .button-primary{margin-left:23%;width:auto}.bp-notice-about{font-size:1em;margin-bottom:1em}.bp-new-notice{margin-bottom:1em;margin-top:0}.bp-notices-list{margin-bottom:0}@media screen and (max-width:782px){.bp-new-notice-panel{margin-bottom:1.5em}.bp-new-notice-panel input,.bp-new-notice-panel textarea{margin-left:0;width:100%}.bp-new-notice-panel .button-primary{margin-left:0;width:auto}.bp-new-notice-panel .button{max-width:45%;word-wrap:break-word}.bp-notice-about{margin-top:0;margin-bottom:1em}.bp-new-notice{margin-bottom:.5em}#bp-activities-form .wp-list-table th.column-primary.column-author,form#bp-groups-form .wp-list-table th.column-primary.column-comment{width:auto}.wp-list-table.activities tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before,.wp-list-table.groups tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{font-weight:600}}body.post-type-bp-group-type .postbox .inside,body.post-type-bp-member-type .postbox .inside{padding:0 12px 12px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker{display:flex;flex-direction:row}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one{display:flex;flex-direction:column;vertical-align:middle;text-align:-webkit-match-parent;flex-basis:auto}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child),body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child){margin-left:15px}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label{margin-bottom:10px;color:#686868}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker{display:none}body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker,body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker{display:block}body.post-type-bp-group-type #group-type-shortcode,body.post-type-bp-member-type #member-type-shortcode{line-height:1;margin-right:10px;padding:7px;display:inline-block}table.bp-postbox-table{background:#f9f9f9;margin-top:22px;border-radius:3px}table.bp-postbox-table thead th{font-weight:600}table.bp-postbox-table tbody th{width:23%;vertical-align:top}table.bp-postbox-table tbody td input[type=checkbox]{margin-right:8px}body.post-type-bp-email #excerpt{height:auto}body.post-type-bp-email th#situation{width:20%}body.post-type-bp-email td.column-situation ul{margin:0}body.post-type-bp-email .categorydiv label{display:block;float:left;padding-left:25px;text-indent:-25px}.buddyboss_page_bbp-repair .wrap,.buddyboss_page_bp-repair-community .wrap,.buddyboss_page_bp-tools .wrap{max-width:950px}.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p,.buddyboss_page_bp-tools p{line-height:2}.buddyboss_page_bbp-repair fieldset,.buddyboss_page_bp-repair-community fieldset,.buddyboss_page_bp-tools fieldset{margin:2em 0 0}.buddyboss_page_bbp-repair legend,.buddyboss_page_bp-repair-community legend,.buddyboss_page_bp-tools legend{color:#23282d;font-size:1.3em;font-weight:600;margin:1em 0}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label,.buddyboss_page_bp-tools label{clear:left;display:block;line-height:1.5;margin:0 0 7px;padding:3px;border-radius:3px}@media screen and (max-width:782px){.buddyboss_page_bbp-repair p,.buddyboss_page_bp-repair-community p{line-height:1.5}.buddyboss_page_bbp-repair label,.buddyboss_page_bp-repair-community label{margin-bottom:1em;padding-right:25px;text-indent:-33px}.buddyboss_page_bbp-repair .checkbox,.buddyboss_page_bp-repair-community .checkbox{padding:0 0 0 30px}}.bp-display-none{display:none}.wrap .bp-help-doc{position:relative;margin-top:20px;padding:2.2em 2.8em 2em;min-width:255px;max-width:1050px;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.bp-help-card-grid{margin-top:20px;min-width:255px;max-width:1050px}.bp-help-card-grid .bp-help-main-menu-wrap{display:flex;flex-flow:wrap;margin-left:-10px;margin-right:-10px}.bp-help-card-grid .bp-help-card{margin:0 10px 2%;background-color:#fff;border:1px solid #ccd0d4;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box;flex:0 0 calc(33.33% - 20px);min-width:0}.bp-help-card-grid .bp-help-card .inside{padding:1.8em 2em 5em}.bp-help-card-grid .bp-help-card h2{font-size:18px;padding:0;margin:0 0 1em;line-height:1.4}.bp-help-card-grid .bp-help-card p:first-child{margin-top:0}.bp-help-card-grid .bp-help-content-wrap{display:flex}.bp-help-content-wrap{display:flex;flex-flow:row wrap;min-width:255px;max-width:1050px;background-color:#fff;border-radius:6px;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);box-sizing:border-box}.bp-help-sidebar>ul{margin:0}.bp-help-sidebar>ul>li>a{color:#23282d;font-size:16px;font-weight:600}.bp-help-sidebar>ul>li>ul{margin-top:20px}.bp-help-sidebar>ul>li>ul li{line-height:1.6;margin:1.2em 0}.bp-help-sidebar>ul>li ul>li.selected>a{font-weight:600}.bp-help-sidebar>ul>li>ul>li>ul>li{margin-left:1.6em;list-style-type:disc}.bp-help-sidebar>ul span.open{font-size:0}.bp-help-sidebar>ul span.open:after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:bottom;font-size:10px;color:#999;cursor:pointer}.bp-help-sidebar>ul span.open.active:after{transform:rotate(90deg)}.bp-help-content p,.bp-help-content ul li{line-height:2}.bp-help-content ul.bp-help-menu{margin:0 0 2.5em}.bp-help-content ul.bp-help-menu li{display:inline}.bp-help-content ul.bp-help-menu li.miscellaneous{display:none!important}.bp-help-content ul.bp-help-menu li:not(:last-child):after{font-family:dashicons;content:"\f345";margin:0 5px;display:inline-block;vertical-align:middle;font-size:10px;color:#999}.bp-help-content ul.bp-help-menu li:last-child a{color:#999}.bp-help-content h1{font-weight:500;font-size:2em;margin-bottom:1em}.bp-help-content h2{font-size:1.5em;margin-bottom:1em}.bp-help-content h3{font-size:1.2em;margin-bottom:1em}.bp-help-content code{border-radius:3px}.bp-help-content ol,.bp-help-content ul{margin-left:25px;margin-top:6px;line-height:1.5}.bp-help-content ul li{list-style-type:circle}.bp-help-content ol li{list-style-type:decimal}.bp-help-content hr{border-top:none;border-bottom:1px solid #eaeaea}.bp-help-content table{border:1px solid #eaeaea;border-collapse:collapse;width:100%;margin-bottom:3em}.bp-help-content th{background:#f9f9f9;font-weight:500;border-bottom:1px solid #eaeaea}.bp-help-content td,.bp-help-content th{padding:10px 12px}.bp-help-content img{max-width:100%;width:auto;height:auto;border:1px solid #ddd;border-radius:5px;box-shadow:0 3px 20px -1px rgba(7,10,25,.1)}.bp-help-content .article-child>ul>li{list-style-type:disc}.bp-help-content .article-child .actions,.bp-help-content .article-child .sub-menu-count{display:none}.bp-help-main-menu-wrap div.notice{margin:0 10px!important;width:100%}@media screen and (min-width:782px){.bp-help-sidebar{background:#f9f9f9;padding:2.5em;border-right:1px solid #ccd0d4;border-radius:6px 0 0 6px;-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;min-width:0;overflow:initial;width:100%;min-height:60vh}.bp-help-content{padding:2.5em 3em;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.bp-help-content th:first-child{width:40%}}@media screen and (max-width:781px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(50% - 20px);min-width:0}.bp-help-sidebar{background:#f9f9f9;padding:2.5em;width:100%;min-height:auto;border-bottom:1px solid #ccd0d4;border-radius:6px 6px 0 0}.bp-help-content{padding:2.5em;width:100%}.bp-help-content th:last-child{display:none}}@media screen and (max-width:550px){.bp-help-card-grid .bp-help-card{flex:0 0 calc(100% - 20px)}}#buddypress-update.not-shiny .update-message{border-left:0;padding-left:36px}#buddypress-update.not-shiny .update-message:before{content:"\f534"}.bp_buddyboss_app_wrap{min-width:255px;max-width:1150px}.bp_buddyboss_app_wrap .buddyboss-app-featured{margin:20px 2px 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block,.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{background:#fff;margin:0 0 20px;padding:2em 2.8em;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-items{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around;margin:0 -10px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item{-webkit-box-flex:1;flex:1;margin:2em 1em;min-width:200px;width:30%}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{border-top:2px solid #f9f9f9;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;-webkit-box-pack:justify;justify-content:space-between;margin:0 -2em;padding:20px 2em}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item{display:none}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item:nth-of-type(-n+3){display:flex}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item:nth-child(-n+3){display:block}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon,.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-icon{justify-content:left}.bp_buddyboss_app_wrap .buddyboss-app-banner-block img{height:62px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-pack:justify;justify-content:space-between;padding:24px 0 0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content h3{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-banner-block p{margin:0 0 20px}.bp_buddyboss_app_wrap .buddyboss-app-banner-block-item-content p{margin:0 0 auto}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-icon{background:#f7f7f7;border:1px solid #e6e6e6;height:100px;margin:0 20px 0 0;width:100px}.bp_buddyboss_app_wrap .buddyboss-app-column-block img{max-height:50px;max-width:50px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1;flex-wrap:wrap;height:20%;-webkit-box-pack:justify;justify-content:space-between;min-width:200px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content h2{float:left;margin-top:10px}.bp_buddyboss_app_wrap .buddyboss-app-column-block-item-content p{float:left;margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-button{border-radius:3px;cursor:pointer;display:block;height:37px;line-height:37px;text-align:center;text-decoration:none;background-color:#00aae1;color:#fff;width:124px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image{margin-right:2em;padding:1em}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-image .buddyboss-app-img{max-height:130px;max-width:160px}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around;align-self:stretch;padding:1em 0}.bp_buddyboss_app_wrap .buddyboss-app-learndash-banner-block-content h1{padding-bottom:0}.bp_buddyboss_app_wrap .buddyboss-app-column-section{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-column{-webkit-box-flex:1;flex:1;min-width:0;width:50%;padding-right:20px}.bp_buddyboss_app_wrap .buddyboss-app-column:last-child{padding-right:0}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{box-sizing:border-box;border-radius:6px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 0 20px;padding:2em}.bp_buddyboss_app_wrap .buddyboss-app-column-block,.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{background:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block{display:-webkit-box;display:flex;flex-wrap:wrap}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block img{height:225px;margin:0 2em 0 -2em}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content{display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 1 100px;min-width:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;justify-content:space-around}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block h1{margin-top:-12px}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block p{margin-top:0}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-buttons{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between}.bp_buddyboss_app_wrap .buddyboss-app-small-light-block-content a{width:48%}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block{background-color:#00aae1;text-align:center}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block h1{color:#fff}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block p{color:#fafafa}.bp_buddyboss_app_wrap .buddyboss-app-small-dark-block img{margin:10px 0;max-width:100%}body.post-type-bp_ps_form .page-title-action{display:none}.buddypress .wrap div#message,.buddypress .wrap div.notice{margin:25px 0 15px}tr.child-no-padding th{padding:0 10px 0 0}tr.child-no-padding td{padding:5px 10px}tr.child-no-padding-first th{padding:20px 10px 0 0}tr.child-no-padding-first td{padding:15px 10px 5px}@media screen and (max-width:782px){.form-table tr.child-no-padding td,.form-table tr.child-no-padding-first td{padding-left:0}}td.inviter.column-inviter strong img{float:left;margin-right:10px;margin-top:1px}td label.platform-activity{clear:left;display:block;line-height:1.5;margin:0 0 1em}.nav-tab-wrapper .bp-emails-customizer,.nav-tab-wrapper .bp-group-customizer,.nav-tab-wrapper .bp-user-customizer{padding-right:6px}.nav-tab-wrapper .bp-emails-customizer:after,.nav-tab-wrapper .bp-group-customizer:after,.nav-tab-wrapper .bp-user-customizer:after{font-family:dashicons;content:"\f345";margin-left:3px;display:inline-block;vertical-align:top}.bb-nickname-hide-last-name{margin-top:-21px}.bb-nickname-hide-last-name input[type=checkbox]{margin-top:0}.bb-nickname-hide-first-name{margin-top:-8px}.bb-nickname-hide-first-name input[type=checkbox]{margin-top:0}.loader-repair-tools{border:4px solid #f3f3f3;border-top:4px solid #3498db;border-right:4px solid green;border-left:4px solid red;border-bottom:4px solid pink;border-radius:50%;width:10px;height:10px;animation:spin 2s linear infinite;display:inline-block;margin-left:8px;vertical-align:middle}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body .section-repair_community .settings fieldset .submit a.disable-btn{pointer-events:none}body .section-repair_community .settings fieldset .checkbox label code{margin-left:10px}@media screen and (max-width:782px){.bb-nickname-hide-last-name{margin-top:-2px}.bb-nickname-hide-first-name{margin-top:0}}.animate-spin{animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-o-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-ms-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.wp-block-embed{margin:0}.wp-block-embed iframe{max-width:100%}#bp-help-content-area.loading,#bp-help-main-menu-wrap.loading,.bp-help-sidebar.loading{display:flex;justify-content:center;align-items:center}.content-loader{display:inline-block;position:relative;width:80px;height:80px}.content-loader div{display:inline-block;position:absolute;left:5px;width:9px;background:#dadada;animation:contentLoader 1.2s cubic-bezier(0,.5,.5,1) infinite}.content-loader div:nth-child(1){left:8px;animation-delay:-.24s}.content-loader div:nth-child(2){left:28px;animation-delay:-.12s}.content-loader div:nth-child(3){left:48px;animation-delay:0}#the-moderation-request-list .blocked_member>img,#the-moderation-request-list .content_owner>img{vertical-align:middle;margin-right:5px}#the-moderation-request-list [data-colname] a{outline:0;box-shadow:none}#the-moderation-request-list [data-colname] a img{display:inline-block;vertical-align:middle}#the-moderation-request-list .content_type strong{color:#1d2327}#the-moderation-request-list .content_type strong>span{color:grey}@keyframes contentLoader{0%{top:8px;height:50px}100%,50%{top:24px;height:28px}}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label{min-width:27%}#bp_moderation_settings_reporting label[for=bpm_reporting_content_reporting]{margin-top:5px;display:block}#bp_moderation_settings_reporting .small-text{width:48px;min-height:24px;height:24px}#bp_moderation_settings_reporting label.bpm_reporting_content_content_label,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label{display:inline-block;margin-bottom:30px}#bp_moderation_settings_blocking label.is_disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled,#bp_moderation_settings_reporting label.is_disabled{pointer-events:none;opacity:.5}#bp_moderation_settings_blocking label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.bpm_reporting_content_content_label+label.is_disabled input[type=checkbox]:disabled,#bp_moderation_settings_reporting label.is_disabled input[type=checkbox]:disabled{opacity:1;border-color:inherit}#bb-hello-container.deactivation-popup,#bp-hello-container.deactivation-popup{top:50%;bottom:initial;transform:translateY(-50%);overflow:auto;max-height:90%;max-width:640px;margin:0 auto}#bb-hello-container.deactivation-popup .bb-hello-footer,#bb-hello-container.deactivation-popup .bp-hello-footer,#bp-hello-container.deactivation-popup .bb-hello-footer,#bp-hello-container.deactivation-popup .bp-hello-footer{position:static;padding:10px 23px}#bb-hello-container.deactivation-popup .bb-hello-footer button+button,#bb-hello-container.deactivation-popup .bp-hello-footer button+button,#bp-hello-container.deactivation-popup .bb-hello-footer button+button,#bp-hello-container.deactivation-popup .bp-hello-footer button+button{margin-left:10px}#bb-hello-container.deactivation-popup .bb-hello-content,#bb-hello-container.deactivation-popup .bp-hello-content,#bp-hello-container.deactivation-popup .bb-hello-content,#bp-hello-container.deactivation-popup .bp-hello-content{height:auto;padding:20px 23px}#bb-hello-container.deactivation-popup .bb-hello-content h4,#bb-hello-container.deactivation-popup .bp-hello-content h4,#bp-hello-container.deactivation-popup .bb-hello-content h4,#bp-hello-container.deactivation-popup .bp-hello-content h4{margin-bottom:0}#bb-hello-container.deactivation-popup .bb-hello-content ul,#bb-hello-container.deactivation-popup .bp-hello-content ul,#bp-hello-container.deactivation-popup .bb-hello-content ul,#bp-hello-container.deactivation-popup .bp-hello-content ul{margin-left:17px;list-style-type:disc}#bb-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bb-hello-container.deactivation-popup .bp-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bb-hello-content>p:first-child,#bp-hello-container.deactivation-popup .bp-hello-content>p:first-child{margin-top:0}#bp_moderation_action td a{text-decoration:none}.row-actions .suspend a,.row-actions .suspend a:hover{color:#dc3232}.users tr.suspended-user{background-color:#f5dada}h2.has_tutorial_btn{position:relative}h2.has_tutorial_btn .bbapp-tutorial-btn{position:absolute;right:0;left:initial;top:5px;font-weight:400}h2.has_tutorial_btn .bbapp-tutorial-btn p{margin:0}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled{color:#fff;background:#2271b1}h2.has_tutorial_btn .bbapp-tutorial-btn .bb-button_filled:hover{background:#135e96;border-color:transparent}@media screen and (max-width:580px){h2.has_tutorial_btn{margin-bottom:65px}h2.has_tutorial_btn .bbapp-tutorial-btn{top:inherit;bottom:-55px}}.bb-screen-position-outer{display:flex;width:180px;justify-content:space-between}.bb-screen-position-outer .bb-screen-position{display:flex;width:85px;flex-direction:column;text-align:center}.bb-screen-position-outer .bb-screen-position input[type=radio]{opacity:0;visibility:hidden;height:0}.bb-screen-position-outer .bb-screen-position .option{position:relative;display:flex;flex-direction:column}.bb-screen-position-outer .bb-screen-position .option:before{content:" ";height:80px;width:80px;background:#f0f0f1;display:flex;border-radius:5px;border:2px solid #ccd0d4;transition:all .3s ease}.bb-screen-position-outer .bb-screen-position .option:after{content:" ";width:40px;height:20px;border-radius:2px;background:#c3c4c7;position:absolute;top:55px}.bb-screen-position-outer .bb-screen-position .option.opt-right:after{right:8px}.bb-screen-position-outer .bb-screen-position .option.opt-left:after{left:8px}.bb-screen-position-outer .bb-screen-position .option span{font-size:14px;color:#999;line-height:2}.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_left:checked:checked+.option:before,.bb-screen-position-outer .bb-screen-position #bp_on_screen_notifications_position_right:checked:checked+.option:before{border-color:#2370b1}.bp-messages-feedback .bp-feedback.error{margin:0;border:0;padding:0}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon{border-radius:4px 0 0 4px;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px 8px;border:1px solid #ccc;border-radius:0 4px 4px 0;border-left:0;width:100%}#bp_media_settings_symlinks .bp-feedback,#bp_web_push_notification_settings .bp-feedback,.admin-notice .bp-feedback{box-shadow:none;padding-top:0}#bp_media_settings_symlinks .bp-feedback .bp-icon,#bp_web_push_notification_settings .bp-feedback .bp-icon,.admin-notice .bp-feedback .bp-icon{border-radius:4px 0 0 4px;margin:0}#bp_media_settings_symlinks .bp-feedback>p,#bp_web_push_notification_settings .bp-feedback>p,.admin-notice .bp-feedback>p{color:#666!important;margin-top:0!important;padding:10px;border:1px solid #ccc;border-radius:0 4px 4px 0;border-left:0;width:100%}.bp-messages-feedback .bp-feedback.warning .bp-icon{background-color:#f7ba45}.bp-messages-feedback .bp-feedback.warning .bp-icon:before{font-family:bb-icons;content:"\e855"}.bb-error-section{padding:10px;margin-left:-210px;background:#ffdcdc;color:#d42929;line-height:1.5;border:1px solid #ffc5ca;border-radius:4px}@media screen and (max-width:782px){.bb-error-section{margin-left:0}}.bb-warning-section-wrap.hidden-header>th{opacity:0;visibility:hidden;padding:0;margin:0}.bb-warning-section-wrap.hidden-header>th+td{padding-left:0;padding-right:0}.bb-warning-section{padding:10px;margin-left:-210px;background:#fff3c8;color:#8b6300;line-height:1.5;border:1px solid #ffeeb3;border-radius:4px}@media screen and (max-width:782px){.bb-warning-section{margin-left:0}}.status-line{display:inline-block;font-size:14px;padding:10px 15px;background:#f0f0f1;border-radius:5px;color:grey}.status-line:before{content:"";display:inline-block;width:10px;height:10px;border-radius:100%;background:grey;margin-right:10px;vertical-align:baseline}.status-line.error-connected{color:#ce1010}.status-line.error-connected:before{background:#ce1010}.status-line.connected{color:#858585}.status-line.connected:before{background:#8fd14f}.status-line.warn-connected{color:#858585}.status-line.warn-connected:before{background:#fac710}.buddyboss_page_bp-settings .bp-avatar-nav{display:none}.avatar-options .avatar-custom-input{display:inline-block;margin:0 7px 0 0}.avatar-options .avatar-custom-input+p.description{margin-top:15px}.avatar-options .avatar-custom-input>label{display:inline-block;vertical-align:top}.avatar-options .avatar-custom-input input[type=radio]{opacity:0;visibility:hidden;height:0;margin:0;padding:0!important;border:0;display:block}.avatar-options .avatar-custom-input input[type=radio]:checked+label .img-block img{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1}.avatar-options .avatar-custom-input input[type=radio]:checked:before{position:absolute}.avatar-options .avatar-custom-input .img-block{display:flex;border-radius:5px;margin-bottom:5px}.avatar-options .avatar-custom-input img{width:80px;height:80px;border:1px solid #ccd0d4;border-radius:5px;object-fit:cover}.avatar-options .avatar-custom-input span{display:block;text-align:center;color:#999}.avatar-options .avatar-custom-input .description{margin-top:15px}.avatar-options .bb-default-custom-upload-file .bb-upload-container img{margin-bottom:10px;max-width:120px}.avatar-options .bb-default-custom-upload-file .button.delete{border-color:#d33;color:#d33;margin-left:5px}.avatar-options .bb-default-custom-upload-file .button.delete.bp-hide{display:none}.avatar-options .bb-default-custom-upload-file.cover-uploader .bb-upload-container img{max-width:300px;width:100%}.avatar-options .cover-uploader-label{position:relative;display:inline-block;overflow:hidden;cursor:pointer}.avatar-options .cover-uploader-label .cover-uploader-hide{border:0;opacity:0;position:absolute;right:0;top:0;bottom:0}.avatar-options .image-width-height>label{min-width:80px;display:inline-block}.avatar-options .image-width-height .description{margin-left:85px;margin-bottom:15px}@media screen and (max-width:782px){.avatar-options .image-width-height>label{min-width:auto;margin-bottom:10px}.avatar-options .image-width-height .description{margin-left:0}}.bp-admin-card .avatar-options .no-field-notice{margin:15px 0;padding:10px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-uploader-progress div.error{margin:5px 0 2px}.buddyboss_page_bp-settings #TB_window #TB_ajaxContent .bp-avatar-status .bp-progress{margin-right:0}.preview_avatar_cover .preview-switcher{margin-bottom:25px}.preview_avatar_cover .preview-switcher .button:focus{box-shadow:none}.preview_avatar_cover .preview-block{max-width:260px;border:1px solid #ccd0d4;border-radius:5px;overflow:hidden;margin-bottom:25px;display:none}.preview_avatar_cover .preview-block.active{display:block}.preview_avatar_cover .app-preview-wrap{max-width:200px}.preview_avatar_cover .app-preview-wrap .preview-item-avatar{left:50%;border-radius:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);overflow:hidden}.preview_avatar_cover .preview-item-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;min-height:80px;max-height:80px;background-color:#ccc;overflow:hidden}.preview_avatar_cover .preview-item-cover.large-image{min-height:130px;max-height:130px}.preview_avatar_cover .preview-item-avatar{height:75px;width:75px;position:relative;top:-35px;left:25px;border:3px solid #fff;border-radius:5px}.preview_avatar_cover .preview-item-avatar.centered-image{left:50%;transform:translateX(-50%)}.preview_avatar_cover .preview-item-avatar img{background-color:#f9f9f9}.preview_avatar_cover .preview-item-avatar img,.preview_avatar_cover .preview-item-cover img{object-fit:cover;width:100%}.preview_avatar_cover .preview-item-avatar img[src=""],.preview_avatar_cover .preview-item-cover img[src=""]{display:none}.preview_avatar_cover:not(.has-avatar) .preview-item-avatar{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-cover{display:none}.preview_avatar_cover:not(.has-cover) .preview-item-avatar{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.preview_avatar_cover:not(.has-cover):not(.has-avatar){display:none}.preview_avatar_cover .button-group>.button:last-child:first-child{border-radius:3px}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar{border-radius:50%}.profile-cover-options .preview_avatar_cover .web-preview-wrap .preview-item-avatar img{border-radius:50%}.group-cover-options .preview_avatar_cover .app-preview-wrap{position:relative}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-cover{min-height:120px;max-height:120px;margin-bottom:45px}.group-cover-options .preview_avatar_cover .app-preview-wrap .preview-item-avatar{top:25px;position:absolute;border-radius:12px;border:0;height:70px;width:70px}.buddyboss_page_bp-settings #TB_window,body.users_page_bp-profile-edit #TB_window{height:auto!important;width:820px!important;max-width:90%;top:50%!important;transform:translateY(-50%);max-height:90%;overflow:auto}.buddyboss_page_bp-settings #TB_window .bp-avatar #avatar-to-crop,body.users_page_bp-profile-edit #TB_window .bp-avatar #avatar-to-crop{margin-bottom:15px}.buddyboss_page_bp-settings #TB_ajaxContent,body.users_page_bp-profile-edit #TB_ajaxContent{height:auto!important;width:auto!important;padding:15px}table tbody td .bb-description{color:#999;margin-top:6px;margin-bottom:0}.bb-group-element,.bb-group-headers-element,.bb-member-directory-element,.bb-member-directory-profile-action,.bb-profile-header-element{margin-bottom:10px}@media screen and (max-width:782px){.bb-group-element input[type=checkbox],.bb-group-headers-element input[type=checkbox],.bb-member-directory-element input[type=checkbox],.bb-member-directory-profile-action input[type=checkbox],.bb-profile-header-element input[type=checkbox]{width:auto}}.bb-header-style-outer{display:flex}.bb-header-style-outer .bb-header-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-header-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-header-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-header-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-header-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-left.png) no-repeat center}html[dir=rtl] .bb-header-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-group-header-right.png) no-repeat center}.bb-header-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-group-header-center.png) no-repeat center}.bb-header-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-header-style-outer .bb-header-style #bb-group-header-style-centered:checked:checked+.option:before,.bb-header-style-outer .bb-header-style #bb-group-header-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer{display:flex}.bb-grid-style-outer .bb-grid-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-grid-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-grid-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-grid-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-grid-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-grid-style .option.opt-left:after{background:url(../../images/bb-group-directory-right.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option.opt-centered:after{background:url(../../images/bb-group-directory-center.png) no-repeat center}.bb-grid-style-outer .bb-grid-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-centered:checked:checked+.option:before,.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-left:checked:checked+.option:before{border-color:#2370b1}.bb-grid-style-outer .bb-header-style{display:flex;flex-direction:column;margin-right:15px;text-align:center;width:110px}.bb-grid-style-outer .bb-header-style input[type=radio]{height:0;opacity:0;visibility:hidden}.bb-grid-style-outer .bb-header-style .option{display:flex;color:#999;flex-direction:column;position:relative}.bb-grid-style-outer .bb-header-style .option:before{background:#f9f9f9;border:2px solid #ccd0d4;border-radius:4px;box-sizing:border-box;content:"";display:flex;height:110px;margin-bottom:5px;transition:all .3s ease;width:100%}.bb-grid-style-outer .bb-header-style .option:after{background-size:cover!important;content:"";border-radius:3px;bottom:30px;left:6px;position:absolute;right:6px;top:6px;image-rendering:-webkit-optimize-contrast}.bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-left.png) no-repeat center}html[dir=rtl] .bb-grid-style-outer .bb-header-style .option.opt-left:after{background:url(../../images/bb-profile-header-right.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option.opt-centered:after{background:url(../../images/bb-profile-header-center.png) no-repeat center}.bb-grid-style-outer .bb-header-style .option span{color:#999;font-size:14px;line-height:2}.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-stylecentered:checked:checked+.option:before,.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-styleleft:checked:checked+.option:before{border-color:#2370b1}.bb-head-notice{background-color:#f6f6f6;border-radius:4px;color:#999;display:inline-block;font-size:12px;font-weight:400;line-height:1.5;margin-top:10px;max-width:140px;padding:5px 10px;width:auto}.bb-head-notice a{color:inherit;font-weight:700;text-decoration:none}.bb-inactive-field>th:before,.bb-pro-inactive>th:before{content:"\eecc";font-family:bb-icons;margin-right:5px;vertical-align:top;display:inline-block;line-height:1;font-weight:300;font-size:15px}.bb-inactive-field>td,.bb-pro-inactive>td{opacity:.3}.bb-inactive-field>td,.bb-inactive-field>td *,.bb-pro-inactive>td,.bb-pro-inactive>td *{pointer-events:none;user-select:none}.bb-active-field>th:before,.bb-pro-active>th:before{display:none}.bb-active-field .bb-head-notice,.bb-pro-active .bb-head-notice{display:none}.bp-hello-email .bp-hello-title .count,.btn-open-missing-email .count{display:inline-block;background-color:#2271b1;color:#fff;padding:1px 6px;border-radius:4px;line-height:1.3;font-size:smaller}.btn-open-missing-email+#bp-hello-backdrop{display:block}.bp-hello-email .bp-hello-title .count{font-size:inherit;padding:2px 10px;margin-right:10px}.bp-hello-email .bp-hello-content{height:auto;padding:0 23px;min-height:180px;max-height:calc(100vh - 320px);margin-bottom:62px}.bp-hello-email .missing-email-list ul{list-style:disc;margin:25px 0 25px 20px}.bp-hello-email .bb-popup-buttons{position:absolute;bottom:0;padding:15px;text-align:right;width:calc(100% - 30px);margin:0 -23px;border-top:1px solid var(--bp-hello-color-secondary);background-color:#f0f0f1}@media screen and (orientation:landscape) and (max-height:480px){.bp-hello-email .bp-hello-content{min-height:110px}}#bp-hello-container.bp-hello-email{top:50%;bottom:initial;transform:translateY(-50%);margin-top:32px}#bp-hello-container.bp-hello-email .button-primary{color:#fff;margin-left:10px}@media screen and (max-width:480px){#bp-hello-container.bp-hello-email .button-primary{margin-left:0}}#bp_notification_settings_automatic table.render-dynamic-notification,#bp_notification_settings_automatic table.render-dynamic-notification tbody,#bp_notification_settings_automatic table.render-dynamic-notification td,#bp_notification_settings_automatic table.render-dynamic-notification th,#bp_notification_settings_automatic table.render-dynamic-notification tr{display:block}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th{display:none}#bp_notification_settings_automatic table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_notification_settings_automatic table.form-table .no-padding{padding:0}#bp_notification_settings_automatic table.form-table tbody tr{margin-bottom:20px}#bp_notification_settings_automatic table.form-table tbody tr th{margin-bottom:15px;width:100%}#bp_notification_settings_automatic .field-set{margin-top:10px;background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px}#bp_notification_settings_automatic .field-set .field-block{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;padding:15px}#bp_notification_settings_automatic .field-set .field-block+.field-block{border-top:1px solid #ccd0d4}#bp_notification_settings_automatic .field-set .field-block .no-email-info{margin-right:15px;margin-left:auto;background-color:#ffdcdc;border-radius:5px;padding:5px 10px;color:#8c0202;font-size:11px;text-decoration:none}#bp_notification_settings_automatic .field-set .field-block .email-info{margin-right:15px;margin-left:auto;border-radius:5px;padding:5px 10px;font-size:11px;text-decoration:none;background-color:#dfe5ea}#bp_notification_settings_automatic .field-set .field-block .notification-defaults{padding:3px 0;cursor:pointer}#bp_notification_settings_automatic .field-set .field-block input[type=checkbox]{margin-top:0}#bp_notification_settings_automatic .field-set .field-block .manage-defaults{margin-top:15px;justify-content:flex-end;width:100%;display:flex}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap{margin-left:15px;min-width:58px;text-align:center}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled{pointer-events:none}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]{opacity:.7;background:rgba(255,255,255,.5);border-color:rgba(220,220,222,.75);color:rgba(44,51,56,.5)}#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type=checkbox]::before{opacity:.7}#bp_notification_settings_automatic .field-set .field-block .manage-defaults-hide{display:none}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr th{min-width:200px;padding:15px 20px 0 0;width:auto}#bp_notification_settings_automatic table.form-table.dynamic-notification-after tbody tr td{padding:15px 10px 15px 0}.bb-bottom-notice{margin:2.2em -2.8em -2.2em;background:#f6f6f8;padding:2.2em 2.8em;border-radius:0 0 5px 5px;border-top:1px solid #ccd0d4}.bp-admin-card .form-table .bb-lab-notice{background:#f6f6f8;padding:1.2em;margin-top:1.2em;border-radius:3px;border:1px solid #ccd0d4}.bp-admin-card .form-table .bp-new-notice-panel-notice{color:#8b6300;background-color:#fff3c8;padding:1.2em;font-size:14px;line-height:1.5;border-radius:3px;margin:20px 0}.bp-admin-card .form-table .bp-new-notice-panel-notice a{color:inherit}.bp-admin-card .form-table .bp-new-notice-panel-notice+p.description{margin-bottom:15px}.bb-lab-notice.notification-information:before{content:"\eebc";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:100;margin-right:10px;line-height:1}.bb-lab-notice.notification-information:first-child{margin-top:0}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_messaging_notification_settings table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_messaging_notification_settings table.form-table .no-padding{padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default{width:300px;max-height:calc(90vh - 50px);overflow:auto}#wpadminbar #wp-admin-bar-bp-notifications-default>li{display:inline-block;width:100%;padding:5px 0}#wpadminbar #wp-admin-bar-bp-notifications-default>li#wp-admin-bar-notification-view-all{text-align:center}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar{float:left;width:40px;margin-top:4px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar .member-status{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a{height:auto;padding:0}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a img{max-width:36px}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-avatar>a>i{display:none}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content{float:right;width:calc(100% - 60px)}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .bb-full-link>a{opacity:1;padding:0;height:auto;position:static;white-space:normal;line-height:1.5}#wpadminbar #wp-admin-bar-bp-notifications-default .notification-content .posted{line-height:1.4}table.moderations .column-content_type a[data-action=unhide],table.moderations .column-content_type a[data-action=unsuspend],table.moderations .column-member a[data-action=unhide],table.moderations .column-member a[data-action=unsuspend]{color:#5f9a22}table.moderations tfoot tr th,table.moderations thead tr th{font-weight:600}table.moderations tbody tr .column-suspend .dashicons{color:#000;font-size:24px}table.moderations .bp-block-user.disabled{cursor:default}table.moderations .bp-block-user[data-bp-tooltip]{display:inline-block}table.moderations .bp-block-user[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center}table.moderations.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):before{display:none}.buddyboss_page_bp-moderation .dashicons{font-weight:700}.buddyboss_page_bp-moderation .bb-back{display:inline-block;margin-top:15px;text-decoration:none}.buddyboss_page_bp-moderation .bb-back [class*=bb-icon]{display:inline-block;font-size:17px;margin:-1px 3px 0 0;vertical-align:middle}.buddyboss_page_bp-moderation table.reports tfoot tr th,.buddyboss_page_bp-moderation table.reports thead tr th{font-weight:600}table.moderations .column-member img,table.moderations .content_owner img,table.reports .column-reporter img{vertical-align:middle;margin-right:5px;border-radius:50%}#bp_moderation_action>.inside{margin:0;padding:0 20px}#bp_moderation_action>.inside .tablenav.bottom{height:auto;min-height:20px;margin:0;padding-top:0}#bp_moderation_action>.inside .tablenav.bottom .tablenav-pages{margin:20px 0}#bp_moderation_action .report-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;margin:0 -20px;padding:20px}#bp_moderation_action .report-header_content_id{font-size:20px;font-weight:600;color:#1d2327;margin-bottom:10px}#bp_moderation_action .report-header_content_id span{color:grey;margin-left:5px}#bp_moderation_action .report-header_content_id a{text-decoration:none}#bp_moderation_action .report-header_content_id a i{font-weight:300;font-size:18px;transform:translateY(-1px);display:inline-block}#bp_moderation_action .report-header_user{display:flex;align-items:center}#bp_moderation_action .report-header_user strong a{text-decoration:none;font-size:16px;box-shadow:none}#bp_moderation_action .report-header_user img{border-radius:50%;max-width:35px;height:auto;margin-right:10px;vertical-align:middle}#bp_moderation_action .report-header_content{text-align:center;font-weight:600}#bp_moderation_action .report-header_content strong{display:block;font-size:24px}#bp_moderation_action .report-header_action .report-header_button{color:#b32d2e;border-color:#b32d2e}#bp_moderation_action .report-header_action .report-header_button.green{color:#5f9a22;border-color:#afcc90}#bp_moderation_action .report-header_action .report-header_button+.report-header_button{margin-left:10px}.moderation-table-heading.form-table td{padding:15px 0}#the-moderation-report-list .reporter a{box-shadow:none}.taxonomy-bpm_category .form-field.term-slug-wrap{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th{display:none}#bp_labs_settings table.form-table .notes-hidden-header>th+td,#bp_web_push_notification_settings table.form-table .notes-hidden-header>th+td{padding-left:0;padding-right:0}#bp_labs_settings table.form-table .no-padding,#bp_web_push_notification_settings table.form-table .no-padding{padding:0}.no-field-notice{background-color:#f6f6f8;border:1px solid #ccd0d4;border-radius:3px;padding:15px}.notification-settings-input[data-bp-tooltip]{display:inline-block}.notification-settings-input[data-bp-tooltip]::after{min-width:140px;white-space:normal;padding:7px 12px;text-align:center}.bp-admin-card .password-toggle{position:relative;display:inline-block;width:50%}.bp-admin-card .password-toggle>input{padding-right:30px;width:100%!important}.bp-admin-card .password-toggle .bb-hide-pw{position:absolute;right:0;top:0;height:100%;width:30px;border:0;padding:0;background:0 0!important;box-shadow:none}.bp-admin-card .password-toggle .bb-hide-pw .bb-icon{font-size:16px;line-height:1}.bp-admin-card .password-toggle .bb-hide-pw.bb-show-pass .bb-icon::before{content:"\ee6a"}table.users .suspend a.disabled,table.users .unsuspend a.disabled{cursor:default}table.users .suspend a.disabled[data-bp-tooltip],table.users .unsuspend a.disabled[data-bp-tooltip]{display:inline-block}table.users .suspend a.disabled[data-bp-tooltip]:after,table.users .unsuspend a.disabled[data-bp-tooltip]:after{white-space:normal;width:210px;text-align:center;z-index:9999}.registration-restrictions-rule-list{margin:15px 0;max-width:560px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule{padding-left:40px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule:before{cursor:grab;content:"\e858";font-family:bb-icons;font-weight:400;font-size:22px;position:absolute;top:50%;transform:translateY(-50%);left:10px}.registration-restrictions-rule-list.bb-sortable .registration-restrictions-rule.ui-sortable-helper:before{cursor:grabbing}.registration-restrictions-rule-list .registration-restrictions-rule{display:flex;align-items:center;flex-wrap:wrap;gap:15px;background-color:#f6f7f7;border:1px solid #c3c4c7;position:relative;border-radius:4px;padding:15px 40px 15px 15px;margin-bottom:15px}.registration-restrictions-rule-list .registration-restrictions-rule.error{background-color:rgba(255,0,0,.1);border-color:#ffc5ca}.registration-restrictions-rule-list .registration-restrictions-rule input,.registration-restrictions-rule-list .registration-restrictions-rule select{width:100%}.registration-restrictions-rule-list .registration-restrictions-rule>div{flex:1 0 130px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld{flex-basis:80px;display:flex;align-items:baseline;margin-left:-5px}.registration-restrictions-rule-list .registration-restrictions-rule>div.registration-restrictions-input-tld:before{content:".";margin-right:5px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-priority{position:absolute;top:50%;transform:translateY(-50%);left:15px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove{position:absolute;top:50%;transform:translateY(-50%);right:10px}.registration-restrictions-rule-list .registration-restrictions-rule .registration-restrictions-remove button{color:#3c434a;font-size:20px;cursor:pointer;border:0;background-color:transparent;padding:0}.section-bb_registration_restrictions .registration-restrictions-listing{position:relative}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:absolute;right:0;top:0;font-size:13px;max-width:200px;min-width:200px;padding:10px 12px;border-radius:4px;color:#d42929;border:1px solid #ffc5ca;background:#ffdcdc}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p{color:inherit;margin:0 0 5px 0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error p:last-child{margin-bottom:0}.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error:empty{display:none}@media screen and (max-width:1320px){.section-bb_registration_restrictions .registration-restrictions-listing .restrictions-error{position:static;max-width:inherit;margin:20px 0}}.custom-select2{font-size:14px;line-height:2;color:#2c3338;border:1px solid #8c8f94;box-shadow:none;border-radius:3px;padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.custom-select2 .select2-selection__arrow{display:none}.select2-container--open .custom-select2{border-radius:3px 3px 0 0}.custom-dropdown-select2 .select2-search__field{min-height:25px;line-height:1}.custom-dropdown-select2 .select2-results__options{max-height:240px;overflow:auto}.custom-dropdown-select2 .select2-results__options li{padding:6px 10px}.custom-dropdown-select2 .select2-results__options li.select2-results__option--highlighted{background-color:rgba(170,170,170,.5);color:inherit}.section-bp_reaction_settings_section>h2{width:100%}.section-bp_reaction_settings_section .bb-reactions-setting-field{margin-top:8px}.section-bp_reaction_settings_section label[for=bb_reaction_mode_likes]{margin-right:15px}.section-bp_reaction_settings_section .bb-reaction-mode-description{margin-top:10px}.section-bp_reaction_settings_section .bb-reaction-button-label{display:flex!important;flex-wrap:wrap;align-items:center;gap:5px;cursor:default}.section-bp_reaction_settings_section .bb-reaction-button-label>p{width:100%;cursor:text}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit{display:none}.section-bp_reaction_settings_section .bb-reaction-button-label .bb-reaction-button-text-limit.active{display:inline-block}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser{padding:3px;border-color:#8c8f94;vertical-align:middle;border-radius:4px;min-height:auto;margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i{color:#9b9f9b;font-size:24px;display:block;line-height:1}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser>i:before{margin:0}.section-bp_reaction_settings_section .bb-reaction-button-label #bb-reaction-button-chooser:focus{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}.section-bp_reaction_settings_section .bb-reaction-button-label input#bb-reaction-button-text{color:#2c3338;font-size:14px;vertical-align:middle;border-radius:4px;width:auto;min-height:30px;padding:3px 8px;line-height:25px}.bb-telemetry-notice.notice-info{display:flex;border-left-color:#e0623d;border-radius:4px;padding:0}.bb-telemetry-notice.notice-info .bb-telemetry-notice_content{padding-left:20px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_logo{background-color:rgba(224,98,61,.1);padding:15px 10px;color:#e0623d;font-size:28px}.bb-telemetry-notice.notice-info .bb-telemetry-notice_heading{font-size:16px;margin:1.2em 0 .5em}.bb-telemetry-notice.notice-info p{margin-bottom:15px}.bb-telemetry-notice.notice-info a.button{padding:2px 16px;display:inline-block;margin-bottom:5px;border-radius:5px}.bb-telemetry-notice.notice-info a.button:after{font-size:16px;content:"\ee68";font-family:bb-icons;font-weight:400;margin-left:5px}.bb-telemetry-notice.notice-info .notice-dismiss:before{font-size:20px;content:"\e828";font-family:bb-icons}#loco-admin.wrap .bb-telemetry-notice.notice-info{border:1px solid #c3c4c7;border-left:4px solid #e0623d;padding:0}.section-bb_advanced_telemetry label[for=complete_reporting]{margin-right:15px}.section-bb_advanced_telemetry .bb-telemetry-tutorial-link:after{content:"\ee68";font-family:bb-icons;font-size:14px;margin-left:5px}.bb-integrations-section h1.bb-advance-heading{max-width:900px}.bb-integrations_filters_section{display:flex;justify-content:space-between;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid rgba(0,0,0,.1)}.bb-integrations_filters_section .bb-integrations_search{width:100%;max-width:290px;position:relative}.bb-integrations_filters_section .bb-integrations_search span{font-size:15px;font-weight:400;color:#000;position:absolute;right:12px;top:50%;transform:translateY(-50%);pointer-events:none}.bb-integrations_filters_section .bb-integrations_search span.clear-search{font-size:18px;pointer-events:all;cursor:pointer}.bb-integrations_filters_section .bb-integrations_search span.clear-search:before{content:"\e828"}.bb-integrations_filters_section .bb-integrations_search input{font-size:12px;font-weight:500;color:#000;padding:6px 32px 6px 16px;border:1px solid rgba(0,0,0,.3);border-radius:5px;width:100%}.bb-integrations_filters_section .bb-integrations_search input::placeholder{color:#000}.bb-integrations_filters_section .bb-integrations_search input::-webkit-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search input::-moz-search-cancel-button{display:none}.bb-integrations_filters_section .bb-integrations_search.loading{pointer-events:none}.bb-integrations_filters_section .bb-integrations_search.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;right:-30px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px}.bb-integrations_filters_section .bb-integrations_filters select{border:1px solid rgba(0,0,0,.1);border-radius:5px;padding:5px 16px 5px 16px}.bb-integrations_filters_section .bb-integrations_filters.loading{pointer-events:none;position:relative}.bb-integrations_filters_section .bb-integrations_filters.loading:after{content:"\ef30";font-size:20px;font-family:bb-icons;display:inline-block;animation:spin 2s infinite linear;position:absolute;top:10px;left:-30px}.bb-integrations_filters_section .integrations_collection-sub{display:flex;margin:0}.bb-integrations_filters_section .integrations_collection-sub li{display:flex;align-items:center;cursor:pointer;position:relative;margin:0}.bb-integrations_filters_section .integrations_collection-sub li:hover span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:12px;font-weight:500;color:#000;border:1px solid rgba(0,0,0,.1);border-left-width:0;padding:8px 16px}.bb-integrations_filters_section .integrations_collection-sub li input{opacity:0;position:absolute;inset:0;width:auto;height:auto;margin:0}.bb-integrations_filters_section .integrations_collection-sub li input:checked+span{color:#fff;background-color:#e0613c}.bb-integrations_filters_section .integrations_collection-sub li:first-child span{border-left:1px solid rgba(0,0,0,.1);border-radius:3px 0 0 3px}.bb-integrations_filters_section .integrations_collection-sub li:last-child span{border-radius:0 3px 3px 0}.bb-integrations-listing{display:flex;flex-wrap:wrap;gap:34px;margin-bottom:60px}.bb-integrations-listing .integration_cat_title{width:100%}.bb-integrations-listing .cat_title{font-size:18px;font-weight:600;color:#000;margin:25px 0 0}.bb-integrations-listing .integrations_single_holder{display:inline-block;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:24px 24px 42px;width:100%;max-width:256px;position:relative}.bb-integrations-listing .integrations_single_holder .holder_integrations_img{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:24px}.bb-integrations-listing .integrations_single_holder .holder_integrations_img img{height:56px;width:56px;object-fit:contain;padding:8px;border:1px solid rgba(0,0,0,.1);border-radius:50%}.bb-integrations-listing .integrations_single_holder .holder_integrations_img .type_integrations_text{font-size:12px;line-height:22px;color:rgba(0,0,0,.8);border:1px solid rgba(0,0,0,.1);padding:0 8px;border-radius:19px}.bb-integrations-listing .integrations_single_holder .logo_title{color:#000;font-size:14px;font-weight:600;line-height:20px;margin-bottom:8px}.bb-integrations-listing .integrations_single_holder .short_desc p{font-size:12px;color:rgba(0,0,0,.6);min-height:45px;margin:0 0 15px}.bb-integrations-listing .integrations_single_holder .integration_readmore{font-size:12px;font-weight:500;color:#640398;text-decoration:none;position:absolute;bottom:24px;left:24px}.bb-integrations-listing .integrations_single_holder .integration_readmore i{font-size:15px;transform:rotate(-45deg);display:inline-block}.bb-integrations-listing .integrations_single_holder .integration_readmore:active,.bb-integrations-listing .integrations_single_holder .integration_readmore:focus{box-shadow:none}.bb-integrations-listing .integrations_single_holder.loading{border:0}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_avatar{height:70px;width:70px;border-radius:50%;margin-bottom:35px}.bb-integrations-listing .integrations_single_holder.loading .integrations_single_holder_block{height:18px;border-radius:6px;width:100%;margin-bottom:15px}.bb-integrations-listing .bb-integrations-no-results{display:flex;align-items:center;flex-direction:column;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:10px;padding:40px 20px;width:100%}.bb-integrations-listing .bb-integrations-no-results h2{font-size:22px;margin-top:20px;margin-bottom:0}.bb-integrations-listing .bb-integrations-no-results p{font-size:14px;color:#9b9c9f;margin-top:10px}.bb-integrations-listing .bb-integrations-no-results>i{color:#9b9c9f;font-size:38px;opacity:.9}.bb-integrations-listing_loadmore{display:flex;justify-content:center}.bb-integrations_loadmore{display:flex;align-items:center;gap:5px;justify-content:center;color:#fff;cursor:pointer;font-size:14px;font-weight:500;background-color:#e0613c;border:0;border-radius:5px;padding:16px 20px;min-width:150px}.bb-integrations_loadmore:hover{color:rgba(255,255,255,.8)}.bb-integrations_loadmore.loading{pointer-events:none;opacity:.8}.bb-integrations_loadmore.loading:after{content:"\ef30";font-family:bb-icons;font-size:18px;font-weight:400;display:inline-block;animation:spin 2s infinite linear}.bb-get-platform{display:flex;flex-direction:row-reverse;justify-content:space-between;background-color:#fff;border:.5px solid #e0613c;border-radius:10px;box-shadow:0 4px 32px 0 rgba(0,0,0,.1);padding:40px 48px;max-width:990px;margin:80px auto 0}.bb-get-platform .bb-get-platform_details h3{color:#000;font-size:32px;font-weight:600;line-height:1.25;margin:0 0 16px}.bb-get-platform .bb-get-platform_details p{color:rgba(0,0,0,.8);font-size:14px;line-height:20px;margin-bottom:32px}.bb-get-platform .guarantee-img{width:180px;height:180px;object-fit:contain}.bb-get-platform .bb-upgrade-btn{color:#fff;background-color:#e0613c;font-size:14px;font-weight:500;line-height:22px;border-radius:5px;padding:8px 16px;text-decoration:none}.bb-integrations-loader{display:flex;justify-content:center;align-items:center;width:100%;min-height:250px}.bb-integrations-loader i{font-size:26px;display:inline-block}@media screen and (max-width:2600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(20% - 78px)}}@media screen and (max-width:1600px){.bb-integrations-listing .integrations_single_holder{max-width:calc(25% - 78px)}}@media screen and (max-width:1200px){.bb-integrations-listing .integrations_single_holder{max-width:calc(33.3333% - 78px)}}@media screen and (max-width:1080px){.bb-integrations_filters_section{flex-direction:column;gap:20px}.bb-integrations_filters_section .bb-integrations_filters{display:flex;gap:25px;flex-wrap:wrap}.bb-integrations_filters_section .bb-integrations_filters.loading:after{left:-20px}.bb-get-platform{flex-direction:column}.bb-get-platform .guarantee-img{margin-bottom:24px}}@media screen and (max-width:900px){.bb-integrations-listing{gap:20px}.bb-integrations-listing .integrations_single_holder{max-width:calc(50% - 60px)}}@media screen and (max-width:560px){.bb-integrations_filters_section .bb-integrations_search{margin:0 25px;max-width:calc(100% - 50px)}.bb-integrations_filters_section .integrations_collection-sub li span{font-size:11px;padding:5px 10px}.bb-integrations_filters_section .bb-integrations_filters{justify-content:center}.bb-integrations_filters_section .bb-integrations_filters select{font-size:13px;margin:0 25px;width:calc(100% - 50px);max-width:inherit}.bb-integrations_filters_section .bb-integrations_filters.loading:after{left:inherit;right:-4px}.bb-integrations-listing .integrations_single_holder{max-width:calc(100% - 40px)}}.buddyboss_page_bb-upgrade .nav-tab-wrapper{display:none}.bb-upgrade-nav-tag{display:inline-block;vertical-align:top;box-sizing:border-box;margin:0 0 -1px 5px;padding-left:8px;padding-right:8px;min-width:18px;height:20px;line-height:20px;border-radius:15px;background-color:#d63638;color:#fff;font-size:11px;text-align:center}@media screen and (max-width:760px){.bb-upgrade-nav-tag{margin-top:2px}}.advance-performance-wrapper .wrap--performance{width:100%}.wrap.wrap--upgrade{width:calc(100% - 22px);margin-left:0}@media screen and (max-width:782px){.wrap.wrap--upgrade{width:calc(100% - 34px);margin-left:12px}}.wrap.wrap--upgrade>.wrap{margin-left:0;margin-right:0}.advance-tab-header{margin:16px 0 0;padding:0 0 16px;border-bottom:1px solid rgba(0,0,0,.1);display:flex;align-items:center}@media screen and (max-width:700px){.advance-tab-header{flex-direction:column}.advance-tab-header .advance-brand{margin:0 auto 16px}.advance-tab-header .nav-settings-subsubsub{margin-bottom:16px}.advance-tab-header .adv-sep{display:none}.advance-tab-header .advance-actions{flex-direction:column}.advance-tab-header .advance-actions .advance-nav-action{margin-left:0;margin-top:8px}}.advance-tab-header .nav-settings-subsubsub{padding:0}.advance-tab-header .subsubsub{margin:0}.advance-tab-header .subsubsub>li{margin-right:24px}.advance-tab-header .subsubsub>li:last-of-type{margin-right:0}.advance-tab-header .subsubsub a{color:rgba(0,0,0,.6);font-weight:500;font-size:14px}.advance-tab-header .subsubsub a:active,.advance-tab-header .subsubsub a:focus{box-shadow:none}.advance-tab-header .subsubsub a.current{color:#e0613c}.advance-tab-header .advance-nav-action{margin-left:24px}.advance-brand{margin-right:auto}.advance-brand .upgrade-brand{border-radius:50%;max-width:40px}.adv-sep{width:1px;height:24px;background-color:rgba(0,0,0,.2);margin:0 24px}.advance-actions{display:flex;align-items:center}.advance-actions .advance-action-link{font-size:14px}.advance-nav-action{font-size:14px;font-weight:500;background:#e0613c;color:#fff;border-radius:5px;padding:8px 16px;display:inline-flex;align-items:center;text-decoration:none}.advance-nav-action:hover{color:rgba(255,255,255,.8)}.advance-nav-action:hover svg path{fill:rgba(255,255,255,0.8)}.advance-nav-action:active,.advance-nav-action:focus{color:#fff;box-shadow:none}.advance-nav-action svg{margin-right:8px}h1.bb-advance-heading{font-size:40px;font-weight:600;margin-bottom:72px;max-width:45%;margin-top:48px}@media screen and (max-width:1400px){h1.bb-advance-heading{max-width:75%}}@media screen and (max-width:1080px){h1.bb-advance-heading{font-size:28px}}@media screen and (max-width:760px){h1.bb-advance-heading{max-width:95%;margin-top:24px;margin-bottom:42px}}@media screen and (max-width:560px){h1.bb-advance-heading{font-size:20px;margin-bottom:30px;text-align:center}}.bb-upgrade-wrap{position:relative;font-size:15px;max-width:1400px;margin-top:25px;display:flex;align-items:flex-start;flex-wrap:wrap;justify-content:space-between}.bb-advance-card{flex:0 0 48%;max-width:48%;margin:0;padding:0;border-radius:9px;overflow:hidden;border:1px solid #ccd0d4;box-shadow:0 4px 28px 0 rgba(0,0,0,.08);background:#fff}@media screen and (max-width:760px){.bb-advance-card{flex:0 0 100%;max-width:100%;margin-bottom:24px}.bb-advance-card.bb-advance-card--hero{margin-bottom:24px}}.bb-advance-card h2{font-weight:600;font-size:1.6em;line-height:1.2;margin:0 0 11px}.bb-advance-card .card-subtitle{font-size:1em;line-height:1.4}.card-data{flex:1;padding:2.3em 2.3em;display:flex;flex-direction:column}.card-figure{width:100%;height:100%;position:relative;padding-top:52.56%;display:block;background-color:#faf9f7;border-bottom:1px solid rgba(0,0,0,.1)}.card-figure .upgrade-figure{position:absolute;top:0;bottom:0;left:0;right:0;margin:24px auto 0;z-index:0;max-height:calc(100% - 24px);width:auto;max-width:100%;object-fit:cover}.bb-advance-card--hero{width:100%;flex:0 0 100%;max-width:100%;margin-bottom:48px}.bb-advance-card--hero .card-inner-wrap{display:flex}@media screen and (max-width:760px){.bb-advance-card--hero .card-inner-wrap{flex-direction:column}.bb-advance-card--hero .card-inner-wrap .card-figure-wrapper{width:100%}.bb-advance-card--hero .card-inner-wrap .card-figure{padding-top:52.56%}.bb-advance-card--hero .card-inner-wrap .card-figure .upgrade-figure{max-height:100%}.bb-advance-card--hero .card-inner-wrap .card-data{padding:2.3em 2.3em}}.bb-advance-card--hero .card-figure-wrapper{width:42.417%}.bb-advance-card--hero .card-figure{width:100%;padding-top:0;border:0;background-color:#1a1830}.bb-advance-card--hero .card-figure .upgrade-figure{max-height:none;margin:auto}.bb-advance-card--hero .card-data{flex:1;padding:4.2em 2.8em;display:flex;flex-direction:column}.advance-card-note{margin:24px 0}.advance-card-note p{margin:0}.advance-card-note p.wp-upgrade-description{color:rgba(0,0,0,.6)}.advance-card-action{display:flex;align-items:center;margin-top:auto}@media screen and (max-width:900px){.advance-card-action{flex-direction:column}}.advance-action-button,.wp-performance-check input[type=submit]{border:1px solid #e0613c;color:#e0613c;font-weight:500;background-color:#fff;border-radius:5px;padding:8px 16px;margin-right:16px;cursor:pointer;text-decoration:none;outline:0;box-shadow:none;font-size:15px}@media screen and (max-width:900px){.advance-action-button,.wp-performance-check input[type=submit]{margin:0 0 16px}}.advance-action-button:hover,.wp-performance-check input[type=submit]:hover{color:#e0613c}.advance-action-button:active,.advance-action-button:focus,.wp-performance-check input[type=submit]:active,.wp-performance-check input[type=submit]:focus{background-color:rgba(224,97,60,.1);color:#e0613c;outline:0;box-shadow:none}.advance-action-success .advance-action-button,.advance-action-success .wp-performance-check input[type=submit]{border-color:#019701;color:#019701}.advance-action-button.advance-action-button--idle,.wp-performance-check input[type=submit].advance-action-button--idle{pointer-events:none;cursor:default}.advance-action-link{color:#640398;font-weight:500;text-decoration:none;outline:0;box-shadow:none;border-bottom:1px solid transparent;padding:2px 0 1px}.advance-action-link i{display:inline-block;transform:rotate(45deg);line-height:1}.advance-action-link:hover{color:#640398;border-bottom:1px solid #640398}.advance-action-link:active,.advance-action-link:focus{outline:0;box-shadow:none;color:#640398}.advance-action-link.advance-action-link--back{display:inline-block;margin:12px 0}.advance-action-link.advance-action-link--back i{transform:none}.advance-list{display:flex;flex-wrap:wrap;margin:0 33.33% 0 0}.bb-advance-card--theme .advance-list{margin-right:16%}@media screen and (max-width:1500px){.advance-list{margin-right:0}.bb-advance-card--theme .advance-list{margin-right:0}}.advance-list li{max-width:50%;flex:0 0 50%;margin:0 0 11px;font-weight:600;font-size:95%}@media screen and (max-width:1300px){.advance-list li{max-width:100%;flex:0 0 100%}}.advance-list li.advance-list__expand{max-width:100%;flex:0 0 100%}.advance-list li:before{content:"\e876";display:inline-block;font-family:bb-icons;font-size:16px;font-weight:400;margin-right:8px;line-height:1;color:#e0613c}.bb-upgrade-notice{background-color:#f6efe8;padding:8px;text-align:center;border-bottom:1px solid #c5bfba;margin-left:-20px;position:relative}.bb-upgrade-notice .bb-upgrade-point{font-size:1rem;font-weight:500;color:#000;display:flex;align-items:center;justify-content:center}.bb-upgrade-notice .bb-upgrade-point i{font-size:24px;margin-right:4px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link{font-weight:600;color:inherit;margin-left:16px}.bb-upgrade-notice .bb-upgrade-point .bb-upgrade-notice__link:focus{box-shadow:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice{display:inline-block;width:20px;height:20px;position:absolute;color:rgba(0,0,0,.6);right:8px;top:50%;transform:translateY(-50%);border:0;padding:0;outline:0;cursor:pointer}.bb-upgrade-notice .bb-dismiss-upgrade-notice:before{content:"\e828";font-family:bb-icons;font-style:normal;display:inline-block;width:20px;height:20px;font-size:20px;text-decoration:none}.bb-upgrade-notice .bb-dismiss-upgrade-notice:hover{color:#000}.bb-upgrade-notice .bb-dismiss-upgrade-notice:active,.bb-upgrade-notice .bb-dismiss-upgrade-notice:focus{outline:0;box-shadow:none}@media screen and (max-width:768px){.bb-upgrade-notice{margin:0 0 0 -10px;padding-right:35px}}.wrap.wrap--performance>h2:first-child{font-weight:500;font-size:24px}.wrap.wrap--performance>p{color:rgba(0,0,0,.6);font-size:14px}.wp-performance-check input[type=submit]{margin:24px 0 32px}.wrap--performance{max-width:600px}.wrap--performance #resultTable table{width:100%}.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item{margin-bottom:10px}.bb-activity-sorting-list.ui-sortable .bb-activity-sorting-item:before{content:"\edb2";color:#000;font-family:bb-icons;font-size:16px;font-weight:400;cursor:move;margin-right:8px} \ No newline at end of file diff --git a/src/bp-core/admin/js/settings-page.js b/src/bp-core/admin/js/settings-page.js index 0f58811721..f2ee5d1a19 100644 --- a/src/bp-core/admin/js/settings-page.js +++ b/src/bp-core/admin/js/settings-page.js @@ -2940,4 +2940,37 @@ window.bp = window.bp || {}; /* jshint ignore:end */ + function handleDragDrop( sortableParent,onUpdateFun ){ + $( sortableParent ).sortable( { + update: function ( event, ui ) { + onUpdateFun( event, ui ); + }, + } ); + } + + // Handle Activity filter and sortring drag-drop. + handleDragDrop( '.bb-activity-sorting-list', handleUpdateActivityFilter ); + function handleUpdateActivityFilter( event ) { + var activityFilter = []; + $( event.target ).find( '.bb-activity-sorting-item' ).each( function () { + activityFilter.push( $( this ).find( 'input' ).val() ); + } ); + } + + // Handle Activity filter option save. + if ( $( 'body.buddyboss_page_bp-settings' ).length > 0 ) { + $( '.bb-activity-sorting-item input[type="checkbox"]' ).on( 'change', function () { + var checkbox = $( this ), + hiddenInput = checkbox.siblings( 'input[type="hidden"]' ); + + if ( checkbox.is( ':checked' ) ) { + // Disable the hidden input when checkbox is checked. + hiddenInput.prop( 'disabled', true ); + } else { + // Enable the hidden input when checkbox is unchecked. + hiddenInput.prop( 'disabled', false ); + } + }); + } + }()); diff --git a/src/bp-core/admin/js/settings-page.min.js b/src/bp-core/admin/js/settings-page.min.js index 1f7c0569b3..1f3302a62e 100644 --- a/src/bp-core/admin/js/settings-page.min.js +++ b/src/bp-core/admin/js/settings-page.min.js @@ -1 +1 @@ -window.bp=window.bp||{},function(){var z=jQuery.noConflict(),F=[],G=[];function V(e,t,i){var o=new Date;o.setTime(o.getTime()+60*i*1e3);o="expires="+o.toUTCString();document.cookie=e+"="+t+";"+o+";path=/"}function e(e){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");e=new RegExp("[\\?&]"+e+"=([^&#]*)").exec(location.search);return null===e?"":decodeURIComponent(e[1].replace(/\+/g," "))}function n(){z(".bb-sortable .registration-restrictions-rule:not(.custom)").each(function(e){z(this).find(".registration-restrictions-priority").html(e+1)})}function r(e,o){var n=z("#bb-domain-restrictions-setting"),a=[],s=[];e&&e.currentTarget&&z(e.currentTarget).closest(".registration-restrictions-rule").hasClass("untouched")&&z(e.currentTarget).closest(".registration-restrictions-rule").removeClass("untouched"),"submit"!==o&&"remove"!==o&&"add"!==o||z(".registration-restrictions-rule").removeClass("untouched"),z(".bb-domain-restrictions-listing .registration-restrictions-rule").not(".custom").not(".untouched").each(function(){var e=z(this).find(".registration-restrictions-domain").val().trim().toLowerCase(),t=z(this).find(".registration-restrictions-tld").val().trim().toLowerCase(),i=z(this).find(".registration-restrictions-input-select").val();z(this).removeClass("error"),n.children(".restrictions-error").html(""),""!==e&&""!==t&&(void 0===a[e+"_"+t]?a[e+"_"+t]=1:(a[e+"_"+t]+=1,z(this).addClass("error"),s.includes(BP_ADMIN.bb_registration_restrictions.feedback_messages.duplicate)||s.push(BP_ADMIN.bb_registration_restrictions.feedback_messages.duplicate))),"submit"!==o&&"remove"!==o&&"add"!==o||""!==e&&""!==t&&""!==i||(z(this).addClass("error"),s.includes(BP_ADMIN.bb_registration_restrictions.feedback_messages.empty)||s.push(BP_ADMIN.bb_registration_restrictions.feedback_messages.empty))}),z("#bb-domain-restrictions-setting").children(".restrictions-error").html("");for(var t=0;t";z("#bb-domain-restrictions-setting").children(".restrictions-error").append(i)}0";z("#bb-email-restrictions-setting").children(".restrictions-error").append(t)}0