﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}*/

.sidebarMenu {
    position: fixed;
    right: 0px;
    height: 100%;
    width: 260px;
    background: #11101d;
    padding: 15px;
    z-index: 2000;
}

.logo {
    font-size: 25px;
    padding: 0 15px;
}

.sidebarMenu a {
    color: #fff;
    text-decoration: none;
}

.menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 40px;
    overflow-y: scroll;
}

    .menu-content::-webkit-scrollbar {
        display: none;
    }

.menu-items {
    height: 100%;
    width: 100%;
    list-style: none;
    transition: all 0.4s ease;
}

.submenu-active .menu-items {
    transform: translateX(-56%);
}

.menu-title {
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
}

.item a,
.submenu-item {
    padding: 16px;
    display: inline-block;
    width: 100%;
    border-radius: 12px;
}

.item i {
    font-size: 12px;
}

.item a:hover,
.submenu-item:hover,
.submenu .menu-title:hover {
    background: rgba(255, 255, 255, 0.1);
}

.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.submenu {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(-100% - 26px);
    height: calc(100% + 100vh);
    background: #11101d;
    display: none;
}

.show-submenu ~ .submenu {
    display: block;
}

.submenu .menu-title {
    border-radius: 12px;
    cursor: pointer;
}

    .submenu .menu-title i {
        margin-right: 10px;
    }


.menu-sub-dropdown-show {
    display: flex;
    z-index: 10000;
    position: absolute;
    left: 0;
    margin-left: 25px;
}

.dropdown-menu[data-bs-popper] {
    top: auto;
    left: 0;
    right: auto;
    margin-top: var(--bs-dropdown-spacer);
    margin-left: 25px;
}

.navbar, .main, .app-page {
    left: 0px;
    /*width: calc(100% - 260px);*/
    width: 100%;
    transition: all 0.5s ease;
    z-index: 1000;
}

.sidebarMenu {
    width: 260px;
    transition: all 0.5s ease;
}

.sidebarBtnClose {
    z-index: 10000;
    position: fixed;
    top: 20px;
    right: 0;
    margin-right: 240px;
    transition: all 0.5s ease;
}

.sidebarBtnCloseToggle {
    margin-right: 20px;
    transition: all 0.5s ease;
}

.sidebarMenu.close ~ .navbar,
.sidebarMenu.close ~ .main,
.sidebarMenu.close ~ .app-page {
    right: 0;
    width: 100%;
}

.sidebarClose {
    right: 0px;
    width: 0;
    padding: 0;
}

.sidebarClose {
    transition: all 0.5s ease;
}
    /*.sidebarMenu.close ~ #sidebarMenu {
    width: 0px;
    padding: 0px;
}
*/
    .navbar {
        position: fixed;
        color: #fff;
        padding: 15px 20px;
        font-size: 25px;
        background: #4070f4;
        cursor: pointer;
    }

.navbar #sidebar-close {
    cursor: pointer;
}

.main, .app-page {
    position: relative;
    display: flex;
    
    height: 100vh;
    z-index: 100;
    /*background: #e7f2fd;*/
}

    .main h1 {
        color: #11101d;
        font-size: 40px;
        text-align: center;
    }
