.notifications {
    width: 15rem;
    position: absolute;
    right: calc((100vw - 1125px)/2);
    top: 15px;
}

.notifications-child {
    height: 8.7rem;
    width: 100%;
    position:relative;
    overflow: hidden;
    
}

.notifications-child ul {
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:-17px;
    overflow-y: auto;
}

.notifications-child ul li {
    text-align: left;
    width: calc(100% - 9px);
    background-color: #2E2E61;
}

.notifications .notif-title {
    display: block;
    width:100%;
    font-size: 16px;
    margin-bottom: 5px;
    color: #b3547c;
}

.notifications .notif-content {
    display:block;
    width: 100%;
}

#notificationsList {
    display: none;
}

.a-not {
    display: block;
    padding: 9px 10px;
    width: 100%;
}

/*.notifications ul ul::-webkit-scrollbar {
   width: 15px;
   background-color: #2E2E61;
}

.notifications ul ul::-webkit-scrollbar-thumb {
    background-color: #1e1e40;
  }  
*/

@media (max-width:1199px) {
    .notifications {
        width: 13rem;
        right: calc((100vw - 925px)/2);
    }

    .notifications-child ul li {
         width: calc(100% - 17px);
    }
}

@media (max-width:991px) {
    .notifications {
        position: static;
        display: inline-block;
        width: 45%;
    }

    .notifications h6 {
        text-align: center;
    }

    .notifications .notif-content {
        color: #fff;
    }
    
    .notifications-child a {
        color: #fff;
    }

}

