/* Begin NAV BAR */
.mobile_tab_bar {
    position: fixed;
    bottom: 0px;
    background-color: var(--grey100);
    width: 100%;
    height: 48px;
    display: flex;   
    z-index: 100;
}
.tab_btn {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--grey500);
    font-size: 12px;
    height: 100%;
    padding-top: 6px;
    cursor: pointer;
}
.tab_btn i {
    height: 22px;
    font-size: 22px;
    color: var(--grey700);
}
.mobile_tab_bar .selected_tab {
    background-color: var(--green300);
    box-shadow: 0px 2px 4px 0 var(--shadow);
    position: relative;
    bottom: 6px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: calc(100% + 8px);
    color: var(--green600);
}
.selected_tab i {
    color: var(--green700);
    margin-top: 3px;
}

@media screen and (max-width: 600px) {
    
}

@media screen and (max-width: 900px) {
    .mobile_tab_bar {
        display: flex;
    }
}
@media screen and (min-width: 900.1px) {
    .mobile_tab_bar {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
   
}