/* Home screen install banner */
.hf-install-banner[hidden] {
  display: none !important;
}

.hf-install-banner {
  width: 100%;
  overflow: hidden;
  color: #25282c;
  background-color: #f7fbfd;
  border-bottom: 1px solid #dceef5;
  font-family:
    나눔고딕,
    NanumGothic,
    "Nanum Gothic",
    맑은고딕,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.hf-install-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hf-install-banner-inner {
  display: flex;
  width: calc(100% - 32px);
  max-width: 1040px;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  margin: 0 auto;
  padding: 18px 0;
}

.hf-install-banner-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(0, 174, 239, 0.17);
}

.hf-install-banner-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
  word-break: keep-all;
}

.hf-install-banner-content strong {
  color: #202327;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hf-install-banner-content span {
  color: #72777d;
  font-size: 12px;
}

.hf-install-banner-content span strong {
  color: #4e545a;
  font-size: inherit;
}

.hf-install-banner-action {
  min-width: 76px;
  height: 36px;
  flex: 0 0 auto;
  padding: 0 14px;
  color: #ffffff;
  background-color: #00aeef;
  border: 1px solid #00aeef;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hf-install-banner-action:hover,
.hf-install-banner-action:focus {
  color: #ffffff;
  background-color: #0099d4;
  border-color: #0099d4;
}

.hf-install-banner-action:disabled {
  opacity: 0.65;
  cursor: default;
}

.hf-install-banner-close {
  display: inline-flex;
  width: 30px;
  height: 36px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #8a8f95;
  background: transparent;
  border: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.hf-install-banner-close:hover,
.hf-install-banner-close:focus {
  color: #30343a;
}

.hf-ios-guide[hidden] {
  display: none !important;
}

.hf-ios-guide {
  border-top: 1px solid #dceef5;
  background-color: #ffffff;
}

.hf-ios-guide-inner {
  display: grid;
  width: calc(100% - 32px);
  max-width: 1040px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  padding: 12px 0 14px;
}

.hf-ios-guide-step {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 10px;
  background-color: #f7fbfd;
  border: 1px solid #dceef5;
  border-radius: 10px;
}

.hf-ios-guide-number {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #00aeef;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.hf-ios-guide-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  color: #00aeef;
  background-color: #ffffff;
  border: 1px solid #cfeaf4;
  border-radius: 9px;
  font-size: 19px;
}

.hf-ios-guide-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
  word-break: keep-all;
}

.hf-ios-guide-text strong {
  color: #2f3337;
  font-size: 12px;
  font-weight: 700;
}

.hf-ios-guide-text small {
  color: #737980;
  font-size: 10px;
}

@media (max-width: 540px) {
  .hf-install-banner-inner {
    width: calc(100% - 20px);
    min-height: 68px;
    gap: 14px;
    padding: 18px 0;
  }

  .hf-install-banner-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
  }

  .hf-install-banner-content strong {
    font-size: 13px;
  }

  .hf-install-banner-content span {
    font-size: 11px;
  }

  .hf-install-banner-action {
    min-width: 66px;
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hf-install-banner-close {
    width: 24px;
    height: 34px;
    flex-basis: 24px;
    font-size: 22px;
  }

  .hf-ios-guide-inner {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 9px 0 11px;
  }

  .hf-ios-guide-step {
    gap: 8px;
    padding: 8px 9px;
  }

  .hf-ios-guide-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 18px;
  }

  .hf-ios-guide-text strong {
    font-size: 11px;
  }

  .hf-ios-guide-text small {
    font-size: 10px;
  }
}

.hf-ios-guide-icon {
  width: 2.8rem;
  height: 2.8rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-1px);
}

.hf-ios-share-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
}
