
/* navbar styles  */
.navbar {
    padding: 2px 2rem 2px 5rem;
    /* background:#f2f2f2; */
    z-index: 1030;
}
.nav-item {
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
}
.user-img {
    height: 50px;
    display: inline;
}
.CoProfileImg {
    width: 120px;
    height: 120px;
    background: #505760;
    border-radius: 100%;
    object-fit: cover;
    background: #fff;
}

.user-div {
    display: inline-block;
    text-align: start;
}
.user-div h6 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: -6px;
    color: #fff;
}
.user-div span {
    font-size: 12px;
    color: #AEAEAE;
}
.search-bar {
    background-color: #292C31;
    padding: 5px 24px;
    color: #AEAEAE;
    font-weight: normal;
    display: flex;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);

}

.search-bar input {
    color: #fff;
    font-size: 14px;
    background: none;
    border: none;
    outline: none;
    margin-left: 10px;
    margin-right: 3px;
}

.Notfications {
    background-color: #292C31;
    padding: 5px 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
    color: #AEAEAE !important;

}

.dropdown-menu {
    background-color: #292C31;
}
.dropdown-menu li a {
    color: #AEAEAE;
}
.dropdown-menu li a:hover {
    background: #4C5158;
    color: #fff;
    cursor: pointer;
}

/* Aside Styles */
.Aside {
    width: 60px;
    height: 94vh;
    padding: 5px 10px;

    z-index: 1031 !important;
    left: 15px;
    top: 10px;

    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
    background-color: #292C31;
}

.Aside .aside-logo {
    margin-top: 1rem;
    border-radius: 10px;
}

.Aside .aside-menu {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.Aside .aside-menu li {
    margin-bottom: 0.8rem;
}

.aside-links {
    font-size: 20px;
    font-size: 20px;
    background: #4C5158;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
    padding: 4px 10px 7px;
    color: #292C31;
    border-radius: 10px;
    transition: 0.7s;
}
.aside-links:hover {
    background-color: #EF8519;
    color: #fff;
    transition: 0.3s;
}
.signout {
    background: #EB5757;
}
.signout:hover {
    background: #EB5757;
}

.aside-list {
    background: #393D42;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
    border-radius: 10px;
    padding: 7px;
}
.aside-list ul {
    list-style: none;
    padding: 10px 0;
    width: 100%;
}
.aside-list ul li {
    text-align: center;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aside-list ul li .aside-item {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #4C5158;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
}

/* alert styles */
.sysAlert {
    background: var(--alertBg);
    color: var(--alertText);
    border-color: var(--alertBorder);
    position: fixed;
    z-index: 50;
    right: -35rem;
    bottom: 1rem;
    padding: 13px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--alertShad);
    transition: 1s;
    /* display: none; */

}
.sysAlert:hover{
    transition: 0.5s;
    transform: rotateY(20deg);
    cursor:  pointer;
}
.aTag {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 100%;
    /* margin-left: -2.5rem; */
    /* margin-top: -2.2rem; */
}
.aTitle {
    font-size: 18px;
    text-transform: capitalize;
    background: #5b5b5b;
    padding: 8px 5px;
    border-radius: 10px;
    font-weight: bold;
}
.successTitle{
    background: var(--alertSuccess);
    color: #fff;
}
.dangerTitle{
    background: var(--alertDanger);
    color: #fff;
}
.aText {
    font-size: 14px;
}

.showAlert{
    right: 0.50rem;
    transition: 1s;
}
