.imperative-cell {
  min-width: 118px;
  text-align: center;
}

.imperative-star {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid #cbd7e4;
  border-radius: 50%;
  color: #8291a5;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease;
}

.imperative-star:hover {
  color: #e5a400;
  background: #fff9df;
  transform: scale(1.08);
}

.imperative-star.selected {
  border-color: #f0bf32;
  color: #f2ad00;
  background: #fff7d6;
  box-shadow: 0 0 0 3px rgba(242, 173, 0, .14);
}

.imperative-star:disabled {
  opacity: .55;
  cursor: wait;
}

