.tmw-mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 399;
    background: var(--white);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}.tmw-mobile-bottom-bar .tmw-mbb-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(min-content, 1fr));
    list-style: none;
    overflow-y: hidden;
    padding: 0;
    gap: 5px;
}.tmw-mobile-bottom-bar .tmw-mbb-items li a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 1.3;
    padding: 10px 2px 5px;
    font-size: 85%;
    font-weight: 600;
    color: var(--black4th);
    cursor: pointer;
}.tmw-mobile-bottom-bar .tmw-mbb-items li.active a, .tmw-mobile-bottom-bar .tmw-mbb-items li a:hover {
    color: var(--primary);
}.tmw-mobile-bottom-bar .tmw-mbb-items li.active a:after {
    position: absolute;
    content: '';
    width: calc(100% - 25%);
    height: 5px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(
    --primary);
    border-radius: 0 0 25px 25px;
}.tmw-mobile-bottom-bar .tmw-mbb-items li a p {
    margin: 0;
}
