﻿@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');


.tab-nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 10px;
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    background-color: white;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.tab {
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}


.tab p {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    overflow: hidden;
    max-width: 0;
}

.tab.active p {
    margin-left: 10px;
    max-width: 200px;
    transition: max-width 0.4s linear;
}

