/* vim: set ts=2 sw=2 sts=2 et: */

/**
 * Copyright (c) 2001-present X-Cart Holdings LLC. All rights reserved.
 * See https://www.x-cart.com/license-agreement.html for license details.
 */

.rating {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-small);
  margin: calc(var(--rhythmic-unit) / 2) 0 0 0;
  color: var(--color-link);
  transition: var(--mode-transition) color;
  column-gap: var(--rhythmic-unit);
}

form:first-child > .rating {
  margin-top: 0;
}


@media (min-width: 480px) {
  .rating {
    justify-content: flex-start;
  }
}
