/* Sidebar .......................... */


.sidebar {
    padding: 32px 15px;
    width: 80px;
    height: 100%;
    background-color: #E2001A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    height: 100%;
}

    .sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: #E2001A;
        border-radius: 0;
    }

    .sidebar::-webkit-scrollbar-track {
        background-color: #FFFFFF;
        border-radius: 0;
        padding: 4px;
    }

.sidebar-logo {
    width: 50px;
    height: 50px;
}

.main-menu {
    margin-top: 70px;
    justify-content: center;
}

.main-menu .nav-item {
    margin-bottom: 32px;
}

.main-menu .nav-item .nav-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu .nav-item .nav-link img {
    max-width: 28px;
    max-height: 28px;
}

.main-menu .nav-item .nav-link.active {
    background-color: #0F193C;
}

.bottom-menu {
    margin-top: auto;
    padding-top: 16px;
}

.bottom-menu .logoutbtn {
    border: none;
    background-color: transparent;
}

.bottom-menu button img {
    max-width: 32px;
    max-height: 32px;
}


.main {
    margin-left: 112px;
    padding-right: 32px;
}

.right-sidebar {
    padding: 29px 0 ;
    border-bottom: 1px solid #D5D7DA;
}

.right-sidebar .logo {
    width: 232px;
    height: 48px;
}

.right-sidebar .dropdown .btn {
    padding: 0;
    margin-left: 16px;
}

.right-sidebar .dropdown .btn .profile-img {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    background-color: #0F193C;
    margin-right: 12px;
}

.right-sidebar .dropdown .btn {
    color: #0F193C;
}

.right-sidebar .dropdown .btn h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #0F193C;
    margin-bottom: 2px;
}

.right-sidebar .dropdown .btn p {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #717680;
    margin-bottom: 0;
}

.right-sidebar .dropdown .btn img {
    width: 7px;
    height: 11px;
}

.right-sidebar .dropdown .arrow-down {
    height: 24px;
    width: 24px;
}

.dropdown-menu {
    transform: translate3d(50px, 58px, 0px) !important;
}

.right-sidebar .dropdown .dropdown-item {
    font-size: 14px;
    color: #181D27;
    font-weight: 400;
}

.right-sidebar .dropdown .dropdown-item:active {
    background-color: #0F193C;
    color: #FFFFFF;
}

@media (max-width:767px) {
    .sidebar {
        width: 65px;
        padding: 16px 5px;
    }

    .sidebar-logo {
        width: 46px;
        height: 58px;
    }

    .main-menu .nav-item .nav-link {
        width: 45px;
        height: 45px;
        border-radius: 8px;
    }

    .main-menu .nav-item .nav-link img {
        max-width: 28px;
        max-height: 28px;
    }

    .main-menu {
        margin-top: 40px;
    }

    .bottom-menu .logoutbtn {
        height: 45px;
        width: 45px;
    }

    .bottom-menu button img {
        max-width: 30px;
        max-height: 30px;
    }

    .main {
        margin-left: 85px;
        padding-right: 16px;
    }

    .right-sidebar h3 {
        font-size: 24px;
    }
}

@media (min-width:767px) and (max-width:991px) {

    .sidebar {
        padding: 24px 14px;
        width: 90px;
    }

}

@media (min-width:991px) and (max-width:1200px) {
    .sidebar {
        padding: 24px 14px;
        width: 95px;
    }

}


/* sidebar end ..............................  */