.all-none, .mobile-display, .desktop-display {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .mobile-display {
        display: flex !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .tablet-display {
        display: flex !important;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .desktop-display {
        display: flex !important;
    }
}

#stmenu {
    justify-content: space-around; 
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid #e5e5e5;
}

.bottom-menu {
    bottom: 0;
    position: sticky;
    left: 0;
    z-index: 20000;
}



#stmenu a:hover,
#stmenu a:focus {
}

#stmenu a {
    display: inline-flex; /*embedded flex */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 60px;
    flex-direction: column;
    flex: 1;
}
.icon-stmenu{
    width: 100%;
    text-align: center;
    opacity: 0.5;
}
