@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.product-price {
  margin: 10px 0;
  display: flex;
  flex-direction: row; }
  @media (max-width: 1024px) {
    .product-price {
      margin-top: 15px;
      border-top: 2px solid #dddddd;
      border-bottom: 2px solid #dddddd;
      padding: 10px 0; } }

.item-price-item {
  display: flex;
  flex-direction: column;
  margin-right: 15px; }
  .item-price-item:nth-child(2) {
    color: #464646; }
    .item-price-item:nth-child(2) .price-value {
      text-decoration: line-through;
      font-size: 1.2em; }
  .item-price-item.user-price-closeout {
    color: #d10400; }
    .item-price-item.user-price-closeout + .item-price-item {
      color: #d10400; }
  .item-price-item .price-label {
    text-transform: uppercase;
    font-size: 0.9em;
    white-space: nowrap; }
  .item-price-item .price-value {
    font-size: 1.5em;
    font-weight: 500; }
