.app-install-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #171717;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.app-install-banner[hidden] {
    display: none !important;
}

.app-install-banner__inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    max-width: 720px;
    margin: 0 auto;
    padding: 9px 12px;
}

.app-install-banner__icon {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 11px;
    object-fit: cover;
}

.app-install-banner__copy {
    min-width: 0;
    line-height: 1.15;
}

.app-install-banner__copy strong,
.app-install-banner__copy span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-install-banner__copy strong {
    margin-bottom: 4px;
    font-size: .86rem;
    font-weight: 700;
}

.app-install-banner__copy span {
    color: #c8c8c8;
    font-size: .72rem;
}

.app-install-banner__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 9px;
    background: #f61016;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.app-install-banner__action:hover,
.app-install-banner__action:focus-visible {
    background: #d9080e;
    color: #fff;
}

.app-install-banner__action:active {
    transform: scale(.98);
}

.app-install-banner__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #a8a8a8;
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.app-install-banner__close:hover,
.app-install-banner__close:focus-visible {
    color: #fff;
}

@media (min-width: 1025px) {
    .app-install-banner {
        display: none !important;
    }
}

@media (max-width: 359.98px) {
    .app-install-banner__inner {
        grid-template-columns: 40px minmax(0, 1fr) auto 24px;
        gap: 8px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .app-install-banner__icon {
        width: 40px;
        height: 40px;
    }

    .app-install-banner__copy strong {
        font-size: .78rem;
    }

    .app-install-banner__copy span {
        font-size: .65rem;
    }

    .app-install-banner__action {
        padding: 0 9px;
        font-size: .63rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .app-install-banner__action {
        transition: none;
    }
}
