.mobile-bottom {
    width: 100%;
    height: 45px;
    position: fixed;
    bottom: 0;
    background: #fff;
    display: flex;
    border-top: 1px solid #d4af37;
    z-index: 6;

    .mb-link {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        color: #333;
        text-decoration: unset;
        font-family: Poppins;

        &+.mb-link {
            border-left: 1px solid rgba(0, 0, 0, 0.05);
        }
    }
}

@media (min-width: 1001px) {
    .mobile-bottom {
        display: none;
    }
}

@media (max-width: 500px) {
    .mobile-bottom .mb-link {
        font-size: 14px;
    }
}