#notificationsbox {
  visibility:hidden;
  transform:translateY(10px);
  transition: transform 0.1s cubic-bezier(0.26, 0.82, 0.3, 0.84);
}
#notificationsbox:before {
  /* content:""; */
  display:block;
  position:absolute;
  border-width:30px;
  border-style:solid;
  border-color: transparent transparent #fafbfc transparent;
  top:-45px;
  left:50%;
  margin-left: 5px;
}
#notificationsbox.open {
  position:fixed;
  background: #fafbfc;
  width: 340px;
  height:calc(100% - 90px);
  top: 67px;
  z-index: 601;
  right: 10px;
  transform:translateY(0px);
  border-radius: 15px;
  visibility:visible;
  box-shadow: rgb(100 100 111 / 15%) -7px 7px 15px 0px;
}
.chat-full-view.scroll-fix #notificationsbox.open {
  right:26px
}
#notifications {
  height: 100%;
  width: 100%;
  transition:opacity 0.3s ease-in-out;
  overflow: hidden;
}
#notifications .top-control, #notifications .bottom-control {
  height: 45px;
  position:relative;
  display:flex;
  z-index:2;
  box-shadow: rgb(99 99 99 / 10%) 0px 2px 8px 0px;
}
#notifications .bottom-control {
  box-shadow: rgb(99 99 99 / 10%) 0px -2px 8px 0px;
}

#notifications .bottom-control {
  padding:10px;
  justify-content: flex-start;
  align-items:center;
  font-size:13px;
}
#notifications .bottom-control .fa {
  background:#e0e1e2;
  margin-right: 5px;
  width: 32px;
  height: 32px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color:#000;
  cursor:pointer;
}
#notifications .bottom-control .fa:hover {
  background:#bd82ff;
  color:#fff
}
#notifications .bottom-control span.fa:last-of-type {
  margin-right:20px
}
#notifications .top-control a {
  flex-grow:1;
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  color: #333;
  font-size: 12px;
  line-height: 100%;
  cursor:pointer;
  /* flex-direction: column; */
}
#notifications .top-control a:hover {
  color:#8847d1
}
#notifications .top-control a:last-child:hover {
  color:#f562e3
}
#notifications .top-control a.active {
  box-shadow: inset 0px -2px 0px 0px #bd82ff;
  color:#8847d1
}
#notifications .top-control a .fa {
  margin-right: 5px;
}

#notifications .top-control .fa-times:hover {
  color:#d95bca
}
#notifications #notifications-list {
  height: calc(100% - 90px);
  background: #fff;
  border-top: 1px solid rgba(240,241,242,0.3);
  border-bottom: 1px solid rgba(240,241,242,0.3);
  position: relative;
}
#notifications #notifications-list .simplebar-content {
  min-height:100%;
}
#notifications .no-unread{
  padding: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  font-style: italic;
  min-height: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#notifications .no-unread a {
  color: #8e8bf3;
  border-bottom:1px dashed;
}
#notifications .notification {
  padding: 35px 15px 20px 15px;
  width: 100%;
  color: #555;
  font-size: 13px;
  line-height: 140%;
  overflow: hidden;
  position:relative;
  transition:all 0.3s ease;
  border-bottom: 1px solid #f3f3f3;
  word-break: break-word;
  position: relative;
}
#notifications .notification:before {
  content:"";
  position:absolute;
  width: 55px;
  height: 55px;
  background: #f5edfd;
  border-radius:50%;
  right: -22px;
  top: -22px;
  transition:transform 0.2s cubic-bezier(0.55, -0.65, 0.57, 1.85);
}
#notifications .notification:hover:before {
  transform:scale(1.6);
}
#notifications .notification .notification-data{
  overflow: hidden;
  position: relative;
}
#notifications .notification:not(.open) .notification-data{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
#notifications .notification .notification-data p {
  margin-bottom:2px;
}
#notifications .notification.removed {
  height:0;
  margin:0;
  padding: 0 15px 0 80px;
}
#notifications .notification span.fa-chevron-down {
  position:absolute;
  z-index:10;
  bottom:3px;
  left:50%;
  margin-left: -8px;
  opacity:0;
  transition:all 0.3s ease-in-out;
  color: #80828c;
  cursor: pointer;
}
#notifications .notification:hover span.fa-chevron-down {
  opacity:1;
}
#notifications .notification.open span.fa-chevron-down {
  transform:rotate(180deg);
  opacity:1;
}
#notifications .notification:hover {
  color: #54536d;
}
#notifications .notification b {
  font-weight:600
}
#notifications .notification .ntf-image {
  position:absolute;
  right: 5px;
  top: 5px;
  width: 26px;
}

#notifications .notification .remove {
  position:absolute;
  right: 55px;
  top: 12px;
  opacity:0;
  color: #d95bca;
  cursor: pointer;
  transition:opacity 0.1s ease-out;
  font-size: 13px;
}
#notifications .notification:hover .remove {
  opacity:1;
}
#notifications .notification:hover .remove:hover {
  color: #ff71ee;
  text-decoration:underline
}
#notifications .notification .ntf-date {
  font-size: 13px;
  color: #777;
  position:absolute;
  left: 15px;
  top: 12px;
}
#notifications .notification .url {
  font-size: 13px;
  position:absolute;
  /*left: 105px;*/
  left: 11em;
  top: 12px;
  opacity:0;
  transition: opacity 0.1s ease-out;
}
#notifications .notification .url:hover {
  text-decoration:underline
}
#notifications .notification:hover .url {
  opacity:1
}
#friendslist .read-all, #friendslist .show-unread{
    position: absolute;
    height: 50px;
    bottom: 0;
    background: #fafaff;
    width: 100%;
    box-shadow: 0 0 8px rgba(48, 54, 74, 0.15);
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    color: #777;
    font-weight: 400;
}