html {
    min-height: 100%;
    font-family: sans-serif;
    font-size: 62.5%;
}

html,
body {
    height: 100%;
    font-family:
            "Roboto",
            -apple-system,
            ".SFNSText-Regular",
            "San Francisco",
            BlinkMacSystemFont,
            "Segoe UI",
            "Helvetica Neue",
            Helvetica,
            Arial,
            sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 16px;
    overflow: auto;
    color: rgba(0, 0, 0, 0.87);
    overflow-x: hidden;
}

body,
button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

fieldset {
    min-width: 0;
    border: 0;
}

fieldset,
legend,
p,
h4,
h5,
blockquote {
    margin: 0;
    padding: 0;
}

:focus {
    outline: 0;
}

:root {
    --mdc-theme-primary: #3367d6;
    --mdc-theme-secondary: #2979ff;
    --rem: 16;
}

#app {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.layout-content {
    min-width: 768px;
    display: flex;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

.main {
    flex-direction: column;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
}

.align-center {
    align-self: center;
}

.card-title {
    font-size: 14px;
    margin-bottom: 8px;
}