.notifications_modal_list {
  width: 400px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.notifications_modal_list::-webkit-scrollbar {
  height: 10px;
  width: 8px;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
}
.notifications_modal_list::-webkit-scrollbar:hover {
  background: #c6c7ca;
}
.notifications_modal_list::-webkit-scrollbar-thumb {
  background: #777779;
  border-radius: 4px;
}
.notifications_modal_list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.notifications_modal_list .no_notifications {
  padding: 10px;
  text-align: center;
  color: #444;
  font-size: 14px;
}

.btn_notifications_set_all_as_read {
  width: 100%;
}

.notification_row {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  cursor: pointer;
}
.notification_row.not_read {
  background-color: #dae5ff;
}
.notification_row .avatar_layer {
  display: inline-block;
  vertical-align: top;
  width: 60px;
}
.notification_row .avatar_layer img {
  width: 50px;
  border-radius: 5px;
  cursor: pointer;
}
.notification_row .notification_data {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 60px);
  white-space: initial;
}
.notification_row .notification_data .text {
  font-size: 12px;
  color: #444;
  line-height: 14px;
  margin-bottom: 3px;
}
.notification_row .notification_data .text * {
  font-size: 12px;
}
.notification_row .notification_data .date {
  font-size: 11px;
  color: #888;
}
