#pomgr-sortable {
  list-style: none;
  max-width: 500px;
}
#pomgr-sortable li {
  margin: 5px 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: move;
}
.pomgr-order-num {
  font-weight: bold;
  color: #555;
  margin-right: 5px;
}
#pomgr-feedback {
  font-weight: bold;
  margin: 10px 0;
  color: #008000;
  display: none;
}
.pomgr-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top: 2px solid #007cba;
  border-radius: 50%;
  animation: pomgr-spin 0.6s linear infinite;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pomgr-spin {
  to {
    transform: rotate(360deg);
  }
}

.pomgr-loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  margin-inline: 8px;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  position: relative;
  animation: rotation 1s linear infinite;
}

.pomgr-loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-bottom: 4px solid #ff3d00;
  border-left: 4px solid transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
