.clb-app-banner {
  width: 100%;
  box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10050;
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  background: #ffffff;
  color: #17121f;
  border-bottom: 0 solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 180ms ease,
    padding 180ms ease,
    opacity 160ms ease,
    transform 180ms ease,
    border-bottom-width 180ms ease,
    box-shadow 180ms ease;
}

.clb-app-banner.is-visible {
  max-height: 72px;
  padding: 8px 10px;
  opacity: 1;
  transform: translateY(0);
  border-bottom-width: 1px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.clb-app-banner__close {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.clb-app-banner__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.clb-app-banner__text {
  min-width: 0;
  flex: 1 1 auto;
}

.clb-app-banner__title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clb-app-banner__sub {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.2;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clb-app-banner__btn {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #1a8f2a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 769px) {
  .clb-app-banner {
    display: none !important;
  }
}
html.clb-app-banner-open body {
  padding-top: var(--clb-app-banner-height, 64px) !important;
}

html.clb-app-banner-open .c-social__topbar {
  top: var(--clb-app-banner-height, 64px) !important;
}

html.clb-app-banner-open .c-social__wrap {
  margin-top: 45px !important;
}
