Pricing starter

by hekevintran

HTML

<div id="main">
  <button id="alert">
    Alert
  </button>
  <button class="show-hide-button">
    Show
  </button>
  <button class="remove">
    Remove
  </button>
</div>

JavaScript

const serviceImgPath = '//static.rinse.com/assets/img/pricing/';
const itemImgPath = '//static.rinse.com/assets/img/pricing/row_icons/';
const data = [
	{
    id: 'dc',
    type: 'Dry Clean',
    img: 'dc_on_x2.png',
    heading: 'Dry Clean / Launder & Press',
    description: 'Skillfully cleaned and pressed. Returned on a hanger. We follow the care label to ensure the best results.',
    clause: 'No minimum order amount',
    items: [
      { item: 'All shirts',
        price: 2.50,
        img: 'shirt.png' },
      { item: 'Shorts',
        price: 6,
        img: 'shorts.png' },
      { item: 'Skirts',
        price: 6,
        img: 'skirt.png' },
      { item: 'Pants',
        price: 8,
        img: 'pants.png' },
      { item: 'Sweaters',
        price: 8,
        img: 'sweatshirt.png' },
      { item: 'Blouses',
        price: 8,
        img: 'blouse.png' },
      { item: 'Jacket/Blazer',
        price: 8,
        img: 'blazer.png' },
      { item: 'Vest',
        price: 8,
        img: 'vest.png' },
      { item: 'Dresses: Casual',
        price: 12,
        img: 'dress_casual.png' },
      { item: 'Dresses: Formal',
        price: 18,
        img: 'dress_formal.png' },
      { item: 'Coat',
        price: 16,
        img: 'trenchcoat.png' },
      { item: 'Suit',
        price: 16,
        img: 'suit.png' },
      { item: 'Scarf/Shawl',
        price: 6,
        img: 'scarf.png' },
      { item: 'Tie',
        price: 6,
        img: 'tie.png' },
      { item: 'Bathing Suit',
        price: 6,
        img: 'bikini.png' },
      { item: 'Comforters',
        price: 30,
        img: 'blanket.png' },
      { item: 'Blankets',
        price: 15,
        img: 'blanket.png' },
      { item: 'Sheets',
        price: 12,
        img: 'blanket.png' },
      { item: 'Pillowcases',
        price: 2,
        img: 'pillow.png' },
      { item: 'Tablecloths',
        price: 30,
        img: 'tablecloth.png' },
      { item: 'Napkins',
        price: 1,
        img:...