﻿.notification-manager-notification-container div.label {
  display: none;
}
.notification-manager-notification-container .all-notifications {
  width: 450px;
}
.notification-manager-notification-container .all-notifications .upload-logs,
.notification-manager-notification-container .all-notifications .clear-notifications {
  cursor: pointer;
  float: right;
  margin-right: 10px;
  font-size: 16px;
}
.notification-manager-notification-container .all-notifications .alert {
  padding: 5px 25px 5px 5px;
  margin: 2px 2px;
  border-radius: initial;
  font-size: 12px;
}
.notification-manager-notification-container .all-notifications .divider {
  margin: 0px;
}
.notification-manager-notification-container .all-notifications .notification-wrapper.unread {
  box-shadow: 0px 0px 4px 4px #337AB740;
}
.notification-manager-notification-container .all-notifications .notification-wrapper.read {
  box-shadow: 0px 0px 4px 4px #33333340;
}
.notification-manager-notification-container #notifications-container {
  max-height: 450px;
  overflow: auto;
  padding: 0px 10px;
  font-size: 0.8em;
}
.notification-manager-notification-container #notifications-container .close {
  display: none;
}
.notification-manager-notification-container #notifications-container h5 {
  font-size: 16px;
}
.notification-manager-notification-container #unread-notifications {
  display: flex;
  flex-direction: column;
}
.notification-manager-notification-container #read-notifications {
  display: flex;
  flex-direction: column;
}
#notification-container {
  position: fixed;
  top: 50px;
  right: 20px;
  z-index: 9999;
  width: 600px;
  pointer-events: none;
}
#notification-container > * {
  pointer-events: auto;
  width: 100%;
  /* children fill container width */
}
.notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notification-icon {
  flex-shrink: 0;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.notification-icon img {
  width: 3em;
}
.notification-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.4;
}
.notification-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.notification-text {
  font-size: 14px;
}
.notification-text p {
  margin: 0px;
}
.notification-text a {
  padding: 0px !important;
  text-decoration: underline !important;
}
.notification-time {
  font-size: 12px;
  display: flex;
  justify-content: end;
}
.notification-wrapper .panel-body {
  position: relative;
  padding-bottom: 5px;
}
.notification-wrapper .close {
  top: 0;
  right: 0;
  padding: 4px 8px;
  margin: 0;
  z-index: 10;
  position: absolute;
}
.notification-wrapper .notification-dot {
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1976d2;
}
.notification-wrapper:hover .notification-dot {
  opacity: 1;
}
.notification-wrapper.unread .notification-dot {
  background-color: #007bff;
}
.notification-wrapper.read .notification-dot {
  background-color: #E5E5E5;
}
.all-notification-title {
  padding: 5px 10px 10px 10px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.all-notification-show-more {
  padding: 10px 10px 5px 10px;
  display: flex;
  justify-content: end;
}
#notification-empty {
  text-align: center;
}
#read-unread-divider {
  margin: 10px 0px !important;
}
.custom-notification-container {
  padding: 0px !important;
}
#show-more-notifications {
  color: #337AB7;
}