/* Sidebar */

/* title */
.sitemap > ul > li {
    width: 100%;
}
.sitemap > ul > li > a {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.mobile_close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.2rem;
}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .page_content_top {
        padding: 0;
        background-color: transparent;
    }

    .sitemap_container {
        width: 95%;
        margin: 0 auto;
    }

    .sitemap_container .page_title {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 0.5rem 0 0.5rem 0.7rem;
        border-radius: 0;
        background-color: white;
        color: #484848;
        box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16), inset 0 3px 2px 0 rgba(0, 0, 0, 0.16);
        font-size: 1.2rem;
    }

    .sitemap {
        margin-top: 4rem;
    }

    /* title */
    .sitemap > ul > li {
        margin-top: 0.5rem;
    }
    .sitemap > ul > li > a {
        padding: 1rem;
        background-color: #ebebeb;
        color: #393939;
    }

    .sitemap > ul > li > .sub-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 5rem;
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* second title */
    .sitemap > ul > li > .sub-menu > li > a {
        display: inline-block;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        margin-top: 2rem;
        border: 1px solid white;
        text-align: center;
    }

    /* last layer */
    .sitemap > ul > li > .sub-menu .sub-menu li {
        margin-top: 1rem;
        text-align: center;
    }

    .sitemap .sub-menu a {
        font-size: 1.5rem;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .sitemap_container {
        width: 80%;
        margin: 0 auto;
    }

    .sitemap_content {
        margin-top: 2.5rem;
        padding: 1.25rem 1.5rem 3rem 1.5rem;
        box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.16);
        background-color: rgba(235, 235, 235, 0.97);
    }

    .sitemap {
        width: 90%;
        margin: 0 auto;
    }

    .sitemap a {
        color: #022857;
        font-size: 1.125rem;
        font-weight: 300;
    }
    .sitemap .sub-menu {
        padding: 0;
    }

    .sitemap > ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 1.5rem;
        grid-row-gap: 3rem;
    }

    /* title */
    .sitemap > ul > li > a {
        padding: 0.625rem;
        background-color: #afafaf;
        color: white;
    }

    /* items */
    .sitemap > ul > li > ul li > a {
        display: inline-block;
        width: 100%;
        padding: 0.625rem;
        box-sizing: border-box;
        margin-top: 1px;
        background-color: white;
    }

    /* items on the second layer or deeper */
    .sitemap > ul > li > ul ul li a {
        padding-left: 1.5rem;
    }

    .sitemap .others {
        margin-top: 3rem;
    }

}
