﻿body {
    overflow-x: hidden;
}

.sidebar {
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    /*padding-top: 56px;*/
    background-color: var(--primary-violet-color);
    color: white;
    width: 200px;
    transition: transform 0.3s ease-in-out;
    z-index: 9;
}

    .sidebar a {
        color: white;
        text-decoration: none;
    }

.d-content {
    margin-left: 200px;
    min-height: 100vh;
}

.nav-item i {
    width: 31px;
    height: 31px;
    aspect-ratio: 1/1;
}

.sidenav-header i {
    width: 144.578px;
    height: 60px;
    flex-shrink: 0;
}

.sidebar-cta-content {
    border-radius: 10px;
    background: var(--primary-azure-regular);
    background-image: url(/Portals/_default/Skins/XPI360/img/sidebar-cta-logo.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.navbar-collapse {
    display: block;
    height: calc(100vh - 325px);
    overflow-y: auto;
    overflow-x: hidden;
}

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

.avatar {
    width: 21px;
    height: 21px;
    padding-right: 0.105px;
    justify-content: center;
    align-items: center;
}

.avatar2 {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 58px;
    border: 1px solid var(--secondary-regular-color);
    background: var(--secondary-regular-color);
}

.d-content .navbar .icon-wh {
    width: 23px;
    height: 23px;
    aspect-ratio: 1/1;
}

.nav-item.active {
    background: #F6F6F6 !important;
    border: 1px solid var(--Gray84);
}

    .nav-item.active p {
        color: var(--primary-violet-color) !important;
    }

    .nav-item.active i {
        filter: brightness(1) invert(1);
    }

.nav-item:hover {
    background: #F6F6F6 !important;
    border: 1px solid var(--Gray84);
    /* border-top: 1px solid var(--Gray84);
    border-bottom: 1px solid var(--Gray84);*/
}
.nav-item:hover p {
    color: var(--primary-violet-color) !important;
}

.nav-item:hover i {
    filter: brightness(1) invert(1);
}


/*.nav-link:hover {
    border-left: 4px solid #00bcd4;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 1rem; 
}*/

.scroll-column {
    display: block;
    height: calc(100vh - 474px);
    overflow-y: auto;
    overflow-x: hidden;
}

    .scroll-column::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

        .sidebar.show {
            transform: translateX(0);
        }

    .d-content {
        margin-left: 0;
    }
}
