#wd-notif-container {
  position: fixed;
  bottom: calc(var(--vv-offset, 0px) + max(env(safe-area-inset-bottom, 0px), 8px) + 66px);
  left: 50%;
  transform: translate3d(-50%, 30px, 0);
  z-index: 1000;
  display: block;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, backdrop-filter;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease-in-out;
  width: auto;
  min-width: 260px;
  max-width: 85%;
  box-sizing: border-box;
  background-color: rgba(28, 28, 30, 0.45);
  background-image: none;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 0 0 0.5px rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
  overflow: hidden;
}

#wd-notif-container.show {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 600px) {
  #wd-notif-container {
    bottom: calc(var(--vv-offset, 0px) + max(env(safe-area-inset-bottom, 0px), 8px) + 70px);
  }
}

#wd-notif-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
}

#wd-notif-container .wd-line-one {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  color: #ddd;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

#wd-notif-container .wd-notif-icon {
  font-size: 14px;
}

#wd-notif-container .wd-highlight-id {
  color: #fff;
  font-weight: 700;
}

#wd-notif-container .wd-line-two {
  margin-top: 4px;
  color: #fff;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
