.nav-bar__wrap {
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background-color: #0094F4;
}

@media only screen and (min-width: 360px) {
    .nav-bar {
        position: fixed;
        bottom: 0px;
        width: 100vw;
        z-index: 9991;
    }

    .nav-bar a {
        text-decoration: none;
        align-items: center;
    }
}

@media only screen and (min-width: 768px) {

    .nav-bar__wrap {
        background: transparent !important;
    }
}


@media only screen and (max-width: 767px) {
    .nav-bar a {
        flex:1;
        border-radius: 0px;
        margin: 0;
        align-items: center;
        flex-direction: column;
    }

}

.nav-bar__item a {
    background-color: #0094F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 0;
    text-decoration: none;
    background-color: #0094F4;
}

.nav-bar__item__icon {
    width: 18px;
    height: 18px;
}

.nav-bar__item__icon img {
    max-width: 100%;
    max-height: 100%;
}

.nav-bar__item__title {
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 2px;
    text-align: center;
    width: 100%;
}

@media only screen and (min-width: 360px) {
    .nav-bar__item__icon {
        width: 25.2px;
        height: 24.82px;
    }

    .nav-bar__item__title {
        font-size: 10px;
    }
}

/*# sourceMappingURL=navbar.css.map */