/* ----------------------------------- */
/* Native Side Navigation like Custom  */
/* ----------------------------------- */
#page .pb-main {
    & .pb-navigation .navigation-section {
        
        &.style-3 {
            & .navigation-header {
                border-radius: 20px 20px 0 0;
            }

            & .navigation-list li.page-child {
                border-radius: 0;
            }
        }

        & .navigation-header {
            border-radius: 20px 20px 0 0;
            background-color: var(--primary-color);

            & h1.navigation-title {
                font-size: 24px;
                font-weight: 700;
                padding: 10px 10px 10px 22px;
            }
        }

        & .navigation-list {
            & li.page-child {
                background-color: #ffffff;
                border: 1px solid #e9e9e9;
                border-top: none;
                margin-top: -1px;
                padding: 11px 10px 10px 22px !important;

                & a.page-anchor {
                    color: var(--primary-color);
                    font-size: 16px;

                    &.indent {
                        font-size: 14px;
                        padding-left: 20px !important;

                        &::before {
                            left: 8px;
                            border-left-color: var(--primary-color);
                        }
                    }
                }

                & .page-collapse-icon svg {
                    width: 20px;
                    height: 20px;

                    & path {
                        stroke: var(--primary-color);
                        stroke-width: 0.1em;
                    }
                }

                &.active {
                    position: relative;

                    &::after {
                        position: absolute;
                        content: close-quote;
                        left: 1px;
                        top: 1px;
                        bottom: 0;
                        background: var(--primary-color);
                        width: 8px;
                        height: calc(100% - 2px);
                    }
                }

                &:hover {
                    background-color: #f3f3f3;
                }

                &:last-child {
                    border-radius: 0 0 20px 20px;
                }
            }
        }
    }
}
