/**
 * ANSES Today Payments - 5 Design Styles
 * Maintaining consistency with main calendar design
 */

/* Common Widget Wrapper */
.anses-today-payments-widget {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 20px 0;
}

.anses-today-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.anses-today-date {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.anses-today-empty {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
    font-size: 16px;
    font-style: italic;
}

/* ========================================
   STYLE 1: TABLA COMPACTA
   Similar al calendario principal, diseño tabular
   ======================================== */
.anses-design-style_1 .anses-today-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.anses-design-style_1 .anses-today-table thead {
    background: #34495e;
    color: #fff;
}

.anses-design-style_1 .anses-today-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.anses-design-style_1 .anses-today-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.2s;
}

.anses-design-style_1 .anses-today-table tbody tr:hover {
    background-color: #f8f9fa;
}

.anses-design-style_1 .anses-today-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #2c3e50;
}

.anses-design-style_1 .anses-dni-badge-style1 {
    display: inline-block;
    background: #e8f4f8;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   STYLE 2: TARJETAS GRID
   Diseño en cuadrícula con tarjetas
   ======================================== */
.anses-design-style_2 .anses-today-style-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.anses-design-style_2 .anses-payment-card {
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    padding: 16px;
    transition: all 0.3s ease;
}

.anses-design-style_2 .anses-payment-card:hover {
    background: #e8f4f8;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.anses-design-style_2 .anses-card-benefit {
    font-size: 16px;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.anses-design-style_2 .anses-card-dni {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anses-design-style_2 .anses-dni-label {
    font-size: 14px;
    color: #7f8c8d;
}

.anses-design-style_2 .anses-dni-number {
    background: #34495e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
}

/* ========================================
   STYLE 3: LÍNEA DE TIEMPO
   Diseño vertical tipo timeline
   ======================================== */
.anses-design-style_3 .anses-today-style-3 {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
}

.anses-design-style_3 .anses-today-style-3::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3498db;
}

.anses-design-style_3 .anses-timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.anses-design-style_3 .anses-timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.anses-design-style_3 .anses-timeline-marker {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3498db;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #3498db;
}

.anses-design-style_3 .anses-timeline-content {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    border-left: 4px solid #3498db;
}

.anses-design-style_3 .anses-timeline-benefit {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.anses-design-style_3 .anses-timeline-dni {
    font-size: 14px;
    color: #7f8c8d;
}

.anses-design-style_3 .anses-timeline-dni strong {
    color: #34495e;
    font-size: 16px;
}

/* ========================================
   STYLE 4: BADGES INLINE
   Diseño compacto con badges en línea
   ======================================== */
.anses-design-style_4 .anses-today-style-4 {
    margin-top: 10px;
}

.anses-design-style_4 .anses-inline-payment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px 10px 0;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.anses-design-style_4 .anses-inline-payment:hover {
    background: #e8f4f8;
    border-color: #3498db;
}

.anses-design-style_4 .anses-inline-benefit {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.anses-design-style_4 .anses-inline-separator {
    color: #3498db;
    font-weight: 700;
    font-size: 16px;
}

.anses-design-style_4 .anses-inline-dni {
    background: #3498db;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
}

/* ========================================
   STYLE 5: LISTA MINIMALISTA
   Diseño limpio tipo lista con separadores
   ======================================== */
.anses-design-style_5 .anses-minimal-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.anses-design-style_5 .anses-minimal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.2s ease;
}

.anses-design-style_5 .anses-minimal-item:last-child {
    border-bottom: none;
}

.anses-design-style_5 .anses-minimal-item:hover {
    padding-left: 10px;
    background: #f8f9fa;
}

.anses-design-style_5 .anses-minimal-benefit {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.anses-design-style_5 .anses-minimal-dni {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #bdc3c7;
}

/* ========================================
   STYLE 6: LISTA NEOBRUTAL
   Inspirado en el diseño del widget diario (bold, bordes negros)
   ======================================== */
.anses-today-payments-widget.anses-design-style_6 {
    padding: 0;
    border: 4px solid #000;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
}

.anses-design-style_6 .anses-today-title {
    margin: 0;
    padding: 14px 16px 4px;
    background: #0f172a;
    color: #facc15;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.anses-design-style_6 .anses-today-date {
    margin: 0;
    padding: 0 16px 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 4px solid #000;
}

.anses-design-style_6 .anses-today-style-6 {
    background: #ffffff;
    padding: 8px;
}

.anses-design-style_6 .anses-neo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 2px solid #f1f5f9;
}

.anses-design-style_6 .anses-neo-row:last-child {
    border-bottom: 0;
}

.anses-design-style_6 .anses-neo-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.anses-design-style_6 .anses-neo-row {
    --anses-neo-accent: #0f172a;
    --anses-neo-accent-bg: #f1f5f9;
}

.anses-design-style_6 .anses-neo-color-emerald {
    --anses-neo-accent: #059669;
    --anses-neo-accent-bg: #ecfdf5;
}

.anses-design-style_6 .anses-neo-color-blue {
    --anses-neo-accent: #2563eb;
    --anses-neo-accent-bg: #eff6ff;
}

.anses-design-style_6 .anses-neo-color-purple {
    --anses-neo-accent: #7c3aed;
    --anses-neo-accent-bg: #f5f3ff;
}

.anses-design-style_6 .anses-neo-color-amber {
    --anses-neo-accent: #d97706;
    --anses-neo-accent-bg: #fffbeb;
}

.anses-design-style_6 .anses-neo-color-slate {
    --anses-neo-accent: #334155;
    --anses-neo-accent-bg: #f1f5f9;
}

.anses-design-style_6 .anses-neo-icon-wrap {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--anses-neo-accent-bg);
    color: var(--anses-neo-accent);
    flex: 0 0 auto;
}

.anses-design-style_6 .anses-neo-text {
    min-width: 0;
}

.anses-design-style_6 .anses-neo-title {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anses-design-style_6 .anses-neo-subtitle {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anses-design-style_6 .anses-neo-right {
    text-align: right;
    flex: 0 0 auto;
}

.anses-design-style_6 .anses-neo-dni-label {
    font-size: 10px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.anses-design-style_6 .anses-neo-dni-value {
    margin-top: 2px;
    font-size: 34px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .anses-today-payments-widget {
        padding: 15px;
    }

    .anses-today-title {
        font-size: 20px;
    }

    .anses-today-date {
        font-size: 14px;
    }

    /* Style 1: Table */
    .anses-design-style_1 .anses-today-table {
        font-size: 13px;
    }

    .anses-design-style_1 .anses-today-table th,
    .anses-design-style_1 .anses-today-table td {
        padding: 10px 8px;
    }

    /* Style 2: Grid */
    .anses-design-style_2 .anses-today-style-2 {
        grid-template-columns: 1fr;
    }

    /* Style 3: Timeline */
    .anses-design-style_3 .anses-today-style-3 {
        padding-left: 25px;
    }

    .anses-design-style_3 .anses-timeline-marker {
        left: -22px;
        width: 12px;
        height: 12px;
    }

    /* Style 4: Inline */
    .anses-design-style_4 .anses-inline-payment {
        display: flex;
        width: 100%;
        margin: 0 0 8px 0;
    }

    /* Style 5: Minimal */
    .anses-design-style_5 .anses-minimal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .anses-design-style_5 .anses-minimal-dni {
        align-self: flex-start;
    }

    /* Style 6: Neobrutal */
    .anses-today-payments-widget.anses-design-style_6 {
        border-radius: 24px;
        box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 1);
    }

    .anses-design-style_6 .anses-today-date {
        font-size: 20px;
    }

    .anses-design-style_6 .anses-neo-row {
        padding: 12px 12px;
        gap: 12px;
    }

    .anses-design-style_6 .anses-neo-icon-wrap {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .anses-design-style_6 .anses-neo-title {
        font-size: 16px;
    }

    .anses-design-style_6 .anses-neo-dni-value {
        font-size: 30px;
    }

    /* Style 7 Mobile */
    .anses-design-style_7 .anses-style7-header {
        padding: 15px;
    }

    .anses-design-style_7 .anses-style7-title-text {
        font-size: 16px;
    }

    .anses-design-style_7 .anses-style7-date {
        font-size: 14px;
        padding: 10px;
    }

    .anses-design-style_7 .anses-neo-dni-value {
        font-size: 28px;
    }
}

/* ========================================
   STYLE 7: NEOBRUTAL CUSTOM V2 (REFINED)
   ======================================== */
.anses-today-payments-widget.anses-design-style_7 {
    padding: 0;
    border: 3px solid #000;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #000;
}

/* Hide default elements for this style to avoid redundancy */
.anses-design-style_7>.anses-today-title,
.anses-design-style_7>.anses-today-date {
    display: none !important;
}

/* Custom Header (Blue) */
.anses-design-style_7 .anses-style7-header {
    background: #2563eb;
    /* Vibrant Blue */
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 3px solid #000;
    position: relative;
    overflow: hidden;
}

/* Decorative diagonal lines pattern overlay */
.anses-design-style_7 .anses-style7-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 10px,
            transparent 10px,
            transparent 20px);
    pointer-events: none;
}

.anses-design-style_7 .anses-style7-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

/* The text Title */
.anses-design-style_7 .anses-style7-title-text {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 3px 3px 0px #000;
    /* Pop-out effect */
}

/* Logo Image (if user adds one via CSS) */
.anses-design-style_7 .anses-style7-logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.3));
}

/* Custom Date Box (Yellow) */
.anses-design-style_7 .anses-style7-date {
    background: #facc15;
    /* Yellow */
    color: #000;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    padding: 12px 20px;
    border-bottom: 3px solid #000;
    border-bottom: 3px solid #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    user-select: none;
}

/* Nav Buttons */
.anses-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: #000;
    width: 32px;
    height: 32px;
}

.anses-nav-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.2);
}

.anses-nav-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Date text specific adjustment */
.anses-design-style_7 .anses-style7-date-text {
    text-align: center;
    flex-grow: 1;
    /* Center the text between arrows */
    font-weight: 800;
    min-width: 150px;
}

/* Header Search Button (New Location) */
.anses-design-style_7 .anses-style7-h-search-btn {
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 2px solid #000;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    /* Hard shadow pop */
    transition: all 0.1s ease;
    white-space: nowrap;
}

.anses-design-style_7 .anses-style7-h-search-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
}

.anses-design-style_7 .anses-style7-h-search-btn:active {
    transform: translate(3px, 3px);
    box-shadow: none;
}

/* List Container */
.anses-design-style_7 .anses-neo-list {
    background: #fff;
}

/* Rows */
.anses-design-style_7 .anses-neo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 3px solid #000;
    /* Thicker separator */
    background: #fff;
    transition: background 0.1s ease;
}

.anses-design-style_7 .anses-neo-row:last-child {
    border-bottom: none;
}

.anses-design-style_7 .anses-neo-row:hover {
    background: #eef2ff;
    /* Very light blue */
}

/* Icons */
.anses-design-style_7 .anses-neo-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* Slight round, keeping blocky feel */
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    box-shadow: 4px 4px 0 0 #000;
    /* Hard shadow offset */
    margin-right: 4px;
    /* Space for shadow */
    flex-shrink: 0;
}

.anses-design-style_7 .anses-neo-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.anses-design-style_7 .anses-neo-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.anses-design-style_7 .anses-neo-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Grid Layout Option for Desktop - 3-Column Horizontal Cards */
/* Style 7 Desktop Layout - Default Auto-Responsive (Smart Grid) */
@media (min-width: 900px) {

    /* Apply to ALL Style 7 instances on desktop. No extra class needed. */
    .anses-design-style_7 .anses-today-style-7 .anses-neo-list {
        display: grid !important;
        /* Auto-fit for perfect adaptability: 2 items=50%, 3 items=33% */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        background: #fff;
        border-bottom: none;
        padding: 20px 20px 5px 20px !important;
    }

    /* Card Styling */
    .anses-design-style_7 .anses-today-style-7 .anses-neo-row {
        width: auto !important;
        border: 3px solid #000 !important;
        border-radius: 12px !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 15px !important;
        min-height: 120px;
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
        /* Subtle depth */
    }

    /* Left side (Icon + Text) */
    .anses-design-style_7 .anses-today-style-7 .anses-neo-left {
        width: 100%;
        margin-bottom: 12px;
        max-width: none;
    }

    /* DNI Bar - Full Width & Foolproof (APB) */
    .anses-design-style_7 .anses-today-style-7 .anses-neo-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        /* Label left, Value right */
        align-items: center;
        background: #000;
        padding: 10px 15px;
        transform: none;
        height: auto;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .anses-design-style_7 .anses-today-style-7 .anses-neo-dni-label {
        color: #fff;
        margin-bottom: 0;
        margin-right: 0;
        font-size: 13px;
        /* Larger */
        font-weight: 800;
        letter-spacing: 1px;
    }

    .anses-design-style_7 .anses-today-style-7 .anses-neo-dni-value {
        font-size: 16px;
        font-weight: 900;
        text-align: right;
        line-height: 1.3;
    }

    /* Footer styling - Compact Pill Button for Desktop */
    .anses-design-style_7 .anses-today-style-7 .anses-style7-footer {
        grid-column: 1 / -1;
        background: #fff;
        padding: 10px 20px 20px 20px;
        border-top: none;
        text-align: center;
        /* Center the button */
        display: flex;
        justify-content: center;
    }

    .anses-design-style_7 .anses-today-style-7 .anses-style7-footer-link {
        border-radius: 50px;
        border-width: 3px;
        font-size: 16px;
        width: auto !important;
        /* Don't stretch */
        display: inline-block;
        padding: 12px 40px;
        /* Wider pill */
        min-width: 200px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .anses-design-style_7 .anses-today-style-7 .anses-style7-footer-link:hover {
        transform: translateY(-2px);
        box-shadow: 4px 4px 0px #000;
    }
}

/* DNI Right Side - Fixed Size */
.anses-design-style_7 .anses-neo-right {
    flex-shrink: 0;
    /* Never shrink */
    width: 80px;
    /* Fixed width */
    height: 45px;
    /* Fixed height for consistency */
    text-align: right;
    background: #000;
    color: #fff;
    padding: 0;
    /* Let flex center it */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-1deg);
}

.anses-design-style_7 .anses-neo-dni-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    line-height: 1;
    margin-bottom: 2px;
}

.anses-design-style_7 .anses-neo-dni-value {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    /* White on Black bg */
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .anses-design-style_7 .anses-style7-header {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    .anses-design-style_7 .anses-style7-title-text {
        font-size: 18px;
    }

    .anses-design-style_7 .anses-style7-date {
        font-size: 13px;
        padding: 10px;
    }

    .anses-design-style_7 .anses-neo-row {
        padding: 16px;
    }

    .anses-design-style_7 .anses-neo-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .anses-design-style_7 .anses-neo-title {
        font-size: 16px;
    }

    .anses-design-style_7 .anses-neo-dni-value {
        font-size: 20px;
    }
}

/* Footer Link Area */
.anses-design-style_7 .anses-style7-footer {
    padding: 15px 20px 20px 20px;
    background: #fff;
    /* Seamless integration */
}

.anses-design-style_7 .anses-style7-footer-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
    background: #fff;
    border: 3px solid #000;
    color: #000 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.anses-design-style_7 .anses-style7-footer-link:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
    background: #f8f9fa;
}

.anses-design-style_7 .anses-style7-footer-link:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px #000;
}