.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10000;
        display: flex;
        width: 100%;
        height: calc(58px + env(safe-area-inset-bottom, 0px));
        align-items: center;
        justify-content: space-between;
        padding: 0 4px env(safe-area-inset-bottom, 0px);
        background: #0a0b10;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, .2);
    }

    .nav-item {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 26px;
        color: #f2f2f2;
        font-family: 'Raleway', sans-serif;
        font-size: 12px;
        line-height: 18px;
        text-decoration: none !important;
        transition: transform .25s cubic-bezier(.25, 1.25, .5, 1), background-color .3s, color .2s ease;
    }

    .nav-item:hover,
    .nav-item:focus,
    .nav-item.active {
        color: #ff8d00;
    }

    .nav-item:hover {
        transform: scale(1.1);
    }

    .nav-item:active {
        transform: scale(.9);
    }

    #bootom_icon {
        font-size: 14px;
        line-height: 1;
    }

    .nav-item p {
        margin: 4px 0 0;
        font-family: 'Raleway', sans-serif;
        font-size: 9px;
        line-height: 18px;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .bottom-nav {
        height: calc(48px + env(safe-area-inset-bottom, 0px));
        padding-top: 0;
    }

    #bootom_icon {
        font-size: 11px;
    }

    .nav-item p {
        font-size: 6px;
    }
}
