.lp-mobile-app-prompt[hidden] {
  display: none !important;
}

.lp-mobile-app-prompt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  max-width: 560px;
  min-height: 68px;
  margin: 0 auto;
  padding: 9px 10px 9px 38px;
  color: #fff;
  background: #111111;
  border: 1px solid #5f0000;
  border-radius: 9px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .48);
  font-family: inherit;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .2s ease, transform .2s ease;
}

@supports (bottom: env(safe-area-inset-bottom)) {
  .lp-mobile-app-prompt {
    bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

.lp-mobile-app-prompt.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-mobile-app-prompt__action[hidden] {
  display: none !important;
}

.lp-mobile-app-prompt__content {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.2;
}

.lp-mobile-app-prompt__title,
.lp-mobile-app-prompt__copy {
  display: block;
}

.lp-mobile-app-prompt__title {
  margin: 0 0 3px;
  color: #fff;
  font-size: .9em;
  font-weight: 700;
}

.lp-mobile-app-prompt__copy {
  margin: 0;
  color: #ccc;
  font-size: .76em;
  white-space: pre-line;
}

.lp-mobile-app-prompt__actions {
  flex: 0 0 auto;
}

.lp-mobile-app-prompt__action {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 40px;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none !important;
}

.lp-mobile-app-prompt__action:hover,
.lp-mobile-app-prompt__action:focus {
  opacity: .88;
}

.lp-mobile-app-prompt__action:focus,
.lp-mobile-app-prompt__close:focus {
  outline: 3px solid rgba(239, 118, 34, .45);
  outline-offset: 2px;
}

.lp-mobile-app-prompt__store-badge {
  display: block;
  width: auto;
  max-width: none;
  height: 40px;
  margin: 0;
}

.lp-mobile-app-prompt__close {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 28px;
  height: 34px;
  padding: 0;
  transform: translateY(-50%);
  color: #bbb;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.lp-mobile-app-prompt__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 430px) {
  .lp-mobile-app-prompt {
    gap: 7px;
    padding-left: 32px;
  }

  .lp-mobile-app-prompt__title {
    font-size: .82em;
  }
}

@media (max-width: 360px) {
  .lp-mobile-app-prompt__copy {
    display: none;
  }

  .lp-mobile-app-prompt__action,
  .lp-mobile-app-prompt__store-badge {
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-mobile-app-prompt {
    transition: none;
  }
}
