.online-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.online-check-all,
.online-delete-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.online-check-all {
    cursor: pointer;
}

.online-selected-count {
    font-size: 14px;
    opacity: .75;
}

.online-delete-button {
    min-width: 96px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color .2s, border-color .2s, opacity .2s;
}

.online-delete-button:hover:not(:disabled),
.online-delete-button:focus-visible:not(:disabled) {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
}

.online-delete-button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.online-check-column {
    width: 48px;
    padding-right: 8px;
    padding-left: 8px;
    border-bottom:1px solid #7575CB;
}

.online-list-actions input[type="checkbox"],
.online-check-column input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fff;
    cursor: pointer;
}

.sound_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 767px) {
    .online-list-actions {
        align-items: flex-start;
    }

    .online-delete-wrap {
        gap: 8px;
    }

    .online-check-column {
        width: 38px;
        padding-right: 4px;
        padding-left: 4px;
    }
}

@media (min-width: 768px) {
    .online-check-all {
        display: none;
    }
}
