@media screen and (max-width: 767px) {
    .hide-mobile-navigation{
        display: none !important;
    }
}

/* Styles for medium and large screens (768px and above) */
@media screen and (min-width: 768px) {
    .show-mobile-navigation{
        display: none !important;
    }
}

@media (min-width: 768px) {
    .bottom-navigation {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .mobileNavigation{
        display: flex !important;
    }
}

/* Styles for medium and large screens (768px and above) */
@media screen and (min-width: 768px) {
    .mobileNavigation{
        display: none !important;
    }
}

.mobileNavigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: #3C3842;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.listing-detail{
    font-size: 20px !important;
}