.sdmp-permission {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 99990;
  display: none;
  max-width: 420px;
  margin: 0 auto;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(11,11,14,.96);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0,0,0,.42), 0 0 0 1px rgba(216,178,72,.10);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translate3d(0, 14px, 0);
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
}

.sdmp-permission.is-visible {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sdmp-inner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.sdmp-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111114;
  background: linear-gradient(145deg, #f1d56f, #b88725);
  box-shadow: 0 12px 28px rgba(216,178,72,.24);
}

.sdmp-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.sdmp-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.sdmp-text {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.38;
}

.sdmp-actions {
  display: flex;
  gap: 9px;
  padding: 0 14px 14px 68px;
}

.sdmp-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.sdmp-btn-primary {
  color: #121214;
  background: linear-gradient(180deg, #f1d56f, #c99731);
  box-shadow: 0 12px 24px rgba(216,178,72,.22);
}

.sdmp-btn-ghost {
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.12);
}

.sdmp-btn:focus {
  outline: 2px solid rgba(243,206,87,.74);
  outline-offset: 2px;
}

@media (min-width: 769px) {
  .sdmp-permission {
    left: 22px;
    right: auto;
    bottom: 22px;
    width: 390px;
  }
}

@media (max-width: 768px) {
  .sdmp-permission {
    bottom: 86px;
  }
}
