.mobilebottommenu {
    position: fixed;
    bottom: 10px;
    left: auto;
    right: 0;
    top: auto;
    background-color: #208ecc;
    display: flex;
    flex-direction: column-reverse;
    z-index: 99;
}
.mobilebottommenu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 10px;
}

@media only screen and (max-width: 576px){
.mobilebottommenu {
    bottom: 0;
    left: 0;
    background-color: #208ecc;
    flex-direction: row;
}}

@media only screen and (max-width: 576px){
.mobilebottommenu a {
    padding: 10px 10px 5px 10px;
}}
