.single-post-in-series {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  cursor: move;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-post-in-series .single-post-title {
  display: inline-block;
  white-space: normal;
  word-break: break-all;
}

.bc-mns-post-status {
  padding: 5px;
  border-radius: 3px;
}
.bc-mns-post-status.publish {
  background-color: aqua;
}
.bc-mns-post-status.draft {
  background-color: rgb(170, 170, 170);
}

.bc-mns-loading {
  opacity: 0;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.bc-mns-loading div {
  position: absolute;
  border: 4px solid rgb(19, 6, 6);
  opacity: 1;
  border-radius: 50%;
  animation: bc-mns-loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.bc-mns-loading div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes bc-mns-loading {
  0% {
    top: 16px;
    left: 16px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 22px;
    height: 22px;
    opacity: 0;
  }
}

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