main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 1 auto;
    /* padding-bottom: 2em; */
    /* background: #f5f5f5; */
}

.mainLayout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.stdLayout {
    flex: 1 1 auto;
}

#ccMainSection {
    /* font-family: 'Roboto Flex'; */
    /* font-family: 'Noto Sans'; */
    font-family: 'Vazirmatn';
    /* font-family: 'Franklin Gothic Book'; */
    padding: 0;
    flex: 1 1 auto;
}

.stdLayout #ccMainSection {
    padding: 1rem 2rem 1rem .5rem;
}

h1#pageTitleHead {
    margin: 0;
    padding: .25em 0;
    border-bottom: 1px solid var(--cc-blue);
    color: var(--cc-darkBlue);
    /* text-align: center; */
    font-size: 1.75em;
}

.navbar {
    width: 17rem;
    min-width: 17rem;
    padding-bottom: .9rem;
    padding-bottom: 0;
    margin-top: 0 !important;
    flex: 0 0 17rem;
    margin-bottom: 5rem;
    /* background: #f5f5f5; */
    border-bottom-right-radius: 3rem;
}

.contentBody {
    flex: 1 1 auto;
    /* padding: 0 2em 1em 2.5em; */
    background: #fff;
    background: #f5f5f5;
}

    .contentBody .menuInseam {
        background: #fff;
        width: 100%;
        height: 3rem;
        display: block;
        position: relative;
        top: 0;
        left: 0;
        border-top-left-radius: 3rem;
        box-shadow: inset 2px 3px 4px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .contentBody .mainPgGrp {
        /* margin-left: 1rem; */
        background: #fff;
        /* border-top-left-radius: 3rem; */
        /* box-shadow: inset -5px 3px 4px rgba(0, 0, 0, 0.2); */
        padding: 0 1rem 3rem 4rem;
        background: #fff;
        /* border-top-left-radius: 3rem; */
        position: relative;
        z-index: 0;
    }

        .contentBody .mainPgGrp .mainPgContent {
            display: flex;
            flex-direction: row;
        }

/* RESPONSIVE */
/* Extra large desktops */
@media (max-width: 1400px) {
    .contentBody .mainPgGrp {
        padding: 0 1rem 3rem 2rem;
    }
}
/*ipadpro*/
@media (max-width: 1366px) {
    .contentBody .mainPgGrp .mainPgContent {
        flex-direction: column;
    }
}
/* Large desktops */
@media (max-width: 1200px) {
}
/* Low Res Desktop*/
@media (max-width: 1080px) {
    .contentBody .mainPgGrp {
        padding: 0 .75rem .75rem 1rem;
    }
}

/* Small desktops / large tablets */
@media (max-width: 992px) {
    .contentBody {
        width: 100%;
        padding: 0 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
}

/* Large phones */
@media (max-width: 576px) {
    .contentBody .menuInseam {
        display: none;
    }

/* Small phones */
@media (max-width: 480px) {
}

/* Very small devices */
@media (max-width: 360px) {
}
