.weblink {
  position: relative;
}

.notification-number {
  position: absolute;
  right: -8px;
  bottom: 18px;
  color: #fff;
  background: #00565a;
  font-size: 12px;
  width: 27px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .bell-icon:hover {
  border-bottom: none !important;
} */

#notifications-container {
  background: #fff;
  position: absolute;
  width: 260px;
  max-width: 260px;
  right: 0;
  padding: 1rem 0;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  margin-top: 9px;
}

/* 
  The same media (min-width: 1199px) that is in theme.css
  This setting has been duplicated to Favorite.css
*/
@media (max-width: 1199px) {
  /* line 191, G:/Agents/BA5135/_wap/17/s/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
  #notifications-container {
    position: relative;
    margin-bottom: 10px;
    border-radius: 0px;
    margin-top: 0px;
  }
  .notification-number {
    position: relative;
    right: -12px;
    bottom: 31px;
  }
}

@media (min-width: 1199px) {
  #notifications-container {
    position: absolute;
    margin-bottom: 0px;
    border-radius: 4px;
    margin-top: 9px;
  }
  .notification-number {
    position: absolute;
    right: -8px;
    bottom: 18px;
  }
}

.notifications-container {
  padding: 1em 1em 0 1em;
}

.notifications-container h3 {
  font-size: 18px;
}

.notifications-container li {
  list-style: none;
}

.notifications-container li:last-child {
  border: none;
}

.notifications-container p {
  font-size: 14px;
  margin: 0;
}

.notifications-container .see-details {
  text-decoration: none;
  color: var(--color-green);
  margin-bottom: .5em;
  display: block;
  text-align: center;
}

.notifications-container .subject {
  font-size: 14px;
  color: var(--color-green);
  display: flex;
  gap: 14px;
  align-items: center;
  word-break: break-all;
}

.notifications-container .subject span {
  flex: 1;
}

.notifications-container svg {
  width: 14px;
  height: 14px;
}

.notifications-container hr {
  margin: 1em 0;
}

.notifications-container .date {
  font-size: 12px;
  text-align: right;
  color: var(--color-grey);
}


.notifications-container .action {
  color: var(--color-grey);
}