.bottom-nav-custom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    height: 80px;
    background-color: #007a70;
}

.button-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;

    &:hover {
        background-color: #f8f9fa;
        cursor: pointer;
    }

    .icon-custom {
        font-size: 25px;
        width: 1.2em;
        height: 1.2em;
        margin-bottom: 5px;
        color: #f8f9fa;
    }

    .text-custom {
        font-size: 16px;
        color: #f8f9fa;
    }

    &:hover .icon-custom,
    &:hover .text-custom {
        color: #007a70;
    }
}

@media (min-width: 992px) {
    .bottom-nav-custom {
        display: none;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 64px;
    }

    .bottom-nav-custom {
        display: flex;
    }
}
