#DLEPush.DLEPush {
  position: fixed !important;
  top: max(20px, env(safe-area-inset-top)) !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1000000 !important;
  width: min(380px, calc(100vw - 40px)) !important;
  max-width: calc(100vw - 40px) !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

#DLEPush .DLEPush-notification:empty {
  display: none !important;
}

#DLEPush .DLEPush-notification.wrapper {
  position: relative !important;
  inset: auto !important;
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  grid-template-rows: auto auto;
  column-gap: 12px;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 0 12px !important;
  padding: 16px !important;
  overflow: hidden;
  color: var(--color-text-primary);
  background: var(--color-bg-app);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.2);
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
  pointer-events: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#DLEPush .DLEPush-notification.wrapper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--color-primary);
  content: "";
}

#DLEPush .DLEPush-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  align-self: start;
  color: var(--color-primary-text);
  background: rgba(var(--color-primary-rgb), 0.11);
  border-radius: 12px;
}

#DLEPush .DLEPush-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

#DLEPush .DLEPush-header {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-width: 0;
  margin: 0;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

#DLEPush .DLEPush-header:empty {
  display: none;
}

#DLEPush .DLEPush-message {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

#DLEPush .DLEPush-header:empty + .DLEPush-message {
  grid-row: 1 / span 2;
  align-self: center;
}

#DLEPush .DLEPush-close {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  margin: -4px -4px 0 0 !important;
  padding: 0 !important;
  place-items: center;
  align-self: start;
  color: var(--color-text-secondary);
  background: transparent !important;
  border: 0 !important;
  border-radius: 8px;
  box-shadow: none !important;
  font: 700 22px/1 Arial, sans-serif;
  cursor: pointer;
  appearance: none;
}

#DLEPush .DLEPush-close:hover,
#DLEPush .DLEPush-close:focus-visible {
  color: var(--color-text-primary);
  background: var(--color-bg-muted) !important;
  outline: none;
}

#DLEPush .push-success::before {
  background: #16a34a;
}

#DLEPush .push-success .DLEPush-icon {
  color: #ffffff;
  background: #16a34a;
}

#DLEPush .push-warning::before {
  background: #e9a009;
}

#DLEPush .push-warning .DLEPush-icon {
  color: #b87800;
  background: rgba(233, 160, 9, 0.14);
}

#DLEPush .push-error::before {
  background: #dc2626;
}

#DLEPush .push-error .DLEPush-icon {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.11);
}

@media (max-width: 600px) {
  #DLEPush.DLEPush {
    top: max(12px, env(safe-area-inset-top)) !important;
    right: max(12px, env(safe-area-inset-right)) !important;
    left: max(12px, env(safe-area-inset-left)) !important;
    width: auto !important;
    max-width: none !important;
  }

  #DLEPush .DLEPush-notification.wrapper {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    column-gap: 10px;
    padding: 14px !important;
    border-radius: 14px;
  }

  #DLEPush .DLEPush-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #DLEPush .DLEPush-notification.wrapper {
    animation: none !important;
    transition: none !important;
  }
}

/* ---- {info} block (errors / success messages) ---- */
.mzk-infob {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 20px 24px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 162, 0, .22);
  border-left: 3px solid #ffa200;
  border-radius: 14px;
  background: #0d1b28;
  color: #d8e4ef;
  font-size: 14px;
  line-height: 1.55;
}

.mzk-infob:empty {
  display: none;
}

.mzk-infob__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 162, 0, .10);
  color: #ffa200;
}

.mzk-infob__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mzk-infob__content {
  min-width: 0;
}

.mzk-infob strong {
  display: block;
  margin-bottom: 3px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 800;
}

.mzk-infob p {
  margin: 0;
  color: #9db1c5;
}

@media (max-width: 479px) {
  .mzk-infob {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    margin: 16px;
    padding: 14px;
    border-radius: 12px;
  }

  .mzk-infob__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mzk-infob__icon svg {
    width: 20px;
    height: 20px;
  }
}
