/* DASHBOARD PAGE */
#dashboard-page {
    box-sizing: border-box;
    position: relative;
    margin: 0px auto;
    background-color: rgb(255, 255, 255);
    width: 100%;
    min-height: calc(100vh - 256px);
    padding-bottom: 72px;
}

.dashboard-header {
    margin: 0 auto;
    max-width: 428px;
    width: 100%;
}

.navigation-menu {
    list-style-type: none;
    display: inline-block;
    border-width: 1px 0px 0px;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image: initial;
    font-weight: 600;
    line-height: 13px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.35s ease 0s;
    text-decoration: none;
    width: 100%;
    max-width: 428px;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    padding: 0 10px;
    font-size: 1em;
    border-top-style: solid;
    border-top-color: rgb(222, 222, 222);
    margin: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px -8px 16px -7px rgba(0,0,0,0.35);
    -webkit-box-shadow: 0px -8px 16px -7px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px -8px 16px -7px rgba(0,0,0,0.35);
    border-radius: 10px;
}