/**
 * @file
 * Half-star rating widget for the Books "Your rating" Fivestar field.
 */

.itp-halfstar-active .fivestar-widget,
.itp-halfstar-active select.itp-halfstar-select {
  display: none !important;
}

.itp-hs {
  display: inline-flex;
  gap: 4px;
  line-height: 1;
}

.itp-hs-star {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 2.1em;
  line-height: 1;
  cursor: pointer;
}

.itp-hs-star .itp-hs-bg,
.itp-hs-star .itp-hs-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.itp-hs-star .itp-hs-bg {
  width: 100%;
  color: #b0b0b0;
}

.itp-hs-star .itp-hs-fill {
  width: 0;
  color: #f5a623;
  text-shadow: 0 0 1px rgba(180, 110, 0, 0.7);
}

.itp-hs-readout {
  align-self: center;
  margin-left: 0.5em;
  font-size: 1.1em;
  font-weight: 600;
  color: #555;
  min-width: 2em;
}
