
#Notifications {
  height: 100%;
  z-index: 500;
}
#Notifications > div {
  height: calc(100% -  10px);
  background-color: white;
  margin: 5px 0;
  width: 0;
  overflow: hidden;
  transition: width 0.15s ease-in-out;
  display: flex;
  flex-direction: column;
}
#Notifications > div.Open {
  width: 250px;
}
#Notifications > div .Header {
  padding: 4px;
  background-color: #42678e;
  color: white;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
#Notifications > div .Header .Close {
  cursor: pointer;
}
#Notifications > div .CloseAll .Close::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
#Notifications > div .CloseAll .Close::after {
  content: "\ee09";
}
#Notifications > div .Notifications {
  overflow-y: auto;
  scrollbar-width: thin;
  overflow-x: hidden;
  min-width: 240px;
}
#Notifications > div .Notifications .Notification {
  margin: 5px;
  color: #0b335c;
  background-color: #F1F3F6;
  border-radius: 2px;
}
#Notifications > div .Notifications .Notification .Header {
  color: inherit;
  background-color: transparent;
  font-weight: bold;
}
#Notifications > div .Notifications .Notification .Header .Title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#Notifications > div .Notifications .Notification .Header .Close {
  display: none;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
#Notifications > div .Notifications .Notification .Header .Close::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
#Notifications > div .Notifications .Notification .Header .Close::after {
  content: "\eee4";
}
#Notifications > div .Notifications .Notification .Header .Close:hover {
  color: white;
  background-color: #ef8372;
}
#Notifications > div .Notifications .Notification:hover .Close {
  display: flex;
}
#Notifications > div .Notifications .Notification.Seen {
  background-color: rgba(239, 237, 237, 0.55);
  color: rgba(84, 84, 84, 0.85);
}
#Notifications > div .Notifications .Notification .Content {
  display: flex;
  flex-direction: column;
  padding: 5px;
}
#Notifications > div .Notifications .Notification .Content .Date {
  font-family: "SofiaPro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  align-self: end;
}
