#top-info-bar {
    background: #f8f9fb;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    border-color: rgba(255, 255, 255, 0.1);
}

    #top-info-bar .container {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    #top-info-bar .topbar-left {
        gap: 12px;
    }

    #top-info-bar .topbar-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #6c757d;
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

        #top-info-bar .topbar-item i {
            font-size: 14px;
        }

        #top-info-bar .topbar-item:hover {
            color: #111;
        }

    #top-info-bar .divider {
        width: 1px;
        height: 14px;
        background: #ddd;
    }

    #top-info-bar .social-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        transition: all 0.25s ease;
        border: 1px solid #eee;
    }

        #top-info-bar .social-icon:hover {
            background: #0d6efd;
            color: #fff;
            transform: translateY(-2px);
        }


@media (max-width: 768px) {

    #top-info-bar .d-flex {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
    }

    #top-info-bar .topbar-left .topbar-item:first-child {
        display: none;
    }

    #top-info-bar .divider {
        display: none;
    }

    #top-info-bar .topbar-left {
        gap: 10px;
        flex-wrap: nowrap;
    }

    #top-info-bar .topbar-item {
        font-size: 12px;
    }

        #top-info-bar .topbar-item:nth-child(5) span {
            display: none;
        }

    #top-info-bar .topbar-right {
        gap: 6px;
    }

    #top-info-bar .social-icon {
        width: 24px;
        height: 24px;
    }
}
