@charset "UTF-8";
.reactions-selector-emojies > span {
  display: inline-block !important;
  cursor: pointer;
  margin: 4px;
}

.bm-table {
  margin: 10px 0;
  width: 100%;
}
.bm-table th {
  text-align: left;
  width: 1px;
  white-space: nowrap;
}
.bm-table th, .bm-table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bpbm-tab#migrate-db .bm-database-upgrade {
  margin: 15px 0;
  display: flex;
}
.bpbm-tab#migrate-db .bm-database-upgrade .bm-database-upgrade-status {
  white-space: nowrap;
  margin-right: 20px;
}
.bpbm-tab#migrate-db .bm-database-upgrade .bm-database-upgrade-status h2 {
  margin: 0 0 10px;
}
.bpbm-tab#migrate-db .bm-database-upgrade .bm-database-upgrade-progress {
  width: 100%;
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  padding: 5px 10px;
}
.bpbm-tab#migrate-db .bm-database-upgrade .bm-database-upgrade-progress p {
  margin: 5px 0;
}

.bm-text-label {
  font-weight: normal;
}
.bm-text-label.bm-text-label-pending {
  font-style: italic;
}
.bm-text-label.bm-text-label-success {
  color: green;
}
.bm-text-label.bm-text-label-error {
  color: red;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bm-icon-loading {
  display: inline-block;
  vertical-align: middle;
}
.bm-icon-loading svg {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.bm-new-build-platform {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 -10px;
}
.bm-new-build-platform .bm-new-build-platform-item {
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 10px;
  padding: 10px;
  border-radius: 3px;
  flex: 1 1 0;
  width: 0;
  text-align: center;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.bm-new-build-platform .bm-new-build-platform-item:hover {
  background-color: #f5f5f5;
}
.bm-new-build-platform .bm-new-build-platform-item.bm-new-build-platform-selected {
  background-color: #f5f5f5;
}
.bm-new-build-platform .bm-new-build-platform-item .bm-new-build-platform-item-icon {
  height: 120px;
  margin: 20px 0;
}
.bm-new-build-platform .bm-new-build-platform-item h4 {
  margin: 30px 0 20px;
  font-size: 20px;
}

table.build-info-table {
  width: 100%;
  text-align: left;
}
table.build-info-table td {
  text-align: right;
}
table.build-info-table button {
  margin-right: 5px !important;
}

.bm-builds-create .bm-builds-create-info {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  min-width: 500px;
}
.bm-builds-create .bm-builds-create-info th {
  text-align: left;
  padding-right: 10px;
  width: 1px;
  white-space: nowrap;
  vertical-align: top;
}
.bm-builds-create .bm-builds-create-info td, .bm-builds-create .bm-builds-create-info th {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bm-builds-list {
  border-radius: 3px;
  background: white;
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.bm-builds-list.bm-builds-list-has-items {
  /*background: none;
  border-radius: 0;
  border: 0;*/
}
.bm-builds-list p {
  font-size: 15px;
}
.bm-builds-list .bm-builds-list-empty-actions {
  margin: 10px 0;
}
.bm-builds-list .bm-builds-list-items {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.bm-builds-list .bm-builds-list-items.bm-builds-list-items-count-1 .bm-builds-list-item {
  max-width: 50%;
}
.bm-builds-list .bm-builds-list-items .bm-builds-list-item {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 3px;
  background: #fafafa;
  color: #1e1e1e;
  text-decoration: none;
}
.bm-builds-list .bm-builds-list-items .bm-builds-list-item:hover {
  background: #f5f5f5;
  cursor: pointer;
}
.bm-builds-list .bm-builds-list-items .bm-builds-list-item img {
  border: 1px solid #ccc;
}

.bm-device-list-items table {
  width: 100%;
  text-align: left;
  margin: 5px 0 15px;
  border-spacing: 0;
}
.bm-device-list-items table th {
  text-align: left;
  padding-right: 10px;
  width: 1px;
  white-space: nowrap;
  vertical-align: top;
}
.bm-device-list-items table td, .bm-device-list-items table th {
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: top;
}
.bm-device-list-items table .first-cell {
  padding-left: 10px;
}
.bm-device-list-items table .last-cell {
  padding-right: 10px;
}
.bm-device-list-items table td.user-td {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.bm-device-list-items table td.user-td > * {
  margin-right: 5px;
}

.bm-device-list {
  border-radius: 3px;
  background: white;
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px 0 20px;
  overflow: hidden;
}
.bm-device-list.bm-device-list-has-items {
  padding: 0;
  /*background: none;
  border-radius: 0;
  border: 0;*/
}
.bm-device-list p {
  font-size: 15px;
}

.bm-setting-section {
  position: relative;
  min-width: 255px;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  background: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  line-height: 1;
}
.bm-setting-section .bm-setting-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c3c4c7;
}
.bm-setting-section .bm-setting-section-header > h3 {
  font-size: 14px;
  padding: 8px 12px;
  margin: 0;
  line-height: 1.4;
}
.bm-setting-section .bm-setting-section-content {
  padding: 0 12px;
}
.bm-setting-section .bm-setting-section-content .bm-setting-section-blocked {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.bm-setting-section .bm-setting-section-content .bm-setting-section-blocked span {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #000;
  z-index: 2;
}
.bm-setting-section .bm-help-icon {
  font-size: 16px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: top;
}

.bm-image-upload .bm-image-holder {
  background: #f5f5f5;
  border: 1px solid #ccc;
}
.bm-image-upload .bm-image-actions {
  margin-top: 10px;
}

.better-messages-banner {
  display: block;
  margin: 10px 0;
  color: #856404;
  background-color: #fff3cd;
  border: 1px solid #f9e4a6;
  padding: 15px;
  line-height: 24px;
}
.better-messages-banner.better-messages-banner-green {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.better-messages-banner.better-messages-banner-orange {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.better-messages-banner.better-messages-banner-red {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.better-messages-banner.better-messages-banner-blue {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.bm-info-table {
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  margin-bottom: 10px;
}
.bm-info-table tr th {
  padding-left: 10px;
}
.bm-info-table tr th, .bm-info-table tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}

#messages-admin .bm-reported-messages-panel {
  display: flex;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #e6bfc2;
  padding: 15px;
  line-height: 24px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 10px 0;
}
#messages-admin .bm-reported-messages-panel > span {
  margin-left: 10px;
}

.bm-list-wrapper {
  margin: 15px 0;
  position: relative;
}
.bm-list-wrapper table.clickable tbody tr:hover td {
  cursor: pointer;
  background: #f8f8f8;
}
.bm-list-wrapper table.clickable tbody tr:hover td input {
  cursor: default;
}
.bm-list-wrapper table.bm-updating-rows tr::before {
  content: "";
}
.bm-list-wrapper table.bm-updating-rows tr.bm-updating-row::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  left: 0;
  top: 0;
}
.bm-list-wrapper table tbody tr {
  position: relative;
}
.bm-list-wrapper table tbody tr.bm-reported-row {
  background: #f8d7da;
}
.bm-list-wrapper table tbody tr.bm-reported-row .bm-reports-table {
  width: auto;
  text-align: left;
  margin: 0 auto;
}
.bm-list-wrapper table tbody tr.bm-reported-row .bm-reports-table button {
  margin: 0 5px;
}
.bm-list-wrapper table tbody tr td .user-td {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.bm-list-wrapper table tbody tr td .user-td > * {
  margin-right: 5px;
}
.bm-list-wrapper table tbody tr td img {
  max-width: 100%;
}

.bm-destructive-button {
  color: #d63638 !important;
  border-color: #d63638 !important;
}

.bm-filters {
  margin: 15px -5px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.bm-filters .bm-filter {
  width: 100%;
  max-width: 33.3%;
  margin: 0 5px;
}
.bm-filters .bm-filter label {
  display: block;
  margin-bottom: 5px;
}
.bm-filters .bm-filter input {
  box-shadow: none !important;
}
.bm-filters .bm-filter input[type=text] {
  width: 100%;
  border-color: hsl(0deg, 0%, 80%);
  padding-top: 7px;
  padding-bottom: 7px;
}

.bm-user-item {
  display: inline-flex;
  align-content: center;
  align-items: center;
}
.bm-user-item .avatar {
  margin-right: 5px;
}

.bm-mini-table td, .bm-mini-table th {
  padding: 0;
  font-size: 12px;
}
.bm-mini-table td + th,
.bm-mini-table th + td {
  padding-left: 10px;
}

.bm-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.bm-admin-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2901960784);
  top: 0;
  left: 0;
  z-index: 10000;
}
.bm-admin-modal .bm-admin-modal-content .bm-upload-errors {
  color: red;
}
.bm-admin-modal .bm-admin-modal-content .bm-upload-errors + button {
  margin-top: 10px;
}
.bm-admin-modal .bm-admin-modal-content .bm-upload-app-button {
  margin-top: 10px;
}

.bm-admin-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2901960784);
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in; /* анимация перехода */
  margin: 0;
  padding: 0;
  z-index: 10000;
  pointer-events: auto;
  overflow-y: auto;
}

.bm-admin-modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

@media (min-width: 576px) {
  .bm-admin-modal-dialog {
    max-width: 500px;
    margin: 200px auto 30px;
  }
}
.bm-admin-modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.bm-admin-modal-content table td, .bm-admin-modal-content table th {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
}
.bm-admin-modal-content table th {
  width: 1px;
  vertical-align: top;
  white-space: nowrap;
}
.bm-admin-modal-content table td {
  padding-left: 10px;
}
.bm-admin-modal-content .bm-modal-actions {
  margin-top: 10px;
  text-align: right;
}
.bm-admin-modal-content .bm-modal-actions button {
  font-size: 11px;
  padding: 0 6px;
  margin-left: 4px;
  min-height: 25px;
}

@media (min-width: 768px) {
  .bm-admin-modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
.bm-admin-modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eceeef;
}

.bm-admin-modal-title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 500;
}

.bm-admin-modal-close {
  float: right;
  font-family: sans-serif;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  text-decoration: none;
}

.bm-admin-modal-:focus, .bm-admin-modal-:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

.bm-admin-modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  overflow: auto;
}

.selectize-dropdown .selected {
  background-color: #2271b1;
}

.bm-chat-participants:not(.bm-initialized) {
  text-align: center;
}

.bm-users-table {
  width: 100%;
  margin: 10px 0;
}
.bm-users-table thead th {
  text-align: left;
}
.bm-users-table tbody tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.bm-users-table tbody tr td.bm-more-actions {
  width: 1px;
  white-space: nowrap;
}
.bm-users-table tbody tr td.bm-more-actions > span {
  cursor: pointer;
}
.bm-users-table tbody tr td.user-td {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.bm-users-table tbody tr td.user-td > * {
  margin-right: 5px;
}
.bm-users-table .bm-avatar {
  margin-right: 5px;
  vertical-align: middle;
}
.bm-users-table .bm-name {
  display: inline-block;
  vertical-align: middle;
}

.bm-users-filters {
  padding: 0 10px 5px 0 !important;
}
.bm-users-filters .bm-add-participant {
  float: right;
}
.bm-users-filters > span {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 3px 10px;
  font-size: 13px;
  margin-right: 6px;
  border-radius: 15px;
  cursor: pointer;
  user-select: none;
}
.bm-users-filters > span.bm-active {
  font-weight: bold;
}

.bm-pagination ul {
  display: flex;
}
.bm-pagination ul li {
  margin-right: 10px;
}
.bm-pagination ul li:not(.selected) {
  cursor: pointer;
}
.bm-pagination ul li.selected {
  cursor: default;
  font-weight: bold;
}
.bm-pagination ul li a {
  outline: none;
}

.react-tooltip {
  white-space: normal;
  max-width: 90%;
  text-align: center;
  z-index: 99999;
}

.bm-chat-settings .bm-help-icon {
  font-size: 16px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: top;
}
.bm-chat-settings .bm-chat-setting {
  margin: 20px 0;
}
.bm-chat-settings .bm-chat-setting label {
  font-size: 13px;
  font-weight: bold;
}
.bm-chat-settings .bm-chat-setting .form-table label {
  font-weight: normal;
}
.bm-chat-settings .bm-chat-setting .form-table .bm-html-allowed {
  color: gray;
  font-size: 12px;
  margin-left: 5px;
}
.bm-chat-settings .bm-chat-setting .form-table th {
  width: 300px;
}
.bm-chat-settings .bm-chat-setting .form-table td input[type=text] {
  width: 100%;
}
.bm-chat-settings .bp-better-messages-roles-list {
  max-height: 250px;
  overflow: auto;
  background: white;
  padding: 15px;
  border: 1px solid #ccc;
}
.bm-chat-settings .better-messages-roles-table {
  width: 100%;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.bm-chat-settings .better-messages-roles-table tr, .bm-chat-settings .better-messages-roles-table th {
  text-align: left;
}
.bm-chat-settings .better-messages-roles-table .bm-role-checkbox {
  text-align: center;
}

.bm-ai-chat-bot-settings .bm-help-icon {
  font-size: 16px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: top;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting {
  margin: 20px 0;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting label {
  font-size: 13px;
  font-weight: bold;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting .form-table label {
  font-weight: normal;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting .form-table .bm-html-allowed {
  color: gray;
  font-size: 12px;
  margin-left: 5px;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting .form-table th {
  width: 100px;
}
.bm-ai-chat-bot-settings .bm-ai-chat-bot-setting .form-table td input[type=text] {
  width: 100%;
}

.bm-admin-error {
  display: block;
  margin: 10px 0;
  border: 1px solid #f5c6cb;
  color: #721c24;
  background-color: #f8d7da;
  padding: 15px;
  line-height: 24px;
}

/*# sourceMappingURL=admin.css.map */
