/*
 * BT Product Stars
 * Lightweight product rating CSS
 */

.btps {
  clear: both;
  margin: 0.75rem 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  max-width: 100%;
}

.btps-title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}

.btps-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.btps-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0.05rem 0.12rem;
  color: #c7c7c7;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.12s ease, transform 0.12s ease;
}

.btps-star:hover,
.btps-star:focus,
.btps-star.is-active,
.btps-star.is-hover {
  color: #f5a623;
}

.btps-star:hover,
.btps-star:focus {
  transform: translateY(-1px);
}

.btps-star:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.btps-summary {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #666;
}

.btps-message {
  min-height: 1.1rem;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #2f7d32;
}

.btps-message.is-error {
  color: #b00020;
}

.btps.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 767px) {
  .btps {
    margin: 0.6rem 0;
    padding: 0.6rem;
  }

  .btps-star {
    font-size: 1.55rem;
    padding: 0.05rem 0.1rem;
  }
}