.allArea > main .mainArea {
    height: unset !important;
}

.allArea > main {
    overflow-x: hidden;
    overflow-y: auto;
}
    .allArea > main .mainArea {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        zzzzzzzpadding-top: 0px !important;
        height: calc( 100% - 50px ) !important;
    }
        .allArea > main .mainArea .mainContainer {
            height: 100%;
        }
        .allArea > main .mainArea .mainContainer .helpArea {
            display: flex;
            flex-direction: row-reverse;
            justify-content: end;
            align-items: start;
            flex-wrap: wrap;
            gap: var(--Gap-xl);
            width: 100%;
            max-width: 1470px;
            height: 100%;
        }

.helpArea .tableOfContents {
    display: flex;
    flex-direction: column;
    width: 250px;
    gap: var(--Gap-xs);
}
    .helpArea .tableOfContents .linkItem {
        width: 100%;
        height: 32px;
        justify-content: end !important;
        padding: 0px var(--Padding-sm) 0px var(--Padding-md);
        color: var(--Text-Body-Primary);
        cursor: pointer;
    }
    .helpArea .tableOfContents .linkItem.selected, .helpArea .tableOfContents .linkItem:hover {
        color: var(--Colors-Primary-500);
    }
.helpArea .helps {
    overflow: auto;
    width: calc( 100% - 250px - var(--Gap-xl) );
    height: 100%;
}
.helpArea .helps .contentArea {
    position: relative;
    transition: height 300ms ease;
}
.helpArea .helps .helpContent {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 43px;
    direction: rtl;


    opacity: 0;
    visibility: hidden;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;

    pointer-events: none;

    z-index: 0;
}
.helpArea .helps .helpContent.selected {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.helpArea .helps .helpContent img {
    width: 100%;
    max-width: 400px;
}
.helpArea .helps .bottomText {
    margin: var(--Margin-lg) 0px;
    color: var(--Text-Body-Secondary);
}
@media (max-width: 959px) {
     .allArea > main .topAreaHeader {
        width: 100%;
    }
     .allArea > main .topAreaHeader .titleSection{
        display: none;
    }
    .allArea > main .topAreaHeader .rightSection {
        padding-right: var(--Padding-sm);
    }
    .allArea > main .topAreaHeader .leftSection {
        padding-left: var(--Padding-sm);
    }

    .allArea > main .mainArea .mainContainer .helpArea {
        flex-direction: column !important;
        justify-content: start;
        align-items: end;
        flex-wrap: unset;
        gap: var(--Gap-xl);
    }
    .helpArea .helps {
        overflow: unset;
        width: 100%;
        height: unset;
    }
}
@media only screen and (min-width: 960px) {
    
    .mainContainer {
        max-width: unset !important;
     }

     .helpArea .helps .content img {
        flex: 0 0 400px;
    }

}
