.notification {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 300;
  font-size: 17px;
  line-height: 22px;
  z-index: 1000;
  background: #ffffff;
  transition: 0.5s;
  width: 270px;
  height: 132px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  color: black;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 1;
  position: relative;
  padding: 0px 130px 0px 20px;
}
.notification p {
  margin-right: 15px;
}
.notification .close-notification-btn {
  transition: 0.5s;
  background: linear-gradient(white, white);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid white 1px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -20px;
  right: -25px;
}
.notification .fake-player-chip {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}

.notification-background-filter {
  z-index: -1;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.7s;
  background-color: white;
}

.notification:hover .notification-background-filter {
  transition: 0.7s;
  background-color: var(--staytuned-notification-background-filter);
}
.notification:hover:not(.close) {
  opacity: 1 !important;
}

.notification:hover.closeNotificationBtnHovered .notification-background-filter {
  background-color: white;
}

.close-notification-btn:hover {
  background: linear-gradient(var(--staytuned-notification-background-filter), var(--staytuned-notification-background-filter)), linear-gradient(white, white);
}