::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px #5e5d5d;*/
    background-color: #d5d3d3;
    /*border-radius: 5px;*/
}

::-webkit-scrollbar-thumb {
    /*border-radius: 5px;*/
    background-color: #938c8c;
    /* -webkit-box-shadow: inset 0 0 6px #47474775; */
}


.secs {
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.appbar {
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
    background-color: white;
    z-index: 99;
}

.card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 2px;
}

.sidebar {
    transition: all .2s ease;
    left: 100%;
}

.sidebar ul {
    list-style: none;
    padding-left: 0px;
}

.sidebar ul li {
    padding: 10px 16px;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 2px;
    margin-top: 20px;
    margin-bottom: 20px;
    user-select: none;
    border-left: 4px solid lightgray;
    display: flex;
    flex-direction: row;
}


.sidebar ul li:hover {
    background-color: rgba(78, 85, 91, 0.13);
}

@media (max-width: 767.98px) {
    .sidebar {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        background-color: white;
        position: fixed;
        top: 100px;
        height: calc(100vh - 90px);
        z-index: 2;
    }
}
