/* Minification failed. Returning unminified contents.
(22,31): run-time error CSS1046: Expect comma, found '0'
(22,35): run-time error CSS1046: Expect comma, found '/'
 */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
}

header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    height: 75px;
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 14%);
}

.header-link {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-logo {
    height: 25px;
    padding-left: 37px;
}

.header-title {
    color: #6a8192;
    text-align: center;
    font-size: 20px;
    line-height: 23px;
    padding: 0 23px;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

footer {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 500;
}

.footer-item {
    color: #0071C5;
}

