.menu_holder {
    position: absolute;
    z-index: 1000;
    left:0;
    bottom:0px;
    width:100vw;
    padding:0px;
    padding-bottom: 0px;
    box-sizing: border-box;

    transform: translate3d(0,0,30px);
    transition: all 0.3s;
    /*border-top:1px solid rgba(255,255,255,0.1);*/
}
.menu_holder.unavailable {
    transform: translate3d(0,100px,30px);
}
.menu_holder .the_menu {
    background-color:#062465;
    white-space: nowrap;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    transform:translate3d(0,0,2px);
    /*border-radius: 30px 30px 0 0;*/
    padding:20px;
    padding-top: 0;
    /*padding-bottom: 20px;*/

    /*height: calc(50px + env(safe-area-inset-bottom));*/
    transition: all 0.2s;

    margin:0px;
    border-radius: 30px 30px 0 0;
    padding-bottom: 20px;
}
.menuRow {
    opacity: 0;
    transition: all 0.2s;
}
.menuRow:first-child {
    opacity: 1;
}

.menu_holder .the_menu.more {
    height: calc(115px + env(safe-area-inset-bottom));
}
.menu_holder .the_menu.more .menuRow {
    opacity: 1 !important;
}

.menu_item {
    position: relative;
    display: inline-block;
    width:20%;
    text-align: center;
    padding:17px 0 5px 0;
    transition: all 0.2s;
    color:#FFF;
    font-family: 'Quicksand';
}
.menu_item i {
    font-size: 1.4em;
    transition: all 0.2s;
}
.menu_item span {
    margin-top: 5px;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.menu_holder .logo,.menu_holder .logo_ufs {
    display: none;
}
.menu_item.active, .menu_item.active i {
    color:#fbbb21;
}
.menu_item .barr {
    display: none;
    position: absolute;
    height: 3px; width: 100%;
    background-color:#1fe29e;
    top:-3px; left:0;
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(5px);
}
.menuRow:first-child .menu_item.active .barr {
    opacity: 1;
    transform: translateY(0px);
}