:root {
  --mpp-bg: #ffffff;
  --mpp-fg: #222222;
  --mpp-muted: #666666;
  --mpp-accent: #222222;
  --mpp-accent-text: #ffffff;
  --mpp-border: rgba(0,0,0,.10);
  --mpp-shadow: 0 18px 55px rgba(0,0,0,.16);
}

.mpp-card,
.mpp-card * {
  box-sizing: border-box;
}

.mpp-card {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  width: min(390px, calc(100vw - 32px));
  padding: 20px 20px 16px;
  color: var(--mpp-fg);
  background: var(--mpp-bg);
  border: 1px solid var(--mpp-border);
  border-radius: 2px;
  box-shadow: var(--mpp-shadow);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

.mpp-card[hidden] {
  display: none !important;
}

.mpp-title {
  margin: 0 34px 6px 0;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.mpp-copy {
  color: var(--mpp-muted);
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
}

.mpp-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.mpp-link {
  color: var(--mpp-fg) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  opacity: .78;
  font: inherit;
  font-size: 12px;
}

.mpp-ok {
  min-width: 70px;
  padding: 9px 15px;
  border: 1px solid var(--mpp-accent) !important;
  border-radius: 1px;
  background: var(--mpp-accent) !important;
  color: var(--mpp-accent-text) !important;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none !important;
}

.mpp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: var(--mpp-fg) !important;
  font: inherit;
  font-size: 22px;
  font-weight: 300;
  line-height: 28px;
  cursor: pointer;
  opacity: .55;
}

.mpp-ok:focus-visible,
.mpp-link:focus-visible,
.mpp-close:focus-visible {
  outline: 2px solid var(--mpp-accent);
  outline-offset: 3px;
}

.mpp-form-privacy {
  margin-top: 8px;
  color: inherit;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.4;
  opacity: .68;
}

.mpp-form-privacy a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.mpp-policy {
  font-family: inherit;
}

@media (max-width: 600px) {
  .mpp-card {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 17px 17px 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mpp-card.mpp-enter {
    animation: mppIn .22s ease-out both;
  }
  @keyframes mppIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
