.pta-pin-sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 100001;
}
.pta-pin-sheet[hidden] {
  display: none !important;
}
.pta-pin-sheet__card {
  position: relative;
  background: #fff;
  color: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  padding: 16px 40px 16px 16px;
  font-size: 15px;
  line-height: 1.4;
}
.pta-pin-sheet__title {
  margin: 0 0 6px;
  font-weight: 700;
}
.pta-pin-sheet__card p {
  margin: 0 0 8px;
}
.pta-pin-sheet__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.pta-pin-sheet__allow {
  background: #0b2545;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}
.pta-pin-sheet__ios,
.pta-pin-sheet__edge,
.pta-pin-sheet__android {
  display: none;
}
.pta-pin-sheet.is-ios .pta-pin-sheet__ios,
.pta-pin-sheet.is-edge .pta-pin-sheet__edge,
.pta-pin-sheet.is-android .pta-pin-sheet__android {
  display: block;
}
