.bottom-menu {
    background: transparent;
    border-bottom: 1px solid #fff;
    font-family: Arial, sans-serif;
        padding-bottom: 5px;
    margin-bottom: 10px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 5px 16px;
}

/* LEFT MENU */
.bottom-row .left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.bottom-row .left ul li {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 0 14px;
    position: relative;
    cursor: pointer;
}


.bottom-row .left ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    color: rgba(255,255,255,.6);
}


.bottom-row .right {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.bottom-row .right em {
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bottom-row {
        flex-direction: column;
        height: auto;
        padding: 8px;
        gap: 6px;
    }
}
