<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.__toc-para {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.4;
}
.__toc-content-wrapper {
    height: 700px;
    overflow: auto;
    position: relative;
    padding: 2.25rem;
    position: relative;
    scroll-behavior: smooth;
    scroll-snap-align: center;
}
.__toc-table-wrapper {
    position: absolute;
    width: 250px;
    top: -2.25rem;
    height: 100%;
    right: 0;
    pointer-events: none;
    z-index: 99;
    overflow-x: clip;
}
.__component-frame .__toc-table-wrapper {
    right: -2.25rem;

}
.__toc-content {
    position: relative;
}
.__toc-content {
    /* pointer-events: all; */
}
.__toc-table-container {
    transition: all ease .3s;
    position: sticky;
    top: 50%;
    background-color: var(--white);
    box-shadow: -10px 4px 20px 0 rgba(0,0,0,.1);
    transform: translateX(250px) translateY(-50%);
    pointer-events: all;
}
.__toc-header {
    background-color: var(--moengage-blue);
    color: var(--white);
    padding: 1rem;
    display: flex;
    position: relative;
    border: 1px solid var(--white60);
}


.__toc-header .__close-btn {
    display: flex;
    position: relative; /* Add position relative to the parent */
    height: 16px;
    width: 16px;
    align-items: center;
    cursor: pointer;
}

.__toc-header .__close-btn::before,
.__toc-header .__close-btn::after {
    content: '';
    display: block; /* Change display to block */
    position: absolute; /* Position the pseudo-elements absolutely */
    transform-origin: center; /* Set the transform origin to center */
    height: 2px;
    width: 16px; /* Change width to 16px */
    background-color: var(--white);
    border-radius: 10px;
}

.__toc-header .__close-btn::before {
    transform: rotate(45deg); /* Rotate the pseudo-element 45 degrees clockwise */
}

.__toc-header .__close-btn::after {
    transform: rotate(-45deg); /* Rotate the pseudo-element 45 degrees counterclockwise */
}
.__toc-header .__open-btn .__line {
    display: flex;
    height: 1px;
    width: 8px;
    background-color: var(--white);
}
.__toc-header .__open-btn .__line:not(:last-child) {
    margin-bottom: 8px;
}
.__toc-header .__open-btn {
    width: 50px;
    background-color: var(--moengage-blue);
    border: 1px solid var(--white-60);
    border-right: none;
    position: absolute;
    left: -50px;
    cursor: pointer;
    top: 0;
    bottom: 0;
    transform-origin: right center;
    transition: all ease .3s;
    transition-delay: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.__toc-main-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 284px;
    overflow-y: auto;
}
.__toc-main-list .__toc-list-item {
    padding: 1rem;
    display: flex;
    text-decoration: none;
    color: var(--black);
    transition: all ease .3s;
}
.__toc-main-list .__toc-list-item:hover {
    background-color: var(--white-accent);
}
.__toc-main-list li:not(:last-of-type) .__toc-list-item {
    border-bottom: 1px solid var(--border-color);
}
.__toc-main-list li {
    position: relative;
    transition: all ease .3s;
}
.__toc-main-list li::after {
    content: '';
    display: flex;
    position: absolute;
    width: 8px;
    top: 0;
    bottom: 1px;
    right: 0;
    transform: translateX(-8px);
    background-color: #7B98E3;
    cursor: pointer;
    transform-origin: right center;
    transition: all ease .5s;
    /* transition-delay: .1s; */

}
.__toc-main-list li::before {
    content: '';
    display: flex;
    position: absolute;
    width: 8px;
    top: 0;
    bottom: 1px;
    left: 0;
    transform: translateX(-8px);
    background-color: #7B98E3;
    cursor: pointer;
    transform-origin: right center;
    transition: all ease .3s;
    transition-delay: .3s;
}
.__toc-main-list li:hover::before {
    background-color: var(--accent);
}
.__toc-main-list li:hover::after {
    background-color: var(--accent);
}
.__toc-table-wrapper.__is-active .__toc-table-container {
    transform: translateX(0px) translateY(-50%);
}
.__toc-table-wrapper.__is-active .__toc-header .__open-btn {
    transform: scaleX(0);
}
.__toc-table-wrapper.__is-active .__toc-main-list li::before {
    transform: translateX(-8px) scaleX(0);
    transition-delay: 0ms;
}
.__toc-table-wrapper.__is-active .__toc-main-list li::after {
    transform: translateX(0px);
}</pre></body></html>