.web-sticky-action-bar-shell {
    --web-sticky-action-bar-height: 0px;
    position: relative;
    margin-top: 12px;
}

.container-fluid-main.has-managed-sticky-action-bar {
    padding-bottom: 0;
}

.container-fluid-main.has-managed-fill-height-table {
    padding-bottom: 0;
}

.web-sticky-action-bar__spacer {
    display: none;
    height: 0;
}

.web-sticky-action-bar {
    position: sticky;
    bottom: 0;
    z-index: 30;
    box-sizing: border-box;
    margin-top: 0;
    padding: 10px 12px;
    border: 1px solid #c7d6dd;
    border-radius: 8px;
    background: #e7eef2;
    box-shadow: 0 -10px 18px rgba(12, 12, 12, 0.06);
}

.web-sticky-action-bar-shell.is-managed .web-sticky-action-bar__spacer {
    display: block;
    height: var(--web-sticky-action-bar-height);
}

.web-sticky-action-bar-shell.is-managed .web-sticky-action-bar {
    position: fixed;
    bottom: 0;
    z-index: 1030;
    margin-top: 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.web-sticky-action-bar__feedback {
    display: none;
    width: 100%;
    margin: 0 0 8px 0;
}

.web-sticky-action-bar__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.web-sticky-action-bar--start .web-sticky-action-bar__actions {
    justify-content: flex-start;
}

.web-sticky-action-bar--center .web-sticky-action-bar__actions {
    justify-content: center;
}

.web-sticky-action-bar--end .web-sticky-action-bar__actions {
    justify-content: flex-end;
}

.web-sticky-action-bar--split .web-sticky-action-bar__actions {
    justify-content: space-between;
}

.web-sticky-action-bar__group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.web-sticky-action-bar__input-wrap {
    display: inline-flex;
    flex: 0 1 340px;
    align-items: center;
    gap: 8px;
    width: min(340px, 100%);
    min-width: 280px;
    max-width: 100%;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #c7d6dd;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.web-sticky-action-bar__input-wrap i {
    color: #2D6479;
    font-size: 0.95rem;
}

.web-sticky-action-bar__input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0F0F0F;
    outline: none;
}

.web-sticky-action-bar__input::placeholder {
    color: #7c8690;
}

.web-sticky-action-bar__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #6f7a83;
    cursor: pointer;
}

.web-sticky-action-bar__clear:hover {
    background: rgba(45, 100, 121, 0.08);
    color: #2D6479;
}

.web-sticky-action-bar__group--end {
    margin-left: auto;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.web-sticky-action-bar__group--end .web-sticky-action-bar__input-wrap:last-child {
    margin-left: auto;
}

.web-sticky-action-bar .btn {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.web-sticky-action-bar .btn.disabled,
.web-sticky-action-bar .btn:disabled {
    cursor: not-allowed;
}

.web-sticky-action-bar .pagination {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.web-sticky-action-bar .pagination .page-item {
    margin: 0;
}

.web-sticky-action-bar .pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #2D6479;
    border-radius: 8px;
    background: transparent;
    color: #2D6479;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.web-sticky-action-bar .pagination .page-link:hover,
.web-sticky-action-bar .pagination .page-link:focus {
    background: #2D6479;
    border-color: #2D6479;
    color: #F2F2F2;
    text-decoration: none;
    box-shadow: none;
}

.web-sticky-action-bar .pagination .page-item.disabled .page-link {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 768px) {
    .web-sticky-action-bar {
        padding: 8px 10px;
    }

    .web-sticky-action-bar-shell.is-managed .web-sticky-action-bar {
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .web-sticky-action-bar__actions {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .web-sticky-action-bar__group {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .web-sticky-action-bar__input-wrap {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .web-sticky-action-bar--split .web-sticky-action-bar__actions {
        justify-content: space-between;
    }

    .web-sticky-action-bar--split .web-sticky-action-bar__group {
        width: auto;
    }

    .web-sticky-action-bar__group--end {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .web-sticky-action-bar .pagination {
        gap: 6px;
    }

    .web-sticky-action-bar .pagination .page-link {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }
}
