/* --- Header: Mobile Top Bar --- */

.tk-mobile-top-bar {
    display: none; /* Hidden by default */
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
}
.tk-mobile-branch-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tk-mobile-branch-selector .fas {
    font-size: 20px;
    color: var(--tk-dark-brown);
}
.tk-mobile-user-icon a {
    font-size: 28px;
    color: #444;
    text-decoration: none;
}
.tk-mobile-branch-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--tk-text-dark);
    text-decoration: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
}
.tk-mobile-branch-link:hover {
    color: var(--tk-golden);
}

@media (max-width: 767px) {
    .tk-mobile-top-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}   