@media screen and (min-width: 1140px) {
    /* body {
        overflow: hidden;
    } */

    /* Main Side-Body */
    .main {
        box-sizing: border-box;
        width: 100%;
        display: grid;
        grid-template-columns: 19% 80%;
        justify-content: space-evenly;
        height: calc(100vh - 75px);
        overflow: hidden;
    }

    .side-body {
        width: 100%;
        margin: 0px auto;
        height: 100%;
        overflow-y: auto;
        padding-bottom: 50px;
    }

    .sidebodydiv {
        margin-top: 30px;
        padding: 0px 10px;
    }

    .sidebodyback {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 50px;
    }

    .backhead {
        display: flex;
        align-items: center;
        justify-content: start;
        column-gap: 10px;
        cursor: pointer;
    }

    .backhead h5 {
        font-size: 20px;
        font-weight: 600;
    }

    .backhead h6 {
        font-size: 15px;
        font-weight: 500;
        color: #9E9E9E;
    }

}

@media screen and (max-width: 1140px) {

    /* Main Side-Body */
    .main {
        width: 100%;
        margin: 0px auto 0px auto;
        display: block;
    }

    .side-body {
        width: 98%;
        margin: 0px auto;
    }

    .sidebodydiv {
        margin-top: 30px;
        padding: 0px 10px;
    }

    .sidebodyback {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .backhead {
        display: flex;
        align-items: center;
        justify-content: start;
        column-gap: 10px;
        cursor: pointer;
    }

    .backhead h5 {
        font-size: 20px;
        font-weight: 600;
    }

    .backhead h6 {
        font-size: 15px;
        font-weight: 500;
        color: #9E9E9E;
    }

}
