/* TABLE OF CONTENT STYLE */
@media screen {
    .toc-sub-item {margin-left:10px;}
        .toc-content {
            border-width: 1px;
            border-style: solid;
            display: flex;
            flex-direction: column;
            background-color: #e1ebf3;
        }
      
        .toc-content .toc-accordion-title {
            cursor: pointer;
            padding: 25px 35px 25px 25px;
            width: 100%;
            transition: all 0.4s;
            margin-bottom: 0;
            font-size: calc(26px + (37 - 30) * ((100vw - 320px) / (1920 - 320))) !important;
            line-height: calc(31px + (47 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
            color: var(--primary-palette-purple);
            font-family: 'Playfair-Display-Regular'!important;
        }
        .toc-content .toc-accordion-title:hover,
        .toc-content .toc-accordion-title.active {
            transition: all 0.4s;
        }
        .toc-content .toc-accordion-title svg {
            transform: rotate(180deg);
        }
        .toc-content .toc-accordion-title.active svg{
            transform: rotate(0deg);
        }
        .toc-content .toc-accordion-title svg {
            font-size: 25px;
        }
        .toc-list-wrapper {
            padding-left: 35px;
        }
        .toc-list-wrapper .toc-item:before {
            display: inline-block;
            vertical-align: middle;
        }
        .toc-list-wrapper .toc-item a,
        .toc-list-wrapper .toc-subitem {
            color: #212529;
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.4s;
            width: 85%;
            line-height: normal;
        }
        .toc-list-wrapper .toc-item,
        .toc-subitem {
            margin-bottom: 15px;
            position: relative;
        }
        .toc-subitem {
            display: block;
            position: relative;
            margin-left: 20px;
        }
        .toc-item::before {
            content: '';
            height: 6px;
            width: 6px;
            background-color: #df5d3d;
            position: absolute;
            left: -17px;
            border-radius: 50%;
            top: 15px;
        }
        .toc-subitem::before {
            content: '';
            height: 6px;
            width: 6px;
            background-color: #df5d3d;
            position: absolute;
            left: -17px;
            border-radius: 50%;
            top: 7px;
        }
        .toc-list-wrapper .toc-item a:hover,
        .toc-list-wrapper .toc-subitem:hover {
            transition: all 0.4s;
            color: #ecab2d;
        }
        .toc-content {
            margin-bottom: 25px;
        }
        .table .thead-dark th {
            background-color: #16254d;
            border-color: #16254d;
        }
    }

    @media (min-width: 768px) {
        .toc-content .toc-accordion-title {
            padding: 22px 35px 22px 25px;
            font-size: 25px;
        }
        .toc-list-wrapper {
            margin-top: 0px;
        }
        .toc-content {
            margin-bottom: 35px;
        }
        .toc-list-wrapper .toc-item a {
            width: auto;
        }
    }
.toc-main {
    margin-top: unset!important;
    /* padding-top: 15px!important; */
    flex: 1 1 100%;
  
}
/* Reset top-level counter */
.toc-content ul.toc-list-wrapper {
    counter-reset: item;
    padding-left: 50px;
  }
  
  /* Top-level list items */
  .toc-content ul.toc-list-wrapper > li {
    counter-increment: item;
    counter-reset: subitem; /* Reset sub-counter for each top-level item */
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    line-height: calc(24px + (22 - 24) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 7px;
    list-style-type: none;
    position: relative;
  }
  
  /* Top-level numbering: 1. 2. 3. */
  .toc-content ul.toc-list-wrapper > li > a::before {
    content: counter(item) ". ";
    position: absolute;
    left: -1.5em;
  }
  
  /* Sub-items (with class toc-sub-item) */
  .toc-content ul.toc-list-wrapper > li ul li.toc-sub-item {
    counter-increment: subitem;
    list-style: none;
    position: relative;
    padding-left: 10px;
	margin-top: 5px;
    padding-bottom:0px;
	font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    line-height: calc(24px + (22 - 24) * ((100vw - 320px) / (1920 - 320)));
  }
  
  /* Sub-item numbering: 1.1, 1.2, etc. */
  .toc-content ul.toc-list-wrapper > li ul li.toc-sub-item > a::before {
    content: counter(item) "." counter(subitem) ". ";
    position: absolute;
    left: -1.5em;
  }
  .practice-area-block ul li ul {
		padding-left: 18px;
        padding-top: 7px;
	}
.toc-content ul.toc-list-wrapper li a{color: var(--primary-palette-blue);font-weight: normal;}
.toc-content ul.toc-list-wrapper li a:hover{color:var(--primary-palette-purple);text-decoration: underline;}
.toc-accordion-title svg{width: 28px;height: 28px;}
