/*
 * Intercom mobile positioning
 *
 * Intercom ignores the configured launcher offset on mobile.
 * Reserve space beneath it for the back-to-top button.
 */
:root {
    --mobile-floating-button-bottom: 20px;
    --mobile-floating-button-size: 48px;
    --mobile-floating-button-gap: 16px;

    --intercom-mobile-bottom:
        calc(
            var(--mobile-floating-button-bottom)
            + var(--mobile-floating-button-size)
            + var(--mobile-floating-button-gap)
            + env(safe-area-inset-bottom, 0px)
        );
}

@media (max-width: 767px) {
    .intercom-lightweight-app-launcher {
        bottom: var(--intercom-mobile-bottom) !important;
    }

    .intercom-lightweight-app-messenger {
        bottom: calc(var(--intercom-mobile-bottom) + 64px) !important;
        max-height: calc(
            100dvh
            - var(--intercom-mobile-bottom)
            - 84px
        ) !important;
    }
}