  /*! purgecss start ignore */

  #table-of-contents {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s ease-out;
  }

  #toc-btn:hover {
      cursor: pointer;
  }

  .tocitem.toc-h2 {
      border-radius: 5px;
      padding: 15px 7px 7px;
      font-size: 16px;
      font-weight: 600;
      line-height: 18px;
      text-decoration: none;
      display: block;
  }

  .tocitem.toc-h2:hover {
      color: var(--dark-blue-text);
      background-color: #f3f4f6;
  }

  .tocitem.toc-h3 {
      border-left: 1px solid var(--border-gray-delimitation);
      border-radius: 0 5px 5px 0;
      margin-left: 15px;
      padding: 7px 7px 7px 15px;
      font-size: 14px;
      line-height: 18px;
      text-decoration: none;
      display: block;
  }

  .tocitem.toc-h3:hover {
      color: var(--dark-blue-text);
      background-color: #f3f4f6;
  }

  /*! purgecss end ignore */