.furry-mobile-app-download-placeholder {
    display: none;
}

.furry-mobile-app-download {
    display: none;
}

@media screen and (max-width: 767px) {
    .furry-mobile-app-download-placeholder {
        display: block;
        height: calc(58px + env(safe-area-inset-bottom));
        overflow: hidden;
        transition: height 0.22s ease, opacity 0.22s ease;
    }

    .furry-mobile-app-download {
        position: fixed;
        right: 0;
        bottom: calc(49px + env(safe-area-inset-bottom));
        left: 0;
        z-index: 1040;
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 7px 12px;
        gap: 9px;
        overflow: hidden;
        color: var(--main-color, #27232a);
        background: rgba(255, 255, 255, 0.36);
        border: 0 !important;
        border-color: transparent !important;
        outline: 0 !important;
        box-shadow: none !important;
        -webkit-backdrop-filter: blur(8px) saturate(130%);
        backdrop-filter: blur(8px) saturate(130%);
        transition: opacity 0.22s ease, transform 0.22s ease;
        will-change: opacity, transform;
    }

    .furry-mobile-app-download-placeholder.is-closing {
        height: 0;
        opacity: 0;
    }

    .furry-mobile-app-download.is-closing {
        z-index: 1034;
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
    }

    .furry-mobile-app-download__icon {
        display: flex;
        flex: 0 0 40px;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        overflow: hidden;
        border: 0 !important;
        border-color: transparent !important;
        outline: 0 !important;
        border-radius: 13px;
        box-shadow: none !important;
    }

    .furry-mobile-app-download__icon img {
        display: block;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        max-height: none !important;
        opacity: 1 !important;
        object-fit: cover;
        visibility: visible !important;
    }

    .furry-mobile-app-download__copy {
        display: flex;
        min-width: 0;
        flex: 1;
        flex-direction: column;
        gap: 3px;
    }

    .furry-mobile-app-download__dismiss {
        display: inline-flex;
        flex: 0 0 22px;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 30px;
        padding: 0;
        color: #fff;
        background: transparent;
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        -webkit-appearance: none;
        appearance: none;
    }

    .furry-mobile-app-download__dismiss .icon {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
    }

    .furry-mobile-app-download__copy strong,
    .furry-mobile-app-download__copy span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .furry-mobile-app-download__copy strong {
        color: var(--main-color, #29242c);
        font-size: 14px;
        line-height: 1.2;
    }

    .furry-mobile-app-download__copy span {
        color: var(--muted-color, #6f6872);
        font-size: 10px;
        line-height: 1.3;
    }

    .furry-mobile-app-download__action {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        min-width: 72px;
        min-height: 32px;
        padding: 0 10px;
        color: var(--this-color, #fff) !important;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        background: var(--this-bg, rgba(255, 111, 6, 0.1));
        border: 0 !important;
        border-color: transparent !important;
        outline: 0 !important;
        border-radius: 8px;
        box-shadow: none !important;
        -webkit-appearance: none;
        appearance: none;
        text-decoration: none;
    }

    .furry-mobile-app-download__action:active {
        opacity: 0.82;
    }
}

@media screen and (max-width: 767px) {
    .dark-theme .furry-mobile-app-download {
        background: rgba(50, 51, 53, 0.48);
    }
}

.furry-mobile-app-download[hidden],
.furry-mobile-app-download-placeholder[hidden] {
    display: none !important;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .furry-mobile-app-download {
        background: #fff;
    }

    .dark-theme .furry-mobile-app-download {
        background: #37383a;
    }
}

@media screen and (max-width: 767px) and (prefers-reduced-transparency: reduce) {
    .furry-mobile-app-download {
        background: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .dark-theme .furry-mobile-app-download {
        background: #37383a;
    }
}

@media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
    .furry-mobile-app-download,
    .furry-mobile-app-download-placeholder {
        transition: none;
    }
}
