html,body {
	font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    display: inline!important;
    background: #ffffff;
}

#app{
	display: inherit;
	height: 100vh;
}

.app-wrapper {
    color: var(--dark);
    background: var(--neutral--100)
}

.app-wrapper--full-height {
    height: 100vh;
    overflow: hidden
}

.header {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .3s ease
}

.h-page {
	border-top: 1px solid rgb(242, 242, 242);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: 100%
}

.app-wrapper__main {
    display: flex;
    flex-grow: 1;
    height: 100%;
    flex-direction: row
}

.navigation {
    position: fixed;
    height: calc(100vh - 56px);
    z-index: 500
}

.side-menu {
    height: 100%;
    border-right: 1px solid rgb(242, 242, 242);
}

.navigation__level-1, .navigation__level-2{
    position: absolute;
    top: 0;
    left: 0;
    border-right: 1px solid #d8dae0;
    height: 100%;
    border-top: 1px solid #d8dae0;
}

.navigation__level-1--visible {
    transform: translate(0);
}

.hp-sidemenu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #ffffff;
    width: 260px;
}

.hp-sidemenu__container {
    padding: 12px;
    height: 100%;
    overflow-y: auto;
}

.h-content--sidemenu {
    padding-right: 16px;
    padding-left: 16px;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.d-flex {
    display: flex !important;
}

.h-content {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    max-width: 100%;
}

.app-wrapper__main .h-content--scrollable {
    height: calc(100vh - 56px);
    overflow-y: auto;
}

.app-wrapper__main .h-content--sidemenu {
    margin-left: 260px;
}

.flex-column {
    flex-direction: column !important;
}

.h-container {
    width: 100%;
    padding: 0 16px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.h-content--sidemenu>.h-container {
    padding: 0;
    /* max-width: 1110px; */
}

.h-mt-16 {
    margin-top: 16px !important;
}

.h-mb-68 {
    margin-bottom: 68px !important;
}

.w-max-100 {
    max-width: 100% !important;
}

@media (min-width: 768px) {
	.h-container {
        /* max-width: 1174px; */
        padding: 0 32px;
    }

    .h-content--sidemenu {
        padding-right: 32px;
        padding-left: 32px;
    }
}
