/* Android app banner. Hidden until the JS opts the device in. */
.gx-app-banner {
  display: none;
}

.gx-app-banner.is-visible {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f2f3f4;
  border-bottom: 1px solid #e0e2e4;
  font-size: 13px;
}

.gx-app-banner__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7177;
  cursor: pointer;
}

.gx-app-banner__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gx-app-banner__text {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}

.gx-app-banner__title {
  font-weight: 600;
  color: #1a1a1a;
}

.gx-app-banner__subtitle {
  color: #6b7177;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gx-app-banner__cta {
  flex: 0 0 auto;
  padding: 7px 16px;
  border-radius: 999px;
  background: #007299;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.gx-app-banner__cta:hover,
.gx-app-banner__cta:focus {
  background: #005f80;
  color: #fff;
}
