.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    
    padding-top: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    background-color: #272727;
    background-color: #234643;
    color: #f0f0f0;
    height: 100%;
}
.main-header-app-name {
    display: block;
    padding: 24px 24px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 2.0rem;
}
.main-header ul > li > a,
.main-header ul > li > button {
    display: block;
    padding: 16px 24px;
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    color: #e0e0e0;
    text-align: left;
    text-decoration: none;
    font-size: 1.0rem;
    font-family: var(--font-default);
    cursor: pointer;
    font-weight: 600;
    box-sizing: border-box;
    user-select: none;
    transition: background-color 0.1s ease;
}
.main-header ul > li > a:hover,
.main-header ul > li > button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: none;
}
.main-header ul > li > a.active,
.main-header ul > li > button.active {
    background-color: rgba(255, 255, 255, 0.2);
    transition: none;
}
.main-header ul > li > a > img,
.main-header ul > li > button > img {
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 8px;
    filter: invert(75%);
}
.main-header ul > li > hr.theme-a {
    border-color: #5d827b;
}

.main-body {
    margin-left: 250px;
}
body.no-main-header .main-body {
    margin-left: 0;
}

.main-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    z-index: 10;
    text-align: center;
    /* border-top: 1px solid #e0e0e0; */
    box-sizing: border-box;
}
.main-mobile-bar > button {
    border: none;
    height: 50px;
    line-height: 50px;
    width: 100%;
    background-color: #272727;
    background-color: #234643;
    border-radius: 0;
    color: #ffffff;
}
.main-mobile-bar > button > img {
    filter: invert(100%);
}
.app-mod-1 {
    padding: 0 24px;
    margin-bottom: 16px;
}
.app-mod-1-1 {
    color: #709584;
}
.app-mod-1-2 {
    font-weight: 600;
}
.app-mod-1-3-1 {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.01rem;
    display: inline-block;
    color: #76a5a1;
}
/* Mobile & Tablet */
@media only screen and (max-width: 991px) {
    .main-header {
        display: none;
        top: unset;
        bottom: 49px;
        left: 0;
        width: 100%;
        height: unset;
        min-height: 300px;
        max-height: calc(100% - 100px);
        /* background-color: #ffffff; */
        z-index: 10;
        box-shadow: 0 -16px 16px rgba(0, 0, 0, 0.08);
    }
    body.main-mobile-bar-active .main-header {
        display: block;
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .main-body {
        margin-left: 0;
    }
    .main-mobile-bar {
        display: block;
    }
    body.main-mobile-bar-active .main-mobile-bar > button {
        box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.24);
    }
}