﻿
.notification-absolute-wrapper{
    position: absolute;
    width: 50px;
    height: auto;
    background-color: rgba(0,0,0,0.5);
    right: 10px;
    top: 3px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;

}


.notification-absolute-wrapper a{
    text-decoration: none;
     display:flex;
    align-items: center;
    justify-content: center;
}

.notification-absolute-wrapper a svg{
    height: 25px;
    fill: #fff;
}

.notification-content-wrapper {
    width: 100%;
    height: 100%;
    padding: 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notification-container-wrapper{
    max-width: 960px;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.notification-item{
    width:100%;
    height: auto;
    border: 2px solid #DCDCDC;
    display: grid;
    grid-template-columns: 50px 1fr 55px;
    align-items: center;
    border-radius: 5px;
}

.user-img-wrapper{
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-img-wrapper img{
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
}

.notification-detail{
    width:100%;
    height:100%;
    display: grid;
    grid-template-rows:29px 1fr;
    align-items: center;
    padding: 10px;
}

.notification-username-date{
    display:flex;
    width:100%;
    height:100%;
    align-items: center;
    justify-content: space-between;
}

.notification-username-date h3{
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 0!important;
}

.notification-username-date small{
    font-size: 11px;
    color: #696969;
    opacity: .8;
}

.notification-item-content {
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #808080;
    overflow: hidden;
    padding: unset;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.notification-menu-wrapper{
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.notification-menu-wrapper svg{
    height: 20px;
    color: #808080;
}

.notification-detail .project-name {
    width: fit-content;
    background: #FFB606;
    padding: 3px;
    font-size: 10px;
    border-radius: 5px;
    margin-top: 5px;
}
.page-title-div {
    width: 100%;
    max-width: 960px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .notification-container-wrapper{
        gap: unset!important;
    }

    .notification-item {
        border: unset;
        border-bottom:2px solid #DCDCDC;
    }
}