.notification-section {
  /* display: none; */
  position: fixed;
  /* box-shadow: 12px 12px 96px var(--cardComponentshadowColor); */
  background-color: #ffcc33;
  border-radius: 5px;
  right: 20px;
  top: 90px;
  z-index: 2;
  /* width: 400px; */
  height: 50px;
  cursor: pointer;
}

.notification-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.notification-icon{
  width: 30px;
  height: 30px;
  margin: 10px;
  text-align: center;
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

#NI{background-image: url("../graphics/app-icons/outline_notifications_black_24dp.png");}

.notification-text {
  /* padding: 0px 10px; */
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  padding-right: 30px;
}

.notification-close {
  width: 16px;
  height: 16px;
  margin: 17px;
  text-align: center;
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

#NC{background-image: url("../graphics/app-icons/outline_close_black_24dp.png");}

@media screen and (max-width: 767px) {
  .notification-text {
    font-size: 11px;
    padding-right: 15px;
  }
}
