@import url('https://fonts.cdnfonts.com/css/switzer');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/regular/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/bold/style.css');
@import '../css/_form.css';
@import '../css/_modal.css';

:root {
    --font-sans: 'Switzer', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --text-main: #1a2332;
    --text-muted: #64748b;
    --bg-body: #fdfdfd;
    --color-brand: #00a4c2;
}

body {
    font-family: var(--font-sans);
    font-optical-sizing: auto;
    font-weight: 400;
    background-color: #fff;
    overflow-x: hidden;
    font-size: 15px;
    color: var(--text-main);
    letter-spacing: -0.1px;
    margin-top: 48px;
    height: 100vh;
    max-height: 100%;
}

.app-container {
    max-width: min(620px, 100%);
    margin: 0px auto;
    display: flex;
    flex-flow: column;
    -webkit-box-pack: justify;
    justify-content: start;
    padding-bottom: 0.5rem;
    background-color: #fff;
    min-height: 100vh;
    max-height: 100%;
    /*padding-top: 80px;*/
}

.navbar-titleshort {
    display: none;
}

/* Box Headline */
.box-stats {
    height: 90px;
    padding: 10px 20px;
}

.box-stats > h4 {
    font-weight: 600;
}

.box-stats > p {
    color: var(--text-muted);
}

.footer-home-one {
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    .app-container {
        padding: 0 10px;
    }
    .navbar-titleshort {
        display: block;
    }
}