/* Согласие на ПДн — нижняя шторка, без затемнения экрана */
.miraPdConsent {
  position: fixed;
  inset: 0;
  z-index: 120000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  background: transparent;
  visibility: hidden;
  transition: visibility 0s linear 0.36s;
}
.miraPdConsent.miraPdConsent--open {
  visibility: visible;
  transition: visibility 0s;
}
.miraPdConsent__panel {
  pointer-events: auto;
  width: 100%;
  max-width: 560px;
  max-height: min(78vh, 620px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  background: linear-gradient(180deg, rgba(34, 36, 42, 0.99), rgba(20, 22, 28, 0.99));
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  padding: 0 20px max(20px, env(safe-area-inset-bottom, 0px));
  padding-top: 10px;
  color: #e2e8f0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.miraPdConsent.miraPdConsent--open .miraPdConsent__panel {
  transform: translate3d(0, 0, 0);
}
.miraPdConsent__handle {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.miraPdConsent__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}
.miraPdConsent__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
}
.miraPdConsent__text a {
  color: #ffbe14;
  font-weight: 800;
}
.miraPdConsent__checkRow {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.miraPdConsent__checkRow input {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #ffbe14;
  cursor: pointer;
}
.miraPdConsent__checkLabel {
  font-size: 14px;
  line-height: 1.45;
  color: #cbd5e1;
}
.miraPdConsent__actions {
  display: grid;
  gap: 10px;
}
.miraPdConsent__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: filter 0.15s ease, opacity 0.15s ease;
}
.miraPdConsent__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: none;
}
.miraPdConsent__btn--primary {
  background: #ffbe14;
  color: #111;
}
.miraPdConsent__btn--primary:not(:disabled):active {
  filter: brightness(0.97);
}
.miraPdConsent__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.miraPdConsent__btn--ghost:active {
  filter: brightness(1.08);
}