
:root{
    /* --primary:#007bff; */
    --primary-soft: #f2f1f2;
    --light: #f8f9fa;
    --dark:#000000;
}

.nav-menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu-title{
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #949494;
}
.menu-item{
    transition: 0.5s;
}
.menu-item:hover{
    background-color: #e7e7e7;
    border-radius: 0.25rem;
}
.menu-item-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    border-radius: 0.25rem;
    padding: 10px;
}
.menu-item-link.active{
    background-color: var(--primary);
    color: var(--light) !important;
}
.menu-item-link:hover{
    text-decoration: none;
    color: var(--dark);
}
.menu-spacer{
    padding: 10px 0;
}

.content{
    background-color: var(--primary-soft);
    overflow: scroll;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) inset;
}  
.header{
    position: sticky;
    top: 0.2rem;
    z-index: 2000;
}

.ov-img{
    margin-left: -25px;
}
.sidebar{
    overflow: scroll;
}
.show-sidebar-btn{
    cursor: pointer;
}

.user-img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.status-card{
    border: none;
    transition: 0.3s;
}
.status-card:hover{
    transform: translateY(-3px);
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.status-card:active{
    transform: scale(1.03);
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.item-carousel{
    margin-top: -100px;
}
.item-carousel-card{
    border: none;
}
.item-card-img{
    height: 200px;
}

.sub-list tr{
    transition: 0.3s;
    cursor: pointer;
}
.sub-list tr:active{
    transform: scale(1.02);
}

.full-screen-card{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2005;
    overflow: scroll;
}
.pp-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.pp-card{
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    width: 484px;
    
}

.ph{
    text-decoration: none !important;
    color: #000000 !important;
}

.ph2{
    text-decoration: none !important;
}

.title{
    margin-right: 100px;
}

.table tr td{
    vertical-align: middle !important;
}

.front-panel-right-sidebar{
    position: sticky;
    top: 15px;
}

.post{
    transition: 0.5s;
}
.post:hover{
    transform: translateY(-5px);
    box-shadow: 0 0.325rem 0.75rem rgb(0 0 0 0.075) !important;
}

/* .card{
    border: none !important;
} */

@media screen and (max-width: 780px) {
    .sidebar{
        position: fixed;
        width: 300px;
        background-color: var(--primary-soft);
        z-index: 2001;
        display: block !important;
        margin-left: -100%;
    }
    .item-carousel-card{
        margin-top: 100px;
    }
}