.weblink {
  position: relative;
}

.notification-number {
  position: absolute;
  left: -5px;
  bottom: 15px;
  color: #fff;
  /* background: #00565a; */
  background: var(--color-orange);
  font-size: 10px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
}

/* .bell-icon:hover {
  border-bottom: none !important;
} */

#notifications-container {
  background: #fff;
  position: absolute;
  width: 548px;
  max-width: 548px;
  right: 0;
  padding: 1rem 0;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  margin-top: 9px;
  background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NDgiIGhlaWdodD0iMjgzIiB2aWV3Qm94PSIwIDAgNTQ4IDI4MyIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0iTTU0Ny4yODkgMC41VjIyMS40NjVINTQwLjQ4MkM1MDQuMDAxIDIyMS40NjUgNDc3LjQ3MiAyMzYuNzk1IDQ1MS40MzIgMjUyLjA1MUM0MjUuMzc0IDI2Ny4zMTcgMzk5LjgxNiAyODIuNSAzNjUuMTQ3IDI4Mi41SDAuNVYwLjVINTQ3LjI4OVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IiNGM0YzRjMiLz4KPC9zdmc+);
  background-position: bottom;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  border-left: 28px solid var(--color-green);

  filter: drop-shadow(2px 1px 6px var(--color-grey));
}

#notifications-container .close {
  border: 0px;
  background: transparent;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  padding: 4px;
  text-align: center;
  height: 32px;
  width: 32px;
  box-sizing: unset;
  position: absolute;
  right: -20px;
  top: -20px;
}

#notifications-container .close svg:hover {

  fill: var(--color-light-grey);
}

/* 
  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: 0;
    margin-top: 9px;
  }

  .notification-number {
    position: absolute;
    bottom: 15px;
  }
}

.notifications-container {
  padding: 1em 1em 0 1em;
}

.notifications-container h3 {
  font-size: 18px;
}

.notifications-container li {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 50px;
  line-height: 40px;
  height: 55px;
  padding: 8px 0px;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.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-white);
  margin-bottom: .5em;
  display: block;
  text-align: center;
  background: var(--color-green);
  border-radius: 4px;
  line-height: 55px;
  width: 200px;
  height: 55px;
  font-size: 16px;
}

.notifications-container .see-details:hover {

  box-shadow: 3px 3px 4px #0ABB98;

}

.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: 16px;
  height: 19px;
}

.notifications-container hr {
  margin: 1em 0;
}

.notifications-container .date {
  font-size: 12px;
  text-align: left;
  color: var(--color-grey);
}


.notifications-container .action {
  color: var(--color-grey);
  font-size: 16px;
  color: #544F40;
}