.smart-app-banner {
    display: none;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: #f2f2f7;
    border-bottom: 1px solid #e5e5ea;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 10050;
}

.smart-app-banner.is-visible {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

body.has-smart-app-banner {
    --smart-app-banner-height: 68px;
    padding-top: var(--smart-app-banner-height);
}

@media screen and (max-width: 767px) {
    body.has-smart-app-banner #menu-fixed {
        top: var(--smart-app-banner-height);
    }
}

.smart-app-banner__icon {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.smart-app-banner__text {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.smart-app-banner__title {
    display: block;
    color: #1c1c1e;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.smart-app-banner__subtitle {
    display: block;
    margin-top: 2px;
    color: #8e8e93;
    font-size: 12px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
}

.smart-app-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0168a3;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.15s ease;
}

.smart-app-banner__cta:hover,
.smart-app-banner__cta:focus {
    background: #015285;
    color: #fff;
    text-decoration: none;
}

.smart-app-banner__cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.smart-app-banner__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8e8e93;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
}

.smart-app-banner__close:hover,
.smart-app-banner__close:focus {
    color: #636366;
}

@media screen and (min-width: 992px) {
    .smart-app-banner {
        display: none !important;
    }

    body.has-smart-app-banner {
        padding-top: 0;
    }
}
