item .units {
  .unit {
    padding: .25rem;
    text-align: center;
    justify-content: center;
    .btu {
      font-size: 12px;
      color: #08e;
      font-weight: bold;
      &:after {
        content: " BTU's";
      }
      
      &:empty {
        display: none;
      }
    }
    .pint {
      font-size: 12px;
      color: #08e;
      font-weight: bold;
      
      &:empty {
        display: none;
      }
    }
    .v {
      font-size: 10px;
    }
    .type {
      font-size: 12px;
      font-weight: bold;
    }
    .price-stub {
      color: red;
      font-weight:bold;
      font-size: 18px;
      overflow-wrap: normal;
    }
  }
  .unit + .unit {
    border-top: 1px solid #ccc;
  }
} @media (min-width:800px) { item .units {
  .unit {
    text-align: left;
    gap: 8px;
    .btu {
      text-align: left;
    }
    .type {
      text-align: left;
    }
  }
}}

