.navbar {
    z-index: 2;
    position: fixed;
    width: 100%;
}
.py-4 {
    padding-top: 5rem!important;
}
.body {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin: -1.6rem 0;
}
.side {
    background-color: #8e7557;
    width: 250px;
    height: calc(100vh - 55px);
    top: 0px;
    z-index: 1;
    text-align: center;
    padding-top: 80px;
    position: fixed;
    height: 100%;
    overflow-y: auto;
}

.side::-webkit-scrollbar{
    width: 8px;
}
.side::-webkit-scrollbar-track{
    background: none;
    border-left: none;
}
.side::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
}

.side-menu {
    position: -webkit-sticky;
    position: sticky;
}

.side-menu a {
    display: block;
    height: 80px;
    line-height: 80px;
    margin-bottom: 0;
    color: #ece8d9;
}

.side-menu a:hover {
    color: #8e7557;
    text-decoration: none;
    background-color: #ece8d9;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}
.main {
    padding: 55px 30px 30px;
    margin-left: 375px;
}

.side-smp {
    display: none;
}

@media screen and (max-width: 768px){
    .side {
        display: none;
    }
    .py-4 {
        padding-top: 5rem!important;
    }
    .body {
        display: block;
        padding: 0 15px;
    }
    .side-smp {
        display: block;
        background: none;
        top: 0px;
        z-index: 1;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space:nowrap;
    }
    .side-smp::-webkit-scrollbar{
        height: 5px;
    }
    .side-smp::-webkit-scrollbar-track{
        background: none;
        border-left: none;
    }
    .side-smp::-webkit-scrollbar-thumb{
        background: #ccc;
        border-radius: 10px;
    }
    
    .side-menu-smp {
        margin-top: 5px;
    }

    .side-menu-smp a {
        display: inline;
        height: 30px;
        line-height: 30px;
        color: #8e7557;
        margin: 0 10px;
    }
    
    .side-menu-smp a:hover {
        color: #8e7557;
        text-decoration: none;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -o-transition: 0.4s;
        -ms-transition: 0.4s;
        transition: 0.4s;
    }
    .main {
        padding: 30px 0;
        margin-left: auto;
    }
}

