.bottom-nav {
    background-color: #4b8b01;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.bottom-nav a {
    color: #fff!important;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 2.5rem!important;
}

.bottom-nav i {
    color: #fff!important;;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 2.5rem!important;
}

.bottom-nav a:hover {
    background-color: #2a93d5;
}

.bottom-nav a .icon {
    margin-right: 8px;
}
.bottom-nav {
    z-index: 9999;
}

.page-mobile {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.content-mobile {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background-color: white;
    transition: right 0.5s ease;
}
.content-mobile.show {
    right: 0;
}

.mobile-button {
    border: solid 1px #b0bec9;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.3rem;
    color: #5f5f5f;
    text-decoration: none;
    margin: 10px;
}

.page-mobile-internal {
    height: 550px;
    border: solid 1px;
    overflow: auto;
    /*padding: 18px;*/
}