/**
 * styles for mobile fixed bottom menu
*/
@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/**/
.mobile-nav {
    position: fixed;
    bottom:0;
    left:0;
    width: 100%;
    background-color:#425664;
    border-top: 1px solid #29353d;
    z-index: 10;
}
.mobile-nav > .inner{
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding:10px 0;*/
}
.mobile-nav .unit{
    color:inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    /*height: 75px;*/
    /*width: 80px;*/
    /*border: 1px solid #fff;*/
    width:33.333%;
    padding:3px;
    /*margin: 0 7px;*/
}
.mobile-nav .img-cont{
    position: relative;
    display: block;
    height: 0;
    width:20px;
    padding-bottom: 20px;
    margin: 0 auto 2px;
}
.mobile-nav .img{
    fill:#fff;
    position: absolute;
    display: block;
    width:100%;
    height: 100%;
}

.mobile-nav .text{
    font-size: 9px;
    color:#fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav .location{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}