html, body, ul, li, p {
    margin: 0;
    padding: 0;
}

html {
    background-color: #4d4545;
    color: #f9f9f9;
}

body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

/* * * * * * * * *
 * Landing Page  *
 * * * * * * * * */

#landing-page header {
    height: 64px;
}

#landing-page header .header-bar {
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12),inset 0 -1px 0 0 rgba(0, 0, 0, 0.15);
    height: 64px;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate3d(0, 0, 0);
    z-index: 100;
}

#landing-page header .header-bar .brand {
    height: 100%;
    float: left;
    margin-left: 17px;
    position: relative;
}

#landing-page header .header-bar .brand .logo {
    box-sizing: border-box;
    display: table;
    height: 100%;
    padding: 4px 0;
}

#landing-page header .header-bar .brand .logo a {
    box-sizing: border-box;
    display: table-cell;
    padding-top: 4px;
    vertical-align: middle;
}

#landing-page header .header-bar .cta {
    height: 63px;
    padding: 9px 9px 9px;
    position: absolute;
    right: 0;
    top: 0;
}

#landing-page header .header-bar .cta ul {
    list-style: none;
}

#landing-page header .header-bar .cta ul li {
    display: table;
    float: left;
    height: 100%;
}

#landing-page header .header-bar .cta ul li a {
    border-radius: 4px;
    color: #FFF;
    display: table-cell;
    font-size: 16px;
    height: 48px;
    padding: 0 24px 0;
    text-decoration: none;
    vertical-align: middle;
}

#landing-page header .header-bar .cta ul li.cta-list-primary a {
    background-color: #fbb040;
    color: #333;
}

/* * * * * * * * 
 * Login Page  *
 * * * * * * * */

#login-view {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}

#login-view::before, #login-view::after {
    content: "";
    flex-grow: 1;
    display: block;
    min-height: 30px;
}

#login-view .wrapper {
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12),inset 0 -1px 0 0 rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
}

/* * * * * * * *
 * App Shared  *
 * * * * * * * */
#authenticated-root {
    padding-top: 66px;
    padding-left: 280px;
}

#app-header {
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12),inset 0 -1px 0 0 rgba(0, 0, 0, 0.15);
    left: 0;
    padding: 16px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate3d(0, 0, 0);
    z-index: 100;
}

#app-header .header-wrapper .product img {
    height: 30px;
    width: 104px;
}

#app_sidebar {
    bottom: 0;
    box-shadow: 2px 0 6px 0 rgba(0,0,0,.12),inset 1px 0 0 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    left: 0;
    padding: 16px;
    position: fixed;
    right: 0;
    top: 66px;
    transform: translate3d(0, 0, 0);
    width: 280px;
    z-index: 100;
}

#app_sidebar nav ul {
    list-style: none;
}

#main-content {
    padding: 16px;
}

