.report-moderation-metabox .bptk-field-wrap {
  display: flex;
  flex-direction: column;
}

.wp-core-ui .button-primary.bptk-report-settings-ajax-button:focus {
  box-shadow: none;
}

.bptk-field-wrap {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
  /* The container */
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
}
.bptk-field-wrap .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px !important;
}
@media (min-width: 782px) {
  .bptk-field-wrap .switch {
    width: 30px;
    height: 17px;
  }
}
.bptk-field-wrap .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.bptk-field-wrap .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.bptk-field-wrap .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 782px) {
  .bptk-field-wrap .slider:before {
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
  }
}
.bptk-field-wrap input:checked + .slider {
  background-color: #2196F3;
}
.bptk-field-wrap input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.bptk-field-wrap input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
@media (min-width: 782px) {
  .bptk-field-wrap input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
  }
}
.bptk-field-wrap .slider.round {
  border-radius: 34px;
}
.bptk-field-wrap .slider.round:before {
  border-radius: 50%;
}
.bptk-field-wrap .bptk-radio-wrapper {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 10px;
}
.bptk-field-wrap .bptk-radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.bptk-field-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
@media (min-width: 782px) {
  .bptk-field-wrap .checkmark {
    height: 18px;
    width: 18px;
  }
}
.bptk-field-wrap #bptk-toggle-uphold {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 1.7em;
  width: 100%;
  border-radius: 0.2em;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  background-color: #00ab66;
  box-shadow: inset 0 -0.6em 1em -0.35em rgba(0, 0, 0, 0.17), inset 0 0.6em 2em -0.3em rgba(255, 255, 255, 0.15), inset 0 0 0em 0.05em rgba(255, 255, 255, 0.12);
  text-align: center;
  position: relative;
  margin: 10px 0px;
}
.bptk-field-wrap #bptk-toggle-uphold.bptk-report-upheld {
  background-color: #cc3333;
}
.bptk-field-wrap #bptk-toggle-suspension {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 1.7em;
  width: 100%;
  border-radius: 0.2em;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  background-color: #00ab66;
  box-shadow: inset 0 -0.6em 1em -0.35em rgba(0, 0, 0, 0.17), inset 0 0.6em 2em -0.3em rgba(255, 255, 255, 0.15), inset 0 0 0em 0.05em rgba(255, 255, 255, 0.12);
  text-align: center;
  position: relative;
  margin: 10px 0px;
}
.bptk-field-wrap #bptk-toggle-suspension.bptk-member-suspended {
  background-color: #cc3333;
}
.bptk-field-wrap #bptk-toggle-moderation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 1.7em;
  width: 100%;
  border-radius: 0.2em;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  background-color: #00ab66;
  box-shadow: inset 0 -0.6em 1em -0.35em rgba(0, 0, 0, 0.17), inset 0 0.6em 2em -0.3em rgba(255, 255, 255, 0.15), inset 0 0 0em 0.05em rgba(255, 255, 255, 0.12);
  text-align: center;
  position: relative;
  margin: 10px 0px;
}
.bptk-field-wrap #bptk-toggle-moderation.bptk-item-moderated {
  background-color: #cc3333;
}

.bptk-ajax-loader {
  border: 3px solid #fff;
  border-top: 3px solid #303030;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bptk-hidden {
  display: none !important;
}

.bptk-shortcode-button .dashicons {
  font-size: 16px;
  width: 16px;
  vertical-align: middle;
  color: #909090;
  margin-right: 2px;
}
.bptk-shortcode-button .dashicons-yes {
  color: green;
}
.bptk-shortcode-button:hover {
  color: #555;
}
.bptk-shortcode-button:hover .dashicons {
  color: #555;
}
.bptk-shortcode-button:after {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

.bptk-admin-header {
  display: grid;
  grid-template-areas: "title meta";
  grid-template-columns: auto 275px;
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  padding: 20px 20px;
  position: relative;
}
.bptk-admin-header .bptk-notices-trigger {
  margin: 0px;
  padding: 0px;
}
@media (max-width: 782px) {
  .bptk-admin-header {
    display: block;
  }
}
@media (max-width: 600px) {
  .bptk-admin-header {
    top: 46px;
  }
}
.bptk-admin-header .bptk-title {
  grid-area: title;
  display: flex;
  line-height: normal;
}
.bptk-admin-header .bptk-title a {
  text-decoration: none;
  display: flex;
}
.bptk-admin-header .bptk-title a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.bptk-admin-header .bptk-title a h1 {
  font-size: 20px;
  font-weight: 400;
  margin: 0px;
}
.bptk-admin-header .bptk-meta {
  grid-area: meta;
  align-self: center;
  display: flex;
  justify-content: space-between;
}
.bptk-admin-header .bptk-meta .bptk-version {
  margin-left: 5px;
  align-self: center;
}
@media (max-width: 782px) {
  .bptk-admin-header .bptk-meta .bptk-version {
    margin-left: 0px;
  }
}
@media (max-width: 782px) {
  .bptk-admin-header .bptk-meta {
    display: block;
    margin-top: 20px;
  }
}

.bsr_page_bp-toolkit-account .bptk-admin-header, .bsr_page_bp-toolkit-contact .bptk-admin-header, .bsr_page_bp-toolkit-support-forum .bptk-admin-header, .bsr_page_bp-toolkit-pricing .bptk-admin-header {
  display: none;
}

#wpcontent {
  padding: 0;
}

#wpbody {
  color: #000;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 600px) {
  #wpbody #screen-meta-links {
    display: none;
  }
}
#wpbody .notice {
  margin: 5px 20px 15px 2px;
}

.wp-header-end {
  margin-top: 15px;
}

@media (max-width: 782px) {
  .wrap {
    clear: none;
  }
}

.wp-list-table #reporter {
  width: 250px;
}
.wp-list-table #activity {
  text-align: center;
  width: 50px;
}
.wp-list-table #total {
  text-align: center;
  width: 100px;
}
.wp-list-table .type-report .reporter a div {
  display: flex;
}
.wp-list-table .type-report .reporter a div img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 10px;
}
.wp-list-table .type-report .reporter a div div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.wp-list-table .type-report .column-activity div {
  background-color: #cc3333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.wp-list-table .type-report .column-activity div span {
  color: #fff;
}
.wp-list-table .type-report .column-activity div svg {
  fill: #fff;
  width: 2em;
}
.wp-list-table .type-report .reported div {
  display: flex;
}
.wp-list-table .type-report .reported div img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 10px;
}
.wp-list-table .type-report .reported div div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.wp-list-table .type-report .reported div div .bptk-reports-count {
  color: #cc3333;
  font-weight: bold;
}
.wp-list-table .type-report .total div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  background-color: #cc3333;
  font-weight: bold;
  margin: 0 auto;
  font-size: 16px;
}
.wp-list-table .type-report.report-unread .row-title, .wp-list-table .type-report.report-unread .content, .wp-list-table .type-report.report-unread .type, .wp-list-table .type-report.report-unread .reporter, .wp-list-table .type-report.report-unread .reported, .wp-list-table .type-report.report-unread .date {
  font-weight: bold;
}
.wp-list-table .type-report.report-unread .row-actions {
  font-weight: normal;
}

/* messages */
.bptk_admin .bptk_message {
  background: #FFF;
  border-left: 4px solid #FFF;
  margin-right: 15px;
  padding: 15px;
}

.bptk_admin .bptk_success {
  background-color: rgba(70, 180, 80, 0.1);
  border-left-color: rgb(70, 180, 80);
}

.bptk_admin .bptk_error {
  background-color: rgba(220, 50, 50, 0.1);
  border-left-color: rgb(220, 50, 50);
}

.bptk_admin .bptk_alert {
  background-color: rgba(255, 185, 0, 0.1);
  border-left-color: rgb(255, 185, 0);
}

.bptk_admin .bptk_success a {
  color: #208A1B;
}

.bptk_admin .bptk_error a {
  color: #E36154;
}

.bptk_admin .bptk_alert a {
  color: #CF8516;
}

/* Style our non-CPT boxes */
.bptk-box-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
@media (max-width: 1400px) {
  .bptk-box-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 782px) {
  .bptk-box-container {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}

.bptk-featured-news.bptk-box {
  background-color: #f7f9f9;
  color: #0071a1;
  margin-top: 20px;
  border: 2px solid #0071a1;
}
@media (min-width: 782px) {
  .bptk-featured-news.bptk-box .bptk-box-inner {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.bptk-featured-news.bptk-box .bptk-featured-news-title {
  margin-right: 20px;
  font-weight: bold;
}
.bptk-featured-news.bptk-box .bptk-featured-news-content p {
  display: inline;
}
.bptk-featured-news.bptk-box .bptk-featured-news-content a {
  color: #000;
  font-weight: bold;
}

.bptk-box {
  position: relative;
  min-width: 255px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  background: #fff;
  margin-top: 40px;
}
.bptk-box .bptk-box-header {
  font-size: 14px;
  padding: 8px 12px;
  margin: 0;
  line-height: 1.4;
  border-bottom: 1px solid #eee;
}
.bptk-box .bptk-box-inner {
  font-size: 13px;
  padding: 12px;
  margin: 0;
  line-height: 1.4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bptk-box .bptk-box-inner a {
  text-decoration: none;
}
.bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 782px) {
  .bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns {
    display: block;
  }
}
.bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column img {
  float: left;
  max-width: 175px;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column img {
    float: none;
    max-width: 90%;
    margin: 5px;
  }
}
@media (min-width: 992px) {
  .bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column img {
    max-width: 250px;
  }
}
.bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column ul {
  margin-left: 20px;
}
.bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column ul li:before {
  font-family: "dashicons";
  content: "\f227";
  margin-right: 5px;
}
.bptk-box .bptk-box-inner .bptk-dashboard-upgrade-columns .upgrade-column.enterprise li:before {
  font-family: "dashicons";
  content: "\f110";
  margin-right: 5px;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 782px) {
  .bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns {
    display: block;
  }
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column ul li {
  font-size: 14px;
  line-height: 16px;
  padding: 0 0 8px;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column .isDisabled {
  color: #a2a2a2;
  cursor: not-allowed;
  text-decoration: none;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column .isDisabled span {
  opacity: 1;
  color: #dc3232;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column .button-action {
  background: #dd823b;
  border-color: #c36922 #ad5d1e #ad5d1e;
  color: #fff;
  box-shadow: 0 1px 0 #ad5d1e;
  text-shadow: 0 -1px 1px #ad5d1e, 1px 0 1px #ad5d1e, 0 1px 1px #ad5d1e, -1px 0 1px #ad5d1e;
}
@media (max-width: 782px) {
  .bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column {
    border-bottom: 1px solid #CCC;
    margin-bottom: 2em;
    padding-bottom: 2em;
  }
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column #bptk-quick-moderate #bptk-quick-moderate-activity {
  width: 150px !important;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column #bptk-quick-moderate #bptk-quick-moderate-id {
  vertical-align: middle;
  margin: 10px 0px;
  width: 150px;
}
.bptk-box .bptk-box-inner .bptk-dashboard-welcome-columns .bptk-dashboard-welcome-column #bptk-quick-moderate #bptk-quick-moderate-submit {
  display: block;
  margin-bottom: 10px;
}
.bptk-box.bptk-box-minor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports.striped > :nth-child(2n+1) {
  background-color: #f9f9f9;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-avatar {
  display: flex;
  align-items: center;
  width: 10%;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-avatar img {
  width: 30px;
  height: 30px;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-title {
  width: 70%;
  display: flex;
  align-items: center;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-title a {
  margin: 0em;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-date {
  width: 20%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-reports .bptk-table-row .bptk-date p {
  margin: 0em;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-blocked.striped > :nth-child(2n+1) {
  background-color: #f9f9f9;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-blocked .bptk-table-row {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-blocked .bptk-table-row .bptk-avatar {
  display: flex;
  align-items: center;
  width: 10%;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-blocked .bptk-table-row .bptk-avatar img {
  width: 50px;
  height: 50px;
}
.bptk-box.bptk-box-minor .bptk-box-inner .bptk-table-blocked .bptk-table-row .bptk-counts span {
  color: red;
  font-size: 120%;
}
.bptk-box.bptk-box-minor th {
  display: none;
}
.bptk-box.bptk-box-minor td {
  padding: 0px;
}
.bptk-box.bptk-box-minor textarea {
  width: 100%;
}

/* Style the notice dismiss button */
.bptk-notice {
  position: relative;
  padding-right: 30px;
}

.bptk-notice-dismiss {
  position: absolute;
  top: 0;
  right: 1px;
  border: none;
  margin: 0;
  padding: 9px;
  background: 0 0;
  color: #72777c;
  cursor: pointer;
}
.bptk-notice-dismiss:before {
  background: 0 0;
  color: #72777c;
  content: "\f153";
  display: block;
  font: normal 16px/20px dashicons;
  speak: none;
  height: 20px;
  text-align: center;
  width: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bptk-blank-slate {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}
.bptk-blank-slate .bptk-blank-slate-image {
  display: block;
  height: 80px !important;
  margin: 0 auto 10px;
  width: auto;
}
.bptk-blank-slate .bptk-blank-slate-heading {
  margin: 0 0 10px;
}
.bptk-blank-slate .bptk-blank-slate-cta {
  display: inline-block;
  font-size: 1.2em;
  height: auto;
  margin: 0 0 10px;
  padding: 0.75em 1.5em;
}
.bptk-blank-slate .bptk-blank-slate-help {
  color: #666;
  font-style: italic;
}

.bptk-docs-link {
  text-align: right;
  margin-right: 15px;
}
.bptk-docs-link a {
  color: #606060;
  text-decoration: none;
  font-style: italic;
}
.bptk-docs-link a span {
  font-style: normal;
}

.bptk-box .bptk-field-wrap select {
  min-width: 200px;
}
.bptk-box .bptk-promo-message {
  color: red;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}
.bptk-box .bptk-promo-message:hover {
  text-decoration: underline;
}
.bptk-box .group .form-table {
  margin-top: 0px;
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}
.bptk-box .group .form-table tbody tr {
  padding: 1em 20px 1em 162px;
  margin: 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-box .group .form-table tbody tr {
    padding: 10px;
  }
}
.bptk-box .group .form-table tbody tr ul {
  margin: 0;
}
.bptk-box .group .form-table tbody tr th {
  width: 120px;
  padding: 10px 40px 10px 20px;
}
.bptk-box .group .form-table tbody tr th label {
  font-weight: 400;
}
.bptk-box .group .form-table tbody tr .bptk-field-description {
  color: #aaa;
  font-size: 12px;
  line-height: 18px;
  display: block;
  padding-top: 10px;
  font-style: italic;
}
.bptk-box .group .form-table tbody tr > span.bptk-field-label {
  float: left;
  width: 135px;
  padding: 0;
  margin: 2px 0 0 -150px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-box .group .form-table tbody tr > span.bptk-field-label {
    display: block;
    float: none;
    margin: 0 0 10px;
    font-size: 14px;
    width: 100%;
  }
}
.bptk-box .group .form-table .bptk-radio-wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}
.bptk-box .group .form-table .bptk-radio-wrapper input:checked ~ .checkmark {
  background-color: #2196F3;
}
.bptk-box .group .form-table .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.bptk-box .group .form-table .bptk-radio-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.bptk-box .group .form-table .bptk-radio-wrapper .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
@media (min-width: 782px) {
  .bptk-box .group .form-table .bptk-radio-wrapper .checkmark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
  }
}

#configure-bptk .inside {
  margin: 0;
  padding: 0;
}

.bptk-metabox-panel-wrap {
  background: #fff;
  overflow: hidden;
}

.bptk-metabox-tabs {
  margin: 0;
  max-width: 170px;
  float: left;
  line-height: 1em;
  padding: 0 0 10px;
  position: relative;
  background-color: #fafafa;
  border-right: 1px solid #eee;
  box-sizing: border-box;
}
.bptk-metabox-tabs:after {
  content: "";
  display: block;
  width: 100%;
  height: 9999em;
  position: absolute;
  bottom: -9999em;
  left: 0;
  background-color: #fafafa;
  border-right: 1px solid #eee;
}
.bptk-metabox-tabs li {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
.bptk-metabox-tabs li .bptk-icon svg {
  vertical-align: middle;
  margin-right: 10px;
}
.bptk-metabox-tabs li .bptk-icon svg path, .bptk-metabox-tabs li .bptk-icon svg rect, .bptk-metabox-tabs li .bptk-icon svg line {
  fill: #f6a500;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox-tabs li .bptk-icon svg {
    margin-right: 0px;
  }
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox-tabs li .bptk-icon:before {
    margin: 0;
  }
}
.bptk-metabox-tabs li a {
  margin: 0;
  padding: 10px;
  display: block;
  box-shadow: none;
  text-decoration: none;
  line-height: 20px !important;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox-tabs li a {
    text-align: center;
  }
  .bptk-metabox-tabs li a:before {
    margin-right: 0;
    font-size: 15px;
  }
}
.bptk-metabox-tabs li a span.bptk-label {
  width: 114px;
  display: inline-block;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox-tabs li a span.bptk-label {
    display: none;
  }
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox-tabs {
    min-width: 40px;
  }
}

.bptk-metabox {
  padding-left: 170px;
}
.bptk-metabox .bptk-metabox-header {
  padding: 0px 20px;
}
@media (max-width: 782px) {
  .bptk-metabox .bptk-metabox-header {
    padding: 0px 10px;
  }
}
.bptk-metabox .form-table {
  clear: none;
  margin-top: 0px;
}
.bptk-metabox .form-table th {
  display: none;
}
.bptk-metabox.bptk-no-tabs {
  padding-left: 0px;
}
.bptk-metabox p.submit {
  margin-left: 170px;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox p.submit {
    margin-left: 10px;
  }
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox {
    padding-left: 40px;
  }
}
.bptk-metabox label span.bptk-pro-text {
  color: #f6a500;
  font-style: italic;
  font-weight: bold;
}
.bptk-metabox .bptk-inline-radio-fields li {
  display: inline-block;
  margin-right: 15px;
}
.bptk-metabox .bptk-textarea {
  width: 100%;
}
.bptk-metabox #_bptk_member_reported, .bptk-metabox #_bptk_reported_by {
  text-align: center;
}
.bptk-metabox .bptk-userid-input-label {
  margin-right: 10px;
  vertical-align: middle;
}
.bptk-metabox .bptk-userid-input-label img {
  vertical-align: middle;
  margin-right: 10px;
  width: 75px;
  height: auto;
}
.bptk-metabox .bptk-userid-input-label .bptk-userid-input-label-username {
  font-weight: bold;
}
.bptk-metabox .bptk-radios-bulk {
  display: block;
}
@media (min-width: 992px) {
  .bptk-metabox .bptk-radios-bulk {
    display: grid;
    grid-template-columns: auto;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 15px;
  }
}
.bptk-metabox .bptk-field-wrap {
  padding: 1em 20px 1em 162px;
  margin: 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox .bptk-field-wrap {
    padding: 10px;
  }
}
.bptk-metabox .bptk-field-wrap ul {
  margin: 0;
}
.bptk-metabox .bptk-field-wrap .bptk-field-description {
  color: #aaa;
  font-size: 12px;
  line-height: 18px;
  display: block;
  padding-top: 10px;
  font-style: italic;
}
.bptk-metabox .bptk-field-wrap > span.bptk-field-label {
  float: left;
  width: 135px;
  padding: 0;
  margin: 2px 0 0 -150px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 550px), only screen and (min-width: 851px) and (max-width: 1025px) {
  .bptk-metabox .bptk-field-wrap > span.bptk-field-label {
    display: block;
    float: none;
    margin: 0 0 10px;
    font-size: 14px;
    width: 100%;
  }
}
.bptk-metabox .bptk-field-wrap img.bptk-image-disabled {
  margin: 60px 20px 40px;
  max-width: 90%;
}
.bptk-metabox .bptk-field-wrap .bptk-money-symbol, .bptk-metabox .bptk-field-wrap .bptk-percent-symbol {
  border: 1px solid #ddd;
  border-right-color: rgb(221, 221, 221);
  border-right-style: solid;
  border-right-width: 1px;
  background: #fcfcfc;
  margin: 0;
  margin-right: 0px;
  font-size: 14px;
  padding: 5px 8px;
}
.bptk-metabox .bptk-field-wrap .bptk-woocommerce {
  width: 200px;
}
.bptk-metabox .bptk-field-wrap .bptk-money-symbol-before {
  border-right: 0;
}
.bptk-metabox .bptk-field-wrap .bptk-percent-field, .bptk-metabox .bptk-field-wrap .bptk-money-field, .bptk-metabox .bptk-field-wrap .bptk-custom-field {
  width: 75px;
  margin-right: 0;
  margin-left: 0;
}
.bptk-metabox .bptk-field-wrap .bptk-field-custom {
  width: 155px !important;
}
.bptk-metabox .bptk-field-wrap input.bptk-text_small {
  width: 100px !important;
}
.bptk-metabox .bptk-field-wrap input.bptk-text_medium {
  width: 300px !important;
}
.bptk-metabox .bptk-field-wrap input[type=email], .bptk-metabox .bptk-field-wrap input[type=text], .bptk-metabox .bptk-field-wrap input[type=number] {
  padding: 5px;
  height: 31px;
}
.bptk-metabox .bptk-field-wrap input[type=number]::-webkit-inner-spin-button,
.bptk-metabox .bptk-field-wrap input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bptk-metabox .bptk-field-wrap input[type=number] {
  -moz-appearance: textfield;
}
.bptk-metabox .bptk-field-wrap .bptk-image-thumb {
  position: relative;
  margin-top: 20px;
}
.bptk-metabox .bptk-field-wrap .bptk-image-thumb img {
  max-width: 250px;
  border: 4px solid #fff;
}
.bptk-metabox .bptk-field-wrap .bptk-image-thumb span.bptk-delete-image-thumb {
  position: absolute;
  background: red;
  color: #fff;
  border-radius: 30px;
  left: -10px;
  top: -10px;
  cursor: pointer;
}
.bptk-metabox .bptk-image-radio-fields {
  /* PRO version only */
}
.bptk-metabox .bptk-image-radio-fields label > input {
  /* HIDE RADIO */
  visibility: hidden;
  /* Makes input not-clickable */
  position: absolute;
  /* Remove input from document flow */
}
.bptk-metabox .bptk-image-radio-fields label > input + img {
  /* IMAGE STYLES */
  cursor: pointer;
  border: 5px solid transparent;
}
.bptk-metabox .bptk-image-radio-fields label > input:checked + img {
  /* (RADIO CHECKED) IMAGE STYLES */
  border: 5px solid #f6a500;
}
.bptk-metabox .bptk-image-radio-fields label.readonly {
  cursor: not-allowed;
  border: 2px solid transparent;
}
.bptk-metabox .bptk-repeatable-field-section {
  padding: 10px;
  background: #f5f5f5;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-repeatable-fields-section-wrapper {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-template {
  display: none;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-row {
  border-bottom: 15px solid #f5f5f5;
  background-color: #fff;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-column {
  padding: 0;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-row-head {
  border-bottom: 1px solid #eee;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-row-head h2 {
  text-align: left !important;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-row-head h2 .bptk-milestone-id {
  color: #aaa;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px;
  font-style: italic;
  display: none;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-remove {
  float: right;
  line-height: 34px;
  font-size: 21px;
  margin-right: 5px;
  color: #72777c;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-remove:before {
  cursor: pointer;
  content: "\f182";
  display: inline-block;
  font: normal 20px/1 dashicons;
  text-decoration: none !important;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-remove:hover {
  color: red;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-add-repeater-field-section-row-wrap {
  background-color: #f5f5f5;
}
.bptk-metabox .bptk-repeatable-field-section .bptk-add-repeater-field-section-row {
  margin: 5px;
}
.bptk-metabox .bptk-field-wrap:last-child {
  border-bottom: 1px solid #eee;
}
.bptk-metabox .bptk-milestones-teaser {
  padding: 10px;
}
.bptk-metabox .bptk-milestones-teaser h1 span {
  color: #f6a500;
}
.bptk-metabox .bptk-milestones-teaser h2 {
  padding-left: 0px;
  font-weight: bold;
}
.bptk-metabox .bptk-milestones-teaser h2 span {
  color: greenyellow;
}
.bptk-metabox .bptk-milestones-teaser ul {
  list-style: none;
}
.bptk-metabox .bptk-milestones-teaser ul li {
  text-indent: -20px;
  padding-left: 20px;
}
.bptk-metabox .bptk-milestones-teaser ul li:before {
  content: "+";
  color: #f6a500;
  margin-right: 5px;
  font-weight: bold;
  font-size: 20px;
}
.bptk-metabox .bptk-milestones-teaser ul li img {
  max-width: 90%;
  display: block;
}

#report-notes .inside {
  margin: 0;
  padding: 0;
}
#report-notes .inside ul.report_notes {
  padding: 2px 0 0;
}
#report-notes .inside ul.report_notes li {
  padding: 0 10px;
}
#report-notes .inside ul.report_notes li .note_content {
  padding: 10px;
  background: #efefef;
  position: relative;
}
#report-notes .inside ul.report_notes li .note_content p {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}
#report-notes .inside ul.report_notes li .note_content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #efefef transparent;
}
#report-notes .inside ul.report_notes li .meta {
  padding: 10px;
  color: #999;
  margin: 0;
  font-size: 11px;
}
#report-notes .inside ul.report_notes li .meta .exact-date {
  border-bottom: 1px dotted #999;
}
#report-notes .inside ul.report_notes li .meta a.delete_note {
  color: #a00;
}
#report-notes .inside ul.report_notes li.reporter-note .note_content {
  background: #a7cedc;
}
#report-notes .inside ul.report_notes li.reporter-note .note_content:after {
  border-color: #a7cedc transparent;
}
#report-notes .inside ul.report_notes li.reported-note .note_content {
  background: #DCB5A7;
}
#report-notes .inside ul.report_notes li.reported-note .note_content:after {
  border-color: #DCB5A7 transparent;
}
#report-notes .inside ul.report_notes li.system-note .note_content {
  background: #e1cae6;
}
#report-notes .inside ul.report_notes li.system-note .note_content:after {
  border-color: #e1cae6 transparent;
}
#report-notes .inside .add_note:not(button) {
  border-top: 1px solid #ddd;
  padding: 10px 10px 0;
}
#report-notes .inside .add_note #report_note {
  width: 100%;
  height: 50px;
}
#report-notes .inside .add_note button {
  margin: 1px;
  vertical-align: top;
}

.postbox .bptk-help-tip {
  margin: 0 0 0 9px;
}

.bptk-help-tip {
  color: #666;
  display: inline-block;
  font-size: 1.1em;
  font-style: normal;
  height: 16px;
  line-height: 16px;
  position: relative;
  vertical-align: middle;
  width: 16px;
}
.bptk-help-tip:after {
  font-family: Dashicons;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  content: "\f223";
  cursor: help;
}

.advert {
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid lightgray;
  -webkit-box-shadow: 5px 5px 5px lightslategray;
  box-shadow: 5px 5px 5px lightslategray;
}

.advert li:before {
  content: "+";
  padding-right: 8px;
  color: green;
}

.misc-pub-assign-report:before {
  font: normal 20px/1 dashicons;
  speak: none;
  display: inline-block;
  margin-left: -1px;
  padding-right: 3px;
  vertical-align: top;
  content: "\f484";
  color: #82878c;
}
.misc-pub-assign-report #bptk-report-assignment {
  display: block;
  margin: 10px 27px;
  width: 100%;
  width: -moz-available;
  /* For Mozzila */
  width: -webkit-fill-available;
  /* For Chrome */
  width: stretch;
  /* Unprefixed */
}

table.bsr-1_page_bp-toolkit-moderation-queue .column-action .unmoderate a {
  color: darkgreen;
}

.bsr-1_page_bp-toolkit-report .bptk_admin {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bsr-1_page_bp-toolkit-report .bptk_admin .bptk-box {
  flex: 1;
}
@media (min-width: 782px) {
  .bsr-1_page_bp-toolkit-report .bptk_admin {
    flex-direction: row;
  }
}
.bsr-1_page_bp-toolkit-report .bptk_admin .preapproval-teaser {
  text-align: center;
}
@media (min-width: 782px) {
  .bsr-1_page_bp-toolkit-report .bptk_admin .preapproval-teaser {
    max-width: 350px;
  }
}
.bsr-1_page_bp-toolkit-report .bptk_admin .preapproval-teaser .preapproval-teaser-heading {
  padding: 5px;
}
.bsr-1_page_bp-toolkit-report .bptk_admin .preapproval-teaser img {
  max-width: 100%;
}

/*# sourceMappingURL=bp-toolkit-admin.css.map */
