.tab-nav-container {
    background-color: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid gray;
    width: 100%;
    position: fixed;
    bottom: 0;
    text-decoration: none !important;
}

.tab-nav-container .tab {
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    margin: 0 10px;
    transition: background 0.5 linear;
    text-decoration: none !important;
}

.tab-nav-container .tab i {
    font-size: 2em;
    color: white;
}

.tab-nav-container .tab.active i {
    font-size: 1.5em;
}

.tab-nav-container .tab p {
    overflow: hidden;
    max-width: 0;
}

.tab-nav-container .tab.active p {
    margin-left: 10px;
    max-width: 200px;
    transition: max-width 0.4s linear;
    /* font-size: 34px !important; */
    padding: 5px;
    /* font-size: 40px !important; */
}

.tab-nav-container .tab.active.purple {
    /* background-color: rgba(5, 176, 51, 0.2); */
    color: rgb(15, 249, 31);
}

.tab-nav-container .tab.active.purple i {
    color: rgb(15, 249, 31);
}

.tab-nav-container .tab.active.pink {
    background-color: rgba(243, 185, 226, 0.2);
    color: rgb(255, 138, 220);
}

.tab-nav-container .tab.active.pink i {
    color: rgb(255, 138, 220);
}

.tab-nav-container .tab.active.yellow {
    background-color: rgba(230, 169, 25, 0.2);
    color: rgba(230, 169, 25, 1);
}

.tab-nav-container .tab.active.yellow i {
    color: rgba(230, 169, 25, 1);
}

.tab-nav-container .tab.active.teal {
    background-color: rgba(237, 164, 196, 0.167);
    color: rgb(69, 142, 245);
}

.tab-nav-container .tab.active.teal i {
    color: rgb(69, 142, 245);
}

.tab-nav-container .tab.active.orange {
    background-color: rgba(237, 164, 196, 0.167);
    color: rgb(35, 255, 207);
}

.tab-nav-container .tab.active.orange i {
    color: rgb(35, 255, 207);
}

@media (max-width: 450px) {
    /* .tab-nav-container {
        padding: 20px;
    } */

    .tab-nav-container .tab {
        padding: 0 10px;
        margin: 0;
        max-height: 45px;
    }

    .tab-nav-container .tab i {
        font-size: 1.8em;
    }

    .tab-nav-container .tab.purple i {
        font-size: 2.4em;
        color: rgb(45, 140, 66);
    }
}


.nav-link.tab:not(active) {
    background-color: #ddd9d9;
}