.c-cards-bar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    flex-shrink: 0;
    min-height: 48px;
    padding: 16px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .c-cards-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .c-cards-bar::-webkit-scrollbar {
        display: none;
    }

    .c-cards-bar > * {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

.c-cards-bar__icon svg {
    width: 16px;
    height: 16px;
}

.c-cards-bar__icon svg path {
    fill: #0098da;
}

.c-cards-bar__icon--muted svg path {
    fill: #6e6e6e;
}

.c-cards-bar__footer {
    transition: background 0.2s linear;
    cursor: pointer;
}

.c-cards-bar__footer:hover {
    background: #ebebeb !important;
}
