@CHARSET "UTF-8";

.edit-inline-processed {
  cursor: pointer;
}

.edit-inline-empty::after {
  content: "<set>";
  content: attr(placeholder);
  color: #aaa;
}
.edit-inline-active::after {
  content: "";
}

.edit-inline-save-button {
  position: absolute;
  bottom: 0;
  font-size: 26px;
  color: #fff;
  background-color: #52c752;
  padding: 5px 6px;
  width: 23px;
  border: 1px solid #0B9AC7;
  border-radius: 4px;
  text-align: center;
}

.edit-inline-error {
  color: #d00;
  background-color: #fff;
  padding: 0.25em;
  border: 1px solid #d00;
  border-radius: 2px;
  margin: 0.25em 0;
}

.co-overlay-mask {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
}


@keyframes progress {
  to {transform: rotate(360deg);}
}

.co-progress:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  content: '';
  box-sizing: border-box;
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-color: #2A7FA1;
  border-bottom-color: #2A7FA1;
  animation: progress 1s linear infinite;
  background-color: #fff;
}
