.sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 260px;
        background: #0f0f0f;
        z-index: 100;
        transition: all 0.5s ease;
    }

    .sidebar.close {
        left: -260px;
    }

    .sidebar .logo-details {
        height: 60px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .sidebar .logo-details .sidebar-icon-close {
        font-size: 25px;
        color: #ffffff;
        height: 50px;
        min-width: 78px;
        text-align: right;
        line-height: 50px;
    }
    .sidebar .logo-details .logo_name {
        font-size: 22px;
        color: #ffffff;
        font-weight: 500;
    }

    .sidebar .sidebar-nav-links {
        height: 100%;
        padding: 0 0 150px 0;
        overflow: auto;
    }

    .sidebar .sidebar-nav-links::-webkit-scrollbar {
        display: none;
    }
    .sidebar .sidebar-nav-links li {
        position: relative;
        list-style: none;
        transition: all 0.4s ease;
    }
    .sidebar .sidebar-nav-links li:hover {
        background: #191919;
    }
    .sidebar .sidebar-nav-links li .icon-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 50px;
    }

    .sidebar .sidebar-nav-links li .icon-left {
        height: 50px;
        min-width: 55px;
        text-align: center;
        line-height: 50px;
        color: #ffffff;
        font-size: 17px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidebar .sidebar-nav-links li .icon-right {
        height: 50px;
        min-width: 70px;
        text-align: center;
        line-height: 50px;
        color: #ffffff;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidebar .sidebar-nav-links li .icon-link-text {
        display: flex;
        align-items: center;
        text-decoration: none;
        width: 100%;
    }
    .sidebar .sidebar-nav-links li .icon-link-text .link_name {
        font-size: 15px;
        font-weight: 400;
        color: #ffffff;
        transition: all 0.4s ease;
    }

    .sidebar .sidebar-nav-links li .sub-menu {
        padding: 6px 6px 14px 55px;
        margin-top: -10px;
        background: #191919;
        display: none;
    }

    .sidebar .sidebar-nav-links li .sub-menu a {
        color: #fff;
        font-size: 15px;
        padding: 5px 0;
        white-space: nowrap;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .home-section {
        position: relative;
        background: transparent;
        left: 0;
        border: 0;
    }
    .sidebar.close ~ .home-section {
        left: 0;
        width: 100%;
    }

    .sidebar .sidebar-nav-links li.showMenu i.arrow {
        transform: rotate(-180deg);
    }
    .sidebar .sidebar-nav-links li.showMenu .sub-menu {
        display: block;
    }