Accordion

Accordion are useful when you want to hide and show large amount of content:

Accordion show/hide

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
        
<div class="p-2" id="checkoutAccordion">
  <!--accordion start-->
  <div class="accordion custom-accordion checkout-accordion">
    <div class="card active">
      <div class="card-header p-0" data-toggle="collapse" data-target="#checkout" aria-expanded="true" aria-controls="checkout">
        <div class="card-heading mr-auto">
          <h2>Accordion show/hide</h2>
        </div>
        <i class="icon-arrow-bottom" type="button" data-toggle="collapse" data-target="#checkout" aria-expanded="true" aria-controls="checkout"></i>
      </div>
      <div id="checkout" class="collapse show" aria-labelledby="checkout" data-parent="#checkoutAccordion">
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
        
      </div>
    </div>
  </div>
  <!--accordion end-->
</div>