﻿.online-support-bar {
    position: fixed;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

body.modal-open .online-support-bar {
    z-index: 1030;
}

.osb-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.osb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 5px 8px;
    text-decoration: none;
    color: #0393fb;
    font-weight: 700;
    font-size: 19px;
    white-space: nowrap;
    overflow: hidden;
}

.osb-item:hover {
    opacity: 0.75;
    text-decoration: none;
    color: #1a1a2e;
}

.osb-divider {
    width: 1px;
    height: 52px;
    background: #0393fb;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .osb-label {
        display: none;
    }

    .osb-item {
        font-size: 11px;
        gap: 5px;
        padding: 10px 4px;
    }

        .osb-item svg,
        .osb-item img {
            width: 36px !important;
            height: 36px !important;
            flex-shrink: 0;
        }

    .osb-inner {
        max-width: 100%;
        border-radius: 0;
    }
}
