#app-banner {
  width: 100%;
  height: 60px;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
#app-banner button {
  background: rgba(0, 0, 0, 0);
  color: var(--text-primary);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--text-primary);
  padding: 6px 16px 4px 16px;
  line-height: 18px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  #app-banner {
    display: none !important;
  }
}

.app-banner__close {
  padding: 4px 4px 4px 0;
  cursor: pointer;
  height: 20px;
}

.app-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 120%;
}

.logo-app {
  width: 44px;
  height: 44px;
}