.sidebar, .new-sidebar {
    width: 345px;
    position: fixed;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    transition-timing-function: ease-out;
    z-index: 9999;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
}

.sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header-text {
    margin-left: 22px;
    font-size: 1rem;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.sidebar-inner-just-start {
    justify-content: start !important;
}

.sidebar-inner-fixed {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding-left: 54px;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
}

.sidebar-item:hover {
    background-color: #6ED183;
    color: #000000 !important;
    display: flex;
    align-items: center;
    padding-left: 54px;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
}

.sidebar-arrow {
    color: #6ED183;
    font-size: 0.6rem;
    margin-left: 12px;
}

.sidebar-item:hover .sidebar-arrow {
    color: #000000;
}

.sidemenu-button {
    /* position: fixed;
    left: 0;
    top: 0;
    right: 0; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.sidemenu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    transition-timing-function: ease-out;
    z-index: 9999;
    background-color:#1E2343;
    color: #ffffff;
    overflow-y: auto;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
}

.sidemenu-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


@media (max-width: 767.98px) {

    .sidebar {
        width: 100%;
        //transform:translateX(400px);
    }

}

@media (min-width: 768px) {

    .sidebar {
        width: 400px;       
    }

}

.new-sidebar {
    transform:translateX(400px);
}