@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
    --orange: #f85606;
    --orange-dark: #e94c00;
    --ink: #0f1748;
    --text: #333;
    --muted: #7b7f8c;
    --soft: #f4f4f6;
    --soft2: #f0f1f6;
    --pink: #ff5a73;
    --pink-soft: #ffb8c4;
    --white: #fff;
    --line: #ececf0;
    --shadow: 0 8px 24px rgba(27, 31, 53, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1190px, calc(100% - 32px));
    margin-inline: auto;
}

.mobile-appbar,
.mobile-search-wrap,
.mobile-menu-grid,
.mobile-tab-strip,
.mobile-bottom-nav {
    display: none;
}

.desktop-header {
    background: var(--orange);
    color: #fff;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Open Sans", sans-serif;
}

@media (max-width: 720px) {
    body {
        background: #333;
    }

    .page-shell {
        max-width: 720px;
        margin: 0 auto;
        background: #fff;
        min-height: 100vh;
        position: relative;
        padding-bottom: 66px;
        overflow: hidden;
    }

    .desktop-header,
    .desktop-only,
    .desktop-footer,
    .desktop-only-flex,
    .desktop-only-card {
        display: none !important;
    }

    .mobile-appbar,
    .mobile-search-wrap,
    .mobile-menu-grid,
    .mobile-tab-strip,
    .mobile-bottom-nav {
        display: flex;
    }

    .container {
        width: 100%;
        padding-inline: 18px;
    }

    .page-shell {
        overflow-x: clip;
        overflow-y: visible;
    }

    .desktop-topbar,
    .desktop-mainbar {
        display: none !important;
    }
}

@media (min-width: 721px) {

    .desktop-topbar,
    .desktop-mainbar {
        display: block;
    }
}