.tag_cust2039203k .active-filter{
    background:#005df3;
    color: #fff;
}

.pagination-ajax_tagwrapper0998 a {
    padding: 5px;
    width: 25px;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 25px;
    font-family: "Gilroy";
    font-size: 16px;
    background: #e4e4e4;
    color: #929292;
    border-radius: 6px;
}

.pagination-ajax_tagwrapper0998 a.pagination-ajax-link.active {
    background: #005DF3;
    color: #fff !important;
}

.pagination-ajax_tagwrapper0998 {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* ===== Индикатор загрузки для AJAX ===== */

/* Блок затемнения */
#response.loading {
    position: relative;
    min-height: 200px;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Полупрозрачная подложка */
#response.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
    border-radius: 8px;
}

/* Анимированный спиннер */
#response.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #292F3A;
    border-radius: 50%;
    z-index: 11;
    animation: spin 0.8s linear infinite;
}

/* Анимация вращения */
@keyframes spin {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


