
.bottom-tab {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    /* height: 100vh; */
    margin: 0;
    /* background-color: #311740; */
    font-family: 'Poppins', sans-serif;
    z-index: 99999999999;
}

.nav {
    display: flex;
    flex-direction: row;
    /* width: 375px; */
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 10px 20px;
    /* border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px; */
    /* border-radius: 10px; */
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.8);
}

.bottom-tab .nav a{
    color: #202020
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.nav-text {
    font-size: 14px;
    margin: auto;
    text-align: center;
    font-weight: 500;
    display: none;
    transition: all 0.3s ease;
}

.material-icons {
    display: inline;
    font-size: 20px;
    transition: color .3s;
}

.nav-item.active {
    flex-grow: 3;
    border-radius: 30px;
    background: #eee;
    justify-content: flex-start;
}

.nav-item.active>.nav-text {
    display: inline-block;
}






.nav-item.active>.material-icons{
    color: #CF3774;
}

.material-icons.nav~.nav~text {
    color: #CF3774;
}


@media only screen and (min-width: 574px) {
    .bottom-tab{
        display: none;
    }
}

@media only screen and (max-width: 575.98px) {
    .wrapper{
        padding-top: 50px!important;
    }
}

@media (max-width: 350px) {
    .nav-text {
        font-size: 10px;
    }
    
    .material-icons {
        font-size: 15px;
    }
}