@charset "UTF-8";
/*------------------------------------------------------------------------------

This stylesheet is always loaded in wp-admin.

@since BuddyPress 1.6.0
@since BuddyPress 2.5.0

--------------------------------------------------------------------------------
TABLE OF CONTENTS:
--------------------------------------------------------------------------------
1.0 Welcome Screen
	1.1 Version Badge
	1.2 Credits Panel
2.0 Dashicons
	2.1 Top level menus
	2.2 Settings - Components
	2.3 Tools
	2.4 Tooltips
	2.5 Settings - Tabs
	2.6 Settings - Cards
	2.7 Document Extensions
3.0 Content
	3.1 Users List
	3.2 Activity List
	3.3 Groups List & Types
	3.4 Forums
	3.5 Site Notices
	3.6 Post Types
4.0 Emails - Edit page
5.0 Tools
6.0 Help
7.0 Plugins page
8.0 BuddyBoss App page
9.0 Miscellaneous
10.0 On-screen Notifications
11.0 Notices UI
12.0 Profile Photo
13.0 Group Directories Enhancement
14.0 BB Pro Active/Inactive Notices
15.0 Admin bar Notification
16.0 Moderation
17.0 Domain restriction
18.0 Redirection Settings
19.0 Reactions Settings
20.0 Upgrade
21.0 Activity Filter & Sorting
22.0 Header Branding & Actions
23.0 DRM Admin Notices
------------------------------------------------------------------------------*/
: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 0.18s ease-out 0.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, 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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
}

[data-balloon]:hover:before, [data-balloon]:hover:after, [data-balloon][data-balloon-visible]:before, [data-balloon][data-balloon-visible]:after {
  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]:before, [data-balloon][data-balloon-blunt]:after {
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 {
  /* stylelint-disable @stylistic/block-closing-brace-newline-after */
  /* stylelint-enable */
  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 0.18s ease-out 0.18s;
}

/*------------------------------------------------------------------------------
 * 1.0 Welcome Screen
 *----------------------------------------------------------------------------*/
/*
 * 1.1 Version Badge
 */
.bp-badge {
  color: #d84800;
  display: inline-block;
  font: 400 150px/1 dashicons !important;
}

.bp-badge:before {
  content: "\f448";
}

.settings_page_bp-credits code,
.index_page_bp-about code {
  background-color: #e0e0e0;
  color: #636363;
  font-size: 1em;
}

/*
 * 1.2 Credits Panel
 */
.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;
}

/*------------------------------------------------------------------------------
 * 2.0 Dashicons
 *----------------------------------------------------------------------------*/
/*
 * 2.1 Top level menus
 */
#adminmenu #toplevel_page_bp-activity_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-activity_network .wp-menu-image:before {
  content: "\f130";
}

#adminmenu #toplevel_page_bp-groups_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-groups_network .wp-menu-image:before {
  content: "\f307";
}

#adminmenu #toplevel_page_bp-notifications .wp-menu-image:before,
#adminmenu #toplevel_page_bp-notifications_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-notifications_network .wp-menu-image:before {
  content: "\f439";
}

#adminmenu #toplevel_page_bp-messages .wp-menu-image:before,
#adminmenu #toplevel_page_bp-messages_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-messages_network .wp-menu-image:before {
  content: "\f465";
}

#adminmenu #toplevel_page_bp-friends .wp-menu-image:before,
#adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before {
  content: "\f325";
}

#adminmenu #toplevel_page_bp-settings .wp-menu-image:before,
#adminmenu #toplevel_page_bp-settings_user .wp-menu-image:before,
#adminmenu #toplevel_page_bp-settings_network .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";
  /* stylelint-disable-line */
  font-style: normal;
  font-weight: 300;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-left: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 20px;
  margin-right: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 23px;
}

/*
 * 2.2 Settings - Components
 */
#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;
  }
}

/*
 * 2.3 Tools
 */
#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;
}

/*
 * 2.5 Settings - Tabs
 */
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 th,
tr.bp-search-parent-field td {
  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-search-parent-field label,
tr.bp-custom-post-type-child-field {
  font-weight: 600;
}

tr.bp-search-parent-field label {
  font-size: 16px;
}

/*
 * 2.6 Settings - Cards
 */
.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, 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, 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;
  }
}

/* Media */
.section-bp_video_settings_extensions table.form-table tbody tr.video-extensions-listing > th,
.bp-admin-card.section-bp_video_settings_extensions h2:before,
.bp-admin-card.section-bp_document_settings_extensions h2:before {
  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_media_settings_symlinks h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/server.svg);
}
*/
/* Connections */
/*
.bp-admin-card.section-bp_friends h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/user-friends.svg);
	background-size: 21px 21px;
}
*/
/* Invites */
/*
.bp-admin-card.section-bp_invites h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/envelope.svg);
}
*/
/* Moderation */
/*
.bp-admin-card.section-bp_moderation_settings_blocking h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/ban.svg);
	background-size: 20px 20px;
}

.bp-admin-card.section-bp_moderation_settings_reporting h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/flag.svg);
}
*/
/* Search */
/*
.bp-admin-card.section-bp_search_settings_community h2:before,
.bp-admin-card.section-bp_search_settings_post_types h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/search.svg);
}

.bp-admin-card.section-bp_search_settings_general h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/caret-square-down.svg);
}
*/
/* Notification */
/*
.bp-admin-card.section-bp_notification_settings_automatic h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/bell.svg);
}
*/
/* Labs */
/*
.bp-admin-card.section-bp_labs_settings_notifications h2:before {

	background-image: url(../../images/admin/icons/fontawesome/solid/flask.svg);
}
*/
.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;
}

/*
 * 2.7 Document Extensions
 */
.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-icons-rl-"],
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 #f00;
}

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-right: 0;
  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, 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: 0;
  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;
  }
}

/*
 * 3.0 Content
 */
/*
 * 3.1 Users List
 */
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#name,
body.site-users-php th#email,
body.users-php th#name,
body.users-php th#registered,
body.users-php th#email,
body.users_page_bp-signups th#name,
body.users_page_bp-signups th#registered,
body.users_page_bp-signups th#email,
body.users_page_bp-signups th#date_sent {
  width: 15%;
}

body.users-php th#blogs,
body.users_page_bp-signups th#blogs {
  width: 20%;
}

body.users_page_bp-signups th.column-count_sent,
body.users_page_bp-signups td.count_sent {
  text-align: center;
}

.bp-signups-list table {
  margin: 1em 0;
}

.bp-signups-list .column-fields {
  font-weight: 700;
}

/*
 * 3.2 Activity List
 */
#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: 0.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: 0.45;
}

/*
 * 3.3 Groups List & Types
 */
form#bp-groups-form .fixed .column-comment {
  width: 20%;
}

/*
 * 3.4 Forums
 */
@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 p.sub,
#bbp-dashboard-right-now .table,
#bbp-dashboard-right-now .versions {
  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: #f00;
}

#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;
}

/*
 * 3.5 Site Notices
 */
.bp-new-notice-panel {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 1px rgba(0, 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: 0.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;
  }
}

/*
 * 3.6 Post Types
 */
body.post-type-bp-member-type .postbox .inside,
body.post-type-bp-group-type .postbox .inside {
  padding: 0 12px 12px;
}

body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker,
body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-meta-box-colorpicker {
  display: flex;
  flex-direction: row;
}

body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one,
body.post-type-bp-group-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-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child),
body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one:not(:first-child) {
  margin-right: 15px;
}

body.post-type-bp-member-type .postbox .inside .bb-meta-box-label-color-main .bb-colorpicker-row-one .bb-colorpicker-label,
body.post-type-bp-group-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-member-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-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-hide-colorpicker,
body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-hide-colorpicker {
  display: none;
}

body.post-type-bp-member-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-group-type .postbox .inside .bb-meta-box-label-color-main .bp-member-type-show-colorpicker,
body.post-type-bp-group-type .postbox .inside .bb-meta-box-label-color-main .bp-group-type-show-colorpicker {
  display: block;
}

body.post-type-bp-member-type #member-type-shortcode,
body.post-type-bp-group-type #group-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;
}

/*------------------------------------------------------------------------------
 * 4.0 Emails - Edit Page
 *----------------------------------------------------------------------------*/
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;
}

/*------------------------------------------------------------------------------
 * 5.0 Tools
 *----------------------------------------------------------------------------*/
.buddyboss_page_bp-tools .wrap,
.buddyboss_page_bp-repair-community .wrap,
.buddyboss_page_bbp-repair .wrap {
  max-width: 950px;
}

.buddyboss_page_bp-tools p,
.buddyboss_page_bp-repair-community p,
.buddyboss_page_bbp-repair p {
  line-height: 2;
}

.buddyboss_page_bp-tools fieldset,
.buddyboss_page_bp-repair-community fieldset,
.buddyboss_page_bbp-repair fieldset {
  margin: 2em 0 0;
}

.buddyboss_page_bp-tools legend,
.buddyboss_page_bp-repair-community legend,
.buddyboss_page_bbp-repair legend {
  color: #23282d;
  font-size: 1.3em;
  font-weight: 600;
  margin: 1em 0;
}

.buddyboss_page_bp-tools label,
.buddyboss_page_bp-repair-community label,
.buddyboss_page_bbp-repair 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_bp-repair-community p,
  .buddyboss_page_bbp-repair p {
    line-height: 1.5;
  }
  .buddyboss_page_bp-repair-community label,
  .buddyboss_page_bbp-repair label {
    margin-bottom: 1em;
    padding-left: 25px;
    text-indent: -33px;
  }
  .buddyboss_page_bp-repair-community .checkbox,
  .buddyboss_page_bbp-repair .checkbox {
    padding: 0 30px 0 0;
  }
}

/*------------------------------------------------------------------------------
 * 6.0 Help
 *----------------------------------------------------------------------------*/
.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, 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, 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, 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 ul,
.bp-help-content ol {
  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 th,
.bp-help-content td {
  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, 0.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);
  }
}

/*------------------------------------------------------------------------------
 * 7.0 Plugins page
 *----------------------------------------------------------------------------*/
#buddypress-update.not-shiny .update-message {
  border-right: 0;
  padding-right: 36px;
}

#buddypress-update.not-shiny .update-message:before {
  content: "\f534";
}

/*------------------------------------------------------------------------------
 * 8.0 BuddyBoss App page
 *----------------------------------------------------------------------------*/
.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, 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, 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%;
}

/*------------------------------------------------------------------------------
 * 9.0 Miscellaneous
 *----------------------------------------------------------------------------*/
body.post-type-bp_ps_form .page-title-action {
  display: none;
}

/* Notices */
.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;
}

/* Customize tabs */
.nav-tab-wrapper .bp-user-customizer,
.nav-tab-wrapper .bp-group-customizer,
.nav-tab-wrapper .bp-emails-customizer {
  padding-left: 6px;
}

.nav-tab-wrapper .bp-user-customizer:after,
.nav-tab-wrapper .bp-group-customizer:after,
.nav-tab-wrapper .bp-emails-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 #008000;
  border-right: 4px solid #f00;
  border-bottom: 4px solid #ffc0cb;
  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(0deg);
  }
  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(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}

@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}

@-ms-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  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, 0.5, 0.5, 1) infinite;
}

.content-loader div:nth-child(1) {
  right: 8px;
  animation-delay: -0.24s;
}

.content-loader div:nth-child(2) {
  right: 28px;
  animation-delay: -0.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: #808080;
}

@keyframes contentLoader {
  0% {
    top: 8px;
    height: 50px;
  }
  50%,
  100% {
    top: 24px;
    height: 28px;
  }
}

/*Moderation Reporting Block*/
#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.is_disabled,
#bp_moderation_settings_reporting label.bpm_reporting_content_content_label + label.is_disabled {
  pointer-events: none;
  opacity: 0.5;
}

#bp_moderation_settings_blocking label.is_disabled input[type="checkbox"]:disabled,
#bp_moderation_settings_reporting label.is_disabled input[type="checkbox"]:disabled,
#bp_moderation_settings_reporting label.bpm_reporting_content_content_label + label.is_disabled input[type="checkbox"]:disabled {
  opacity: 1;
  border-color: inherit;
}

/*Deactivation Popup*/
#bp-hello-container.deactivation-popup,
#bb-hello-container.deactivation-popup {
  top: 50%;
  bottom: initial;
  transform: translateY(-50%);
  overflow: auto;
  max-height: 90%;
  max-width: 640px;
  margin: 0 auto;
}

#bp-hello-container.deactivation-popup .bp-hello-footer,
#bp-hello-container.deactivation-popup .bb-hello-footer,
#bb-hello-container.deactivation-popup .bp-hello-footer,
#bb-hello-container.deactivation-popup .bb-hello-footer {
  position: static;
  padding: 10px 23px;
}

#bp-hello-container.deactivation-popup .bp-hello-footer button + button,
#bp-hello-container.deactivation-popup .bb-hello-footer button + button,
#bb-hello-container.deactivation-popup .bp-hello-footer button + button,
#bb-hello-container.deactivation-popup .bb-hello-footer button + button {
  margin-right: 10px;
}

#bp-hello-container.deactivation-popup .bp-hello-content,
#bp-hello-container.deactivation-popup .bb-hello-content,
#bb-hello-container.deactivation-popup .bp-hello-content,
#bb-hello-container.deactivation-popup .bb-hello-content {
  height: auto;
  padding: 20px 23px;
}

#bp-hello-container.deactivation-popup .bp-hello-content h4,
#bp-hello-container.deactivation-popup .bb-hello-content h4,
#bb-hello-container.deactivation-popup .bp-hello-content h4,
#bb-hello-container.deactivation-popup .bb-hello-content h4 {
  margin-bottom: 0;
}

#bp-hello-container.deactivation-popup .bp-hello-content ul,
#bp-hello-container.deactivation-popup .bb-hello-content ul,
#bb-hello-container.deactivation-popup .bp-hello-content ul,
#bb-hello-container.deactivation-popup .bb-hello-content ul {
  margin-right: 17px;
  list-style-type: disc;
}

#bp-hello-container.deactivation-popup .bp-hello-content > p:first-child,
#bp-hello-container.deactivation-popup .bb-hello-content > p:first-child,
#bb-hello-container.deactivation-popup .bp-hello-content > p:first-child,
#bb-hello-container.deactivation-popup .bb-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;
  }
}

/*------------------------------------------------------------------------------
 * 10.0 On-screen Notifications
 *----------------------------------------------------------------------------*/
.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 0.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;
}

/*------------------------------------------------------------------------------
 * 11.0 Notices UI
 *----------------------------------------------------------------------------*/
.bp-messages-feedback .bp-feedback.error {
  margin: 0;
  border: 0;
  padding: 0;
}

#bp_web_push_notification_settings .bp-feedback,
#bp_media_settings_symlinks .bp-feedback {
  box-shadow: none;
  padding-top: 0;
}

#bp_web_push_notification_settings .bp-feedback .bp-icon,
#bp_media_settings_symlinks .bp-feedback .bp-icon {
  border-radius: 0 4px 4px 0;
  margin: 0;
}

#bp_web_push_notification_settings .bp-feedback > p,
#bp_media_settings_symlinks .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%;
}

.admin-notice .bp-feedback,
#bp_web_push_notification_settings .bp-feedback,
#bp_media_settings_symlinks .bp-feedback {
  box-shadow: none;
  padding-top: 0;
}

.admin-notice .bp-feedback .bp-icon,
#bp_web_push_notification_settings .bp-feedback .bp-icon,
#bp_media_settings_symlinks .bp-feedback .bp-icon {
  border-radius: 0 4px 4px 0;
  margin: 0;
}

.admin-notice .bp-feedback > p,
#bp_web_push_notification_settings .bp-feedback > p,
#bp_media_settings_symlinks .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";
  /* stylelint-disable-line */
  content: "\e855";
}

/* Errors / Waring Styling*/
.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 Block */
.status-line {
  display: inline-block;
  font-size: 14px;
  padding: 10px 15px;
  background: #f0f0f1;
  border-radius: 5px;
  color: #808080;
}

.status-line:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #808080;
  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;
}

/*------------------------------------------------------------------------------
 * 12.0 Profile Photo UI
 *----------------------------------------------------------------------------*/
.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-cover img,
.preview_avatar_cover .preview-item-avatar img {
  object-fit: cover;
  width: 100%;
}

.preview_avatar_cover .preview-item-cover img[src=""],
.preview_avatar_cover .preview-item-avatar 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;
}

body.users_page_bp-profile-edit #TB_window,
.buddyboss_page_bp-settings #TB_window {
  height: auto !important;
  width: 820px !important;
  max-width: 90%;
  top: 50% !important;
  transform: translateY(-50%);
  max-height: 90%;
  overflow: auto;
}

body.users_page_bp-profile-edit #TB_window .bp-avatar #avatar-to-crop,
.buddyboss_page_bp-settings #TB_window .bp-avatar #avatar-to-crop {
  margin-bottom: 15px;
}

body.users_page_bp-profile-edit #TB_ajaxContent,
.buddyboss_page_bp-settings #TB_ajaxContent {
  height: auto !important;
  width: auto !important;
  padding: 15px;
}

table tbody td .bb-description {
  color: #999;
  margin-top: 6px;
  margin-bottom: 0;
}

/*------------------------------------------------------------------------------
 * 13.0 Group Directories Enhancement
 *----------------------------------------------------------------------------*/
.bb-group-element,
.bb-group-headers-element,
.bb-profile-header-element,
.bb-member-directory-element,
.bb-member-directory-profile-action {
  margin-bottom: 10px;
}

@media screen and (max-width: 782px) {
  .bb-group-element input[type="checkbox"],
  .bb-group-headers-element input[type="checkbox"],
  .bb-profile-header-element input[type="checkbox"],
  .bb-member-directory-element input[type="checkbox"],
  .bb-member-directory-profile-action 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 0.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-left:checked:checked + .option:before,
.bb-header-style-outer .bb-header-style #bb-group-header-style-centered: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 0.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-left:checked:checked + .option:before,
.bb-grid-style-outer .bb-grid-style #bb-group-directory-layout-grid-style-centered: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 0.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-styleleft:checked:checked + .option:before,
.bb-grid-style-outer .bb-header-style #bb-profile-headers-layout-stylecentered:checked:checked + .option:before {
  border-color: #2370b1;
}

/*------------------------------------------------------------------------------
 * 14.0 BB Pro Active/Inactive Notices
 *----------------------------------------------------------------------------*/
.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";
  /* stylelint-disable-line */
  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: 0.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 tr,
#bp_notification_settings_automatic table.render-dynamic-notification th,
#bp_notification_settings_automatic table.render-dynamic-notification td {
  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: 0.7;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(220, 220, 222, 0.75);
  color: rgba(44, 51, 56, 0.5);
}

#bp_notification_settings_automatic .field-set .field-block .manage-defaults .field-wrap.disabled input[type="checkbox"]::before {
  opacity: 0.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";
  /* stylelint-disable-line */
  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;
}

/*------------------------------------------------------------------------------
 * 15.0 Admin bar Notification
 *----------------------------------------------------------------------------*/
#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;
}

/*------------------------------------------------------------------------------
 * 16.0 Moderation
 *----------------------------------------------------------------------------*/
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 thead tr th,
table.moderations tfoot 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 thead tr th,
.buddyboss_page_bp-moderation table.reports tfoot tr th {
  font-weight: 600;
}

table.moderations .content_owner img,
table.reports .column-reporter img,
table.moderations .column-member 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: #808080;
  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: none !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;
}

/*------------------------------------------------------------------------------
 * 17.0 Domain restriction
 *----------------------------------------------------------------------------*/
.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";
  /* stylelint-disable-line */
  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, 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;
  }
}

/*------------------------------------------------------------------------------
 * 18.0 Redirection Settings
 *----------------------------------------------------------------------------*/
.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, 0.5);
  color: inherit;
}

/*------------------------------------------------------------------------------
 * 19.0 Reactions Settings
 *----------------------------------------------------------------------------*/
.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;
}

/*------------------------------------------------------------------------------
 * Telemetry Settings
 *----------------------------------------------------------------------------*/
.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, 0.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 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, 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, 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, 0.1);
  border-radius: 5px;
  padding: 5px 16px 5px 16px;
  /* background-color: rgba(0, 0, 0, 0.05);
			appearance: none;
			background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
			background-repeat: no-repeat;
			background-position: right 0.8rem top 50%;
			background-size: 0.65rem auto; */
}

.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, 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, 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, 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, 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, 0.8);
  border: 1px solid rgba(0, 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, 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, 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: 0.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, 0.8);
}

.bb-integrations_loadmore.loading {
  pointer-events: none;
  opacity: 0.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: 0.5px solid #e0613c;
  border-radius: 10px;
  box-shadow: 0 4px 32px 0 rgba(0, 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, 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);
  }
}

/*------------------------------------------------------------------------------
 * 20.0 Upgrade
 *----------------------------------------------------------------------------*/
.buddyboss_page_bb-upgrade .nav-tab-wrapper {
  display: none;
}

.bb-upgrade-nav-tag,
.bb-rl-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;
}

.bb-upgrade-nav-tag.color-green,
.bb-rl-nav-tag.color-green {
  background-color: #5f9a22;
  padding-right: 6px;
  padding-left: 6px;
}

@media screen and (max-width: 760px) {
  .bb-upgrade-nav-tag,
  .bb-rl-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, 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, 0.6);
  font-weight: 500;
  font-size: 14px;
}

.advance-tab-header .subsubsub a:focus, .advance-tab-header .subsubsub a:active {
  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, 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, 0.8);
}

.advance-nav-action:hover svg path {
  fill: rgba(255, 255, 255, 0.8);
}

.advance-nav-action:focus, .advance-nav-action:active {
  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, 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, 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, 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: none;
  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, 0.1);
  color: #e0613c;
  outline: none;
  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: none;
  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: none;
  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, 0.6);
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  outline: none;
  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: black;
}

.bb-upgrade-notice .bb-dismiss-upgrade-notice:focus, .bb-upgrade-notice .bb-dismiss-upgrade-notice:active {
  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, 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%;
}

#customize-theme-controls .accordion-section-title button.accordion-trigger {
  height: auto;
}

/*------------------------------------------------------------------------------
 * 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-left: 8px;
}

.bb-modal-panel--activity-topic:has(.bb-hello-content > .bb-hello-error) .bb-hello-header,
.bb-modal-panel--activity-topic-migrate:has(.bb-hello-content > .bb-hello-error) .bb-hello-header {
  border-bottom: 0 !important;
}

.bb-activity-topics-wrapper {
  margin-top: 15px;
}

.bb-activity-topics-wrapper .activity-topic-label {
  margin: 0 0 15px;
  font-size: 14px;
  color: #1d2327;
}

.bb-activity-topics-wrapper .bb-activity-topics-content {
  margin-bottom: 10px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content.bb-has-topics {
  background: #f0f0f1;
  border-radius: 6px;
  padding: 16px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list {
  margin-bottom: 18px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  margin-bottom: 8px;
  background: #fff;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item:hover {
  border-color: #2271b1;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-left {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-left .bb-topic-drag {
  font-size: 16px;
  color: #9b9f9b;
  font-weight: 300;
  cursor: move;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-left .bb-topic-drag i:before {
  margin: 0;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-left .bb-topic-title {
  color: #101517;
  font-size: 15px;
  font-weight: 500;
  word-break: break-all;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-right .bb-topic-access {
  color: #a7aaad;
  font-size: 13px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item .bb-topic-right .bb-topic-actions_button {
  display: inline-block;
  color: #1e2132;
  font-size: 16px;
  font-weight: 300;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.4;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list .bb-activity-topic-item.ui-sortable-placeholder {
  border: 1px dashed #e1e3e5;
  visibility: visible !important;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list.is-loading {
  pointer-events: none;
  position: relative;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list.is-loading > * {
  opacity: 0.5;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-activity-topics-list.is-loading:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(155, 156, 159, 0.2);
  border-top-color: #9b9c9f;
  animation: spin 2s infinite linear;
  position: absolute;
  right: 50%;
  top: 50%;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-add-topic {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-add-topic .bb-icon-plus {
  font-size: 16px;
  line-height: 1;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-add-topic .bb-icon-plus:before {
  margin: 0;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .description {
  color: #646970;
  font-size: 12px;
  margin: 10px 0 0;
}

.bb-activity-topics-wrapper .bb-activity-topics-content .bb-topics-sort-success {
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
  margin: 0 0 20px !important;
}

.bb-activity-topics-wrapper p.description {
  color: #8c8f94;
  font-size: 14px;
  font-weight: 400;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper {
  position: relative;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.05), 0 6px 32px 0 rgba(18, 43, 70, 0.1);
  min-width: 150px;
  z-index: 100;
  display: none;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown a {
  display: block;
  border: 0;
  background: transparent;
  color: #3c434a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 10px;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown a:before {
  font-family: bb-icons;
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown a.bb-edit-topic:before {
  content: "\eeec";
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown a.bb-delete-topic:before {
  content: "\ef48";
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown a:hover {
  background-color: #f0f0f1;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper .bb-topic-more-dropdown .bp-screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.bb-activity-topics-wrapper .bb-topic-actions-wrapper.active .bb-topic-more-dropdown {
  display: block;
}

.section-bb_activity_topics .bp-hide {
  display: none;
}

.bb-modal-panel--activity-topic.bb-modal-panel,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel {
  width: 100%;
  max-width: 700px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-header,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-header {
  position: relative;
  padding: 15px;
  background-color: #f6f7f7;
  border-bottom: 1px solid #dcdcde;
}

.bb-modal-panel--activity-topic.bb-modal-panel #bb-hello-title,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel #bb-hello-title {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 500;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-close,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-close {
  top: 50%;
  transform: translateY(-50%);
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-close button,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-close button {
  border: 0;
  padding: 0;
  background: transparent;
  line-height: 1;
  font-size: 28px;
  color: #a7aaad;
  min-height: auto;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-close button i:before,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-close button i:before {
  margin: 0;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-content,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-content {
  padding: 15px 20px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-content .form-fields,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-content .form-fields {
  margin: 0;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-hello-content div.bb-hello-error,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-hello-content div.bb-hello-error {
  color: #d63638;
  border-color: #ffabaf;
  padding: 8px 20px;
  margin: -15px -20px 18px -20px;
  align-items: center;
}

.bb-modal-panel--activity-topic.bb-modal-panel .form-fields .form-field,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .form-fields .form-field {
  margin-bottom: 15px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .form-fields .field-label,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .form-fields .field-label {
  margin-bottom: 12px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .form-fields .field-label label,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .form-fields .field-label label {
  font-size: 14px;
  font-weight: 500;
  color: #1d2327;
  margin-bottom: 10px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .form-fields .bb-topic-who-can-post-option,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .form-fields .bb-topic-who-can-post-option {
  margin-bottom: 10px;
}

.bb-modal-panel--activity-topic.bb-modal-panel .bb-popup-buttons,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel .bb-popup-buttons {
  background-color: #f6f7f7;
  border-top: 1px solid #dcdcde;
  margin: 0 -20px;
  padding: 12px 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  box-sizing: border-box;
}

.bb-modal-panel--activity-topic.bb-modal-panel.is-loading .bb-hello-header,
.bb-modal-panel--activity-topic.bb-modal-panel.is-loading .bb-popup-buttons,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel.is-loading .bb-hello-header,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel.is-loading .bb-popup-buttons {
  z-index: 1;
}

.bb-modal-panel--activity-topic.bb-modal-panel.is-loading:before,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel.is-loading:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.bb-modal-panel--activity-topic.bb-modal-panel.is-loading:after,
.bb-modal-panel--activity-topic-migrate.bb-modal-panel.is-loading:after {
  content: "\ef30";
  font-family: bb-icons;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: -6px -6px 0 0;
  position: absolute;
  top: 50%;
  right: 50%;
  text-align: center;
  display: inline-block;
  animation: spin 3s infinite linear;
  z-index: 1;
}

.bb-hello-backdrop-activity-topic-migrate {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.15s ease-out;
}

.bb-hello-activity-topic-migrate.bb-modal-panel {
  position: fixed;
  z-index: 9999;
  border-radius: 3px;
  bottom: initial;
  top: 50%;
  right: 50%;
  left: unset;
  transform: translate(50%, -50%);
  max-width: 500px;
}

.bb-hello-activity-topic-migrate.bb-modal-panel #bb-hello-title {
  font-size: 18px;
  line-height: 1.2;
  color: #1d2327;
  width: calc(100% - 35px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content {
  min-height: 130px;
  margin-bottom: 55px;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content .form-fields .form-field {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content .form-fields .field-input select {
  min-width: 150px;
  max-width: 150px;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content .form-fields .field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content .form-fields .field-label input[type="radio"] {
  margin: 0;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content .form-fields .field-label label {
  font-size: 14px;
  font-weight: 400;
  color: #50575e;
  margin-bottom: 0;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content #bb_topic_cancel {
  border-color: #646970;
  color: #2c3338;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content #bb_topic_migrate {
  color: #fff;
  border-color: #d63638;
  background-color: #d63638;
}

.bb-hello-activity-topic-migrate.bb-modal-panel div.bb-hello-content #bb_topic_migrate.is-loading:after {
  content: "\ef30";
  font-family: bb-icons;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin: 0 5px 3px 0;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  animation: spin 3s infinite linear;
}

.bb-hello-activity-topic-migrate.bb-modal-panel .bb-hello-content-description {
  color: #1d2327;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 24px;
}

#bb-hello-container.bb-modal-panel,
.admin-bar #bb-hello-container.bb-modal-panel,
#bb-hello-topic-migrate-container.bb-modal-panel,
.admin-bar #bb-hello-topic-migrate-container.bb-modal-panel {
  top: 50%;
  right: 50%;
  left: unset;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 768px) {
  #bb-hello-container.bb-modal-panel,
  .admin-bar #bb-hello-container.bb-modal-panel,
  #bb-hello-topic-migrate-container.bb-modal-panel,
  .admin-bar #bb-hello-topic-migrate-container.bb-modal-panel {
    width: 90%;
  }
}

.bb-modal-panel .bb-hello-header {
  background-color: #f6f7f7;
  border-bottom-color: var(--bb-hello-color-secondary);
}

.bb-modal-panel .bb-hello-title h2 {
  color: #1d2327;
  font-size: 1.5em;
  margin: 0.5em 0;
  padding-bottom: 0;
  border-bottom: none;
  font-weight: 600;
}

.bb-modal-panel .bb-hello-content {
  height: auto;
  padding: 0 23px;
  min-height: 180px;
  max-height: calc(100vh - 220px);
  margin-bottom: 56px;
}

.bb-modal-panel .bb-hello-content .form-fields {
  margin: 10px 0;
}

.bb-modal-panel .bb-hello-content .form-field .bb-hello-error:first-of-type {
  margin-top: -10px;
}

.bb-modal-panel .bb-hello-content .form-field .bb-hello-error + .field-label {
  margin-top: 20px;
}

.bb-modal-panel .bb-hello-content > .bb-hello-error:first-of-type {
  margin-top: 0;
}

.bb-modal-panel .bb-hello-content .bb-hello-error {
  margin: -1px -23px 0;
  background-color: #fcf0f1;
  border-top: 1px solid #d63638;
  border-bottom: 1px solid #d63638;
  padding: 10px 23px;
  display: flex;
}

.bb-modal-panel .bb-hello-content .bb-hello-error > i {
  color: #d63638;
  font-size: 16px;
  margin-left: 8px;
}

.bb-modal-panel .bb-hello-content .bb-hello-error > i::before {
  margin: 0;
}

.bb-modal-panel .bb-hello-content .bb-hello-error + .bb-hello-error {
  border-top: 0;
}

.bb-modal-panel .bb-hello-content .form-field .bb-hello-success:first-of-type {
  margin-top: -10px;
}

.bb-modal-panel .bb-hello-content .form-field .bb-hello-success + .field-label {
  margin-top: 20px;
}

.bb-modal-panel .bb-hello-content > .bb-hello-success:first-of-type {
  margin-top: 0;
}

.bb-modal-panel .bb-hello-content .form-field .bb-hello-success + .field-label {
  margin-top: 20px;
}

.bb-modal-panel .bb-hello-content .bb-hello-success {
  margin: -1px -23px 0;
  background-color: #e6fce5;
  border-top: 1px solid #66d636;
  border-bottom: 1px solid #66d636;
  padding: 10px 23px;
  display: flex;
}

.bb-modal-panel .bb-hello-content .bb-hello-success > i {
  color: #66d636;
  font-size: 16px;
  margin-left: 8px;
}

.bb-modal-panel .bb-hello-content .bb-hello-success > i::before {
  margin: 0;
}

.bb-modal-panel .bb-hello-content .bb-hello-success + .bb-hello-success {
  border-top: 0;
}

.bb-modal-panel .form-fields .field-label {
  margin-bottom: 5px;
}

.bb-modal-panel .form-fields .field-label label {
  line-height: 22px;
  font-size: 13px;
  font-weight: 600;
}

.bb-modal-panel .form-fields .field-input input[type="text"],
.bb-modal-panel .form-fields .field-input textarea {
  width: 100%;
}

.bb-modal-panel .form-fields .form-field {
  margin-bottom: 5px;
}

.bb-modal-panel .bb-popup-buttons {
  position: absolute;
  bottom: 0;
  padding: 12px 15px;
  width: 100%;
  margin: 0 -23px;
  border-top: 1px solid var(--bb-hello-color-secondary);
  background-color: #f6f7f7;
}

@media screen and (orientation: landscape) and (max-height: 480px) {
  .bb-modal-panel .bb-hello-content {
    min-height: 110px;
  }
}

.bb-modal-panel .form-field .description {
  margin: 13px 0 20px 0;
  line-height: 22px;
}

#bb-hello-container.bb-modal-panel,
#bb-hello-topic-migrate-container.bb-modal-panel {
  top: 50%;
  bottom: initial;
  transform: translateY(-50%);
}

#bb-hello-container.bb-modal-panel .button-primary,
#bb-hello-topic-migrate-container.bb-modal-panel .button-primary {
  color: #fff;
  margin-left: 5px;
}

@media screen and (max-width: 480px) {
  #bb-hello-container.bb-modal-panel .button-primary,
  #bb-hello-topic-migrate-container.bb-modal-panel .button-primary {
    margin-left: 0;
  }
}

/*------------------------------------------------------------------------------
 * 22.0 Header Branding & Actions
 *----------------------------------------------------------------------------*/
.bb-tab-header {
  background-color: #fff;
  margin-right: -20px;
  padding: 12px 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-tab-header .bb-branding-header {
  margin-left: auto;
}

.bb-tab-header .bb-branding-header .bb-branding-logo {
  max-width: 130px;
}

.bb-tab-header .bb-branding-header .bb-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 600px) {
  #wpadminbar ~ .bb-tab-header {
    padding-top: 58px;
  }
  #wpadminbar ~ .bb-tab-header ~ #wpbody {
    padding-top: 0;
  }
}

/*------------------------------------------------------------------------------
23.0 - DRM Admin Notices
------------------------------------------------------------------------------*/
/**
 * DRM Notice List Styling
 * Ensures disc bullet points render properly in DRM admin notices
 */
.bb-drm-notice ul {
  margin: 10px 0 0 0 !important;
  padding-right: 20px !important;
  list-style: disc !important;
  list-style-position: outside !important;
}

.bb-drm-notice ul li {
  list-style: disc !important;
  list-style-position: outside !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.bb-drm-notice ol {
  margin: 10px 0 0 0 !important;
  padding-right: 20px !important;
  list-style: decimal !important;
  list-style-position: outside !important;
}

.bb-drm-notice ol li {
  list-style: decimal !important;
  list-style-position: outside !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.bb-drm-notice ul ul,
.bb-drm-notice ul ol,
.bb-drm-notice ol ul,
.bb-drm-notice ol ol {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

/**
 * DRM Notice Border Colors
 * Color-coded borders for different DRM status levels
 */
#bb-drm-consolidated-notice-dh {
  border-right-color: #ffa500 !important;
}

#bb-drm-consolidated-notice-dl {
  border-right-color: #dc3232 !important;
}

/**
 * DRM Notice Responsive Styles
 * Ensures proper display on mobile devices
 */
@media screen and (max-width: 782px) {
  .bb-drm-notice {
    padding: 12px !important;
    padding-left: 35px !important;
  }
  .bb-drm-notice > div[style*="display: flex"] {
    display: block !important;
  }
  .bb-drm-notice > div[style*="display: flex"] > div {
    padding-left: 0 !important;
    margin-bottom: 10px;
  }
  .bb-drm-notice > div[style*="display: flex"] > div:last-child {
    margin-bottom: 0;
    white-space: normal !important;
  }
  .bb-drm-notice > div[style*="display: flex"] .button {
    display: block;
    width: 100%;
    text-align: center;
  }
  .bb-drm-notice .notice-dismiss,
  .bb-drm-notice .bb-drm-dismiss {
    padding: 5px !important;
  }
  .bb-drm-notice ul,
  .bb-drm-notice ol {
    margin-top: 8px !important;
    padding-right: 18px !important;
  }
}

@media screen and (max-width: 600px) {
  .bb-drm-notice {
    padding: 10px !important;
    padding-left: 32px !important;
  }
  .bb-drm-notice p {
    font-size: 14px;
  }
  .bb-drm-notice .button {
    padding: 8px 12px;
    font-size: 13px;
  }
}
