.aom-front-install {
  position: fixed;
  z-index: 99999;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 14px max(16px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  border: 1px solid rgba(36, 63, 143, .12);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
  color: #172033;
  box-shadow: 0 16px 45px rgba(16, 33, 62, .2);
  font-family: inherit;
}
.aom-front-install[hidden] { display: none; }
.aom-front-install__icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 14px;
}
.aom-front-install__copy strong {
  display: block;
  margin: 1px 0 5px;
  font-size: 15px;
  line-height: 1.25;
}
.aom-front-install__copy p {
  margin: 0;
  color: #59677f;
  font-size: 13px;
  line-height: 1.38;
}
.aom-front-install__ios-help {
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #f1f5ff;
  color: #243f8f;
}
.aom-front-install__ios-help[hidden] { display: none; }
.aom-front-install__copy .aom-front-install__ios-help strong {
  margin: 0 0 4px;
  color: #243f8f;
  font-size: 13px;
}
.aom-front-install__copy .aom-front-install__ios-help p {
  color: #243f8f;
}
.aom-front-install__actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.aom-front-install__actions button {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 11px;
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
}
.aom-front-install__primary {
  border: 0;
  background: #243f8f;
  color: #fff;
}
.aom-front-install__primary:disabled {
  opacity: .72;
  cursor: default;
}
.aom-front-install__dismiss {
  border: 1px solid #d7dee8;
  background: #fff;
  color: #59677f;
}
@media (min-width: 520px) {
  .aom-front-install {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    left: auto;
    width: min(440px, calc(100vw - 36px));
    border: 1px solid rgba(36, 63, 143, .12);
    border-radius: 18px;
    padding: 14px;
  }
}
@media (max-width: 420px) {
  .aom-front-install {
    grid-template-columns: 50px minmax(0, 1fr);
  }
  .aom-front-install__icon {
    width: 50px;
    height: 50px;
  }
  .aom-front-install__actions {
    grid-column: 1 / -1;
  }
}
