
.nk-push-prompt,
.nk-push-prompt * {
  box-sizing: border-box;
}

.nk-push-prompt {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9990;
  width: min(710px, calc(100vw - 32px));
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .18);
  overflow: hidden;
}


body.admin-bar .nk-push-prompt {
  z-index: 9990;
}

.nk-push-prompt__content {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  align-items: start;
}

.nk-push-prompt__media {
  width: 92px;
  height: 92px;
  border-radius: 3px;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nk-push-prompt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nk-push-prompt__media-fallback {
  font-size: 34px;
  line-height: 1;
}

.nk-push-prompt__body {
  min-width: 0;
}

.nk-push-prompt__viewport {
  overflow: hidden;
  transition: height .24s ease;
}

.nk-push-prompt__track {
  display: flex;
  align-items: flex-start;
  width: 200%;
  transition: transform .24s ease;
  will-change: transform;
}

.nk-push-prompt[data-step="2"] .nk-push-prompt__track {
  transform: translateX(-50%);
}

.nk-push-prompt__slide {
  width: 50%;
  min-width: 50%;
  padding-right: 18px;
}

.nk-push-prompt__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  margin-bottom: 10px;
}

.nk-push-prompt__title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}

.nk-push-prompt__text {
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.nk-push-prompt__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.nk-push-prompt__actions--prefs {
  margin-top: 16px;
}

.nk-push-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  background: #31475d;
  color: #fff;
  box-shadow: 0 4px 10px rgba(49, 71, 93, .18);
}

.nk-push-btn:hover {
  transform: translateY(-1px);
  background: #24384c;
}

.nk-push-btn:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.nk-push-btn--ghost {
  background: transparent;
  color: #475569;
  border-color: transparent;
  box-shadow: none;
  padding-left: 8px;
  padding-right: 8px;
}

.nk-push-btn--ghost:hover {
  background: transparent;
  color: #1f2937;
}

.nk-push-toggle-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.nk-push-toggle-list--kraje {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 218px;
  overflow: auto;
  padding-right: 4px;
}

.nk-push-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #dbe3ec;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 3px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.nk-push-toggle.is-checked {
  background: #eef4fb;
  border-color: #9fb5ce;
}

.nk-push-toggle.is-disabled {
  opacity: .78;
  background: #f1f5f9;
  border-color: #e5e7eb;
}

.nk-push-toggle.is-disabled.is-checked {
  background: #f1f5f9;
  border-color: #e5e7eb;
}

.nk-push-toggle.is-disabled .nk-push-toggle__label {
  color: #64748b;
}

.nk-push-toggle.is-disabled .nk-push-toggle__ui input {
  cursor: pointer;
}

.nk-push-toggle.is-disabled .nk-push-toggle__switch,
.nk-push-toggle.is-disabled .nk-push-toggle__ui input:checked + .nk-push-toggle__switch {
  background: #d7dde6;
}

.nk-push-toggle__label {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.nk-push-toggle__ui {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
}

.nk-push-toggle__ui input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.nk-push-toggle__switch {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background .18s ease;
}

.nk-push-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .18);
  transition: transform .18s ease;
}

.nk-push-toggle__ui input:checked + .nk-push-toggle__switch {
  background: #31475d;
}

.nk-push-toggle__ui input:checked + .nk-push-toggle__switch::after {
  transform: translateX(18px);
}

.nk-push-toggle__ui input:disabled + .nk-push-toggle__switch {
  background: #d7dde6;
}

.nk-push-prompt__status {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #475569;
}

.nk-push-prompt__status.is-error {
  color: #b91c1c;
}

.nk-push-prompt__status.is-success {
  color: #15803d;
}

.nk-push-prompt__hint {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
}

.nk-push-prompt__hint.is-warning {
  color: #9a3412;
}

.nk-push-prompt__hint.is-error {
  color: #b91c1c;
}

@media (max-width: 760px) {
  .nk-push-prompt {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .nk-push-prompt__content {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .nk-push-prompt__media {
    width: 64px;
    height: 64px;
  }

  .nk-push-prompt__title {
    font-size: 17px;
  }

  .nk-push-prompt__slide {
    padding-right: 14px;
  }

  .nk-push-prompt__slide--intro {
    padding-right: 0;
  }

  .nk-push-toggle-list--kraje {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .nk-push-prompt__content {
    grid-template-columns: 1fr;
  }

  .nk-push-prompt__media {
    width: 56px;
    height: 56px;
  }

  .nk-push-prompt__slide {
    padding-right: 12px;
  }

  .nk-push-prompt__slide--intro {
    padding-right: 0;
  }

  .nk-push-prompt__actions {
    gap: 10px;
  }

  .nk-push-btn {
    width: 100%;
    justify-content: center;
  }

  .nk-push-btn--ghost {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}


.nk-push-prompt--global-active #nk-push-kraje-list .nk-push-toggle,
#nk-push-kraje-list.is-global-active .nk-push-toggle {
  opacity: .78;
  background: #f1f5f9;
  border-color: #e5e7eb;
}

.nk-push-prompt--global-active #nk-push-kraje-list .nk-push-toggle.is-checked,
#nk-push-kraje-list.is-global-active .nk-push-toggle.is-checked {
  background: #f1f5f9;
  border-color: #e5e7eb;
}

.nk-push-prompt--global-active #nk-push-kraje-list .nk-push-toggle .nk-push-toggle__label,
#nk-push-kraje-list.is-global-active .nk-push-toggle .nk-push-toggle__label {
  color: #64748b;
}

.nk-push-prompt--global-active #nk-push-kraje-list .nk-push-toggle .nk-push-toggle__switch,
.nk-push-prompt--global-active #nk-push-kraje-list .nk-push-toggle .nk-push-toggle__ui input:checked + .nk-push-toggle__switch,
#nk-push-kraje-list.is-global-active .nk-push-toggle .nk-push-toggle__switch,
#nk-push-kraje-list.is-global-active .nk-push-toggle .nk-push-toggle__ui input:checked + .nk-push-toggle__switch {
  background: #d7dde6;
}
