/* PHP 7.4 deployment package: mobile WebView fallbacks */
.app-shell {
    height: 100vh;
    height: 100dvh;
}

.spec-sheet,
.cart-sheet,
.orders-sheet {
    max-height: 88vh;
    max-height: 88dvh;
}

@supports not (width: min(100%, 520px)) {
    .app-shell {
        width: 520px;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .app-shell {
        width: 100%;
        margin-left: 0;
    }
}
