/* ================All Pump Series Start ====================     */
    
    /* Section Main Style */
    .catalog-section {
        padding: 100px 0;
        background: #fdfdfd; /* Very clean light grey */
    }

    .header-content {
        margin-bottom: 80px;
        text-align: center;
    }

    .header-content h2 {
        font-size: 38px;
        font-weight: 800;
        
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    /* Icon instead of PDF */
    .title-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .title-divider .line {
        height: 4px;
        width: 60px;
        background: #0056b3;
        border-radius: 10px;
    }

    .title-divider i {
        font-size: 30px;
        color: #0056b3;
        animation: rotateGear 5s linear infinite;
    }

    @keyframes rotateGear {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Grid & Card Spacing */
    .custom-row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -20px;
        margin-left: -20px;
        row-gap: 40px; /* Vertical gap between cards */
    }

    .card-container {
        padding: 0 20px; /* Horizontal gap */
    }

    /* Product Card Styling */
    .modern-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        text-decoration: none !important;
        display: block;
        transition: all 0.4s ease;
        border: 1px solid #eaeaea;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: 100%;
    }

    .modern-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
        border-color: #0056b3;
    }

    /* Image Box */
    .image-box {
        position: relative;
        padding: 30px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 250px;
        overflow: hidden;
    }

    .image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
    }

    .modern-card:hover .image-box img {
        transform: scale(1.15);
    }

    /* Content Styling */
    .card-content {
        padding: 25px 20px;
        background: #fff;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .card-content h3 {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin: 0;
        transition: color 0.3s ease;
        line-height: 1.4;
    }

    .modern-card:hover .card-content h3 {
        color: #0056b3;
    }

    /* Decorative Button effect */
    .view-btn {
        display: inline-block;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 600;
        color: #0056b3;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .modern-card:hover .view-btn {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .card-container { width: 50%; }
    }

    @media (max-width: 576px) {
        .card-container { width: 100%; }
        .header-content h2 { font-size: 28px; }
    }       
/* ==================All Pump Series END ======================= */

    /* ==============Retrofit-space parts Start============== */
:root {
        --syno-blue: #0056b3;
        --light-bg: #fdfdfd;
        --border-color: #eee;
    }

    #feature {
        padding: 80px 0;
        background: var(--light-bg);
      
    }

    /* Main Title Section */
    .product_header {
        margin-bottom: 50px;
        position: relative;
    }

    .product_header h1 {
        font-size: 3rem;
        font-weight: 800;
        color: #222;
        margin-top: 20px;
        text-transform: uppercase;
    }

    /* Modern Banner Image */
    .img-container {
        border-radius: 20px;
        /* overflow: hidden; */
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        
        background: #fff;
        
    }

    .img-container img {
        width: 100%;
        transition: transform 0.5s ease;
        border-radius: 15px;
    }

    .img-container:hover img {
        transform: scale(1.02);
    }

    /* Content Styling */
    .product-description p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 25px;
    }

    .product-description span {
        color: var(--syno-blue);
        font-weight: 700;
    }

    /* Feature Grid (Benefits) */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        background: #f1f7ff;
        padding: 30px;
        border-radius: 15px;
        border-left: 5px solid var(--syno-blue);
        margin: 30px 0;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #333;
    }

    .benefit-item i {
        color: var(--syno-blue);
        font-size: 14px;
    }

    /* Section Headers */
    .section-sub-title {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 40px 0 20px;
        border-bottom: 2px solid var(--syno-blue);
        display: inline-block;
        padding-bottom: 5px;
    }

    /* Sidebar Links Styling */
    .pro_links {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        position: sticky;
        top: 20px;
        border: 1px solid var(--border-color);
    }

    .pro_links h4 {
        font-weight: 800;
        margin-bottom: 25px;
        color: var(--syno-blue);
        text-transform: uppercase;
        font-size: 18px;
        border-left: 4px solid var(--syno-blue);
        padding-left: 15px;
    }

    .inter_link {
        list-style: none;
        padding: 0;
    }

    .inter_link li {
        margin-bottom: 12px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 10px;
    }

    .inter_link li a {
        color: #444;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
    }

    .inter_link li a::after {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        opacity: 0;
        transition: 0.3s;
    }

    .inter_link li a:hover {
        color: var(--syno-blue);
        padding-left: 8px;
    }

    .inter_link li a:hover::after {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .benefits-grid { grid-template-columns: 1fr; }
        .product_header h1 { font-size: 2rem; }
        .pro_links { margin-top: 50px; position: relative; }
    }
/* Container for the badge positioning */
.img-container {
    position: relative; /* Essential for the badge to stick to the image */
}

/* The Animated Badge */
.experience-badge {
    position: absolute;
    right: -20px;
    top: 15px;
    width: 100px;
    height: 100px;
    background: var(--syno-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite; /* The movement */
}

.experience-badge span {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge small {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Animation: Gentle floating and slight rotation */
@keyframes floatBadge {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Adjust for mobile so it doesn't overlap too much */
@media (max-width: 768px) {
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 10px;
        bottom: 10px;
    }
    .experience-badge span { font-size: 18px; }
}

    /* ==============Retrofit-space parts End============== */


    /* --- 30 Years Rotating Badge --- */
/* .experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: #0056b3;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
    animation: rotateOuter 12s linear infinite;  
} */

/* .badge-inner {
    text-align: center;
    animation: rotateInner 12s linear infinite; 
} */

.badge-inner span { display: block; font-size: 24px; font-weight: bold; line-height: 1; }
.badge-inner small { font-size: 10px; text-transform: uppercase; }

@keyframes rotateOuter { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateInner { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* --- Table & List Styling --- */
.custom-styled-table thead { background-color: #0056b3; color: white; }
.clean-list { list-style: none; padding-left: 0; margin-bottom: 20px; }
.clean-list li { margin-bottom: 10px; display: flex; align-items: flex-start; }
.clean-list i { color: #0056b3; margin-right: 10px; margin-top: 4px; }

.app-vars { margin: 20px 0; }
.var-tag { 
    background: #f1f1f1; 
    padding: 8px 15px; 
    border-radius: 20px; 
    margin-right: 10px; 
    font-weight: bold; 
    border-left: 3px solid #0056b3;
}

.highlight-list li i { color: #28a745; } /* Green check for advantages */




/* =============== progressive cavity================= */
/* Responsive Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 6px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Text Justification */
.justified-text, .syno-card p {
    text-align: justify;
    line-height: 1.7;
}

/* Responsive Navigation */
/* .nav.filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.nav.filter li a {
    display: block;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    color: #444;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: 0.3s;
    text-decoration: none;
}

.nav.filter li a.active, .nav.filter li a:hover {
    background: #0093DD !important;
    color: #fff !important;
    border-color: #0093DD;
    box-shadow: 0 5px 15px rgba(0, 147, 221, 0.3);
} */


.nav.filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
    list-style: none;
    padding: 10px;
}

.nav.filter li a {
    position: relative;
    display: block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px); /* Modern frosted glass effect */
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Unique Angled Shape */
}

.nav.filter li a.active, .nav.filter li a:hover {
    background: #0093DD;
    color: #fff !important;
    border-color: #0093DD;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 147, 221, 0.2);
}



/* Feature Cards */
.syno-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #0093DD;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}
.syno-card:hover {
    transform: translateY(-5px);
}

/* Image Preview Box */
.preview-box {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.4s;
}
.preview-box:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Title Font Fix for Header Content */
.header-content h2 {
    font-weight: 700;
    text-transform: uppercase;
}

 
.tabing-section{
    padding-top:50px;
}

/* Big Image & Desktop Focus */
#designadvantage .row {
    padding: 40px 0;
}

#designadvantage .preview-box {
    background: #fff;
    border-radius: 25px;
    padding: 15px; /* Reduced padding to let image be bigger */
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    width: 100%; /* Full width of column */
    margin: 0 auto;
}

#designadvantage .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

/* BIG IMAGE FIX: Force the image to use all available space */
#designadvantage .preview-box img {
    width: 100%; 
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

/* Attractive Hover: Glow + Big Zoom */
#designadvantage .preview-box:hover {
    box-shadow: 0 30px 70px rgba(0, 147, 221, 0.25);
    transform: translateY(-10px);
    border-color: #0093DD;
}

#designadvantage .preview-box:hover img {
    transform: scale(1.08); /* Deep zoom effect */
}

/* Pro Name Styling */
#designadvantage .pro_name {
    margin: 30px 0 15px 0;
    font-size: 26px; /* Bigger font */
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scanner Animation (Premium Look) */
#designadvantage .img-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 147, 221, 0.05),
        rgba(0, 147, 221, 0.4),
        transparent
    );
    animation: bigScan 4s infinite;
}

@keyframes bigScan {
    0% { top: -100%; }
    100% { top: 100%; }
}


/* Drive Arrangement Specific Styling */
#drivearrangement {
    padding: 30px 0;
}

#drivearrangement .preview-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Floating & Blue Glow Effect */
#drivearrangement .preview-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 147, 221, 0.15);
    border-color: var(--syno-blue);
}

/* Image Wrapper with Soft Zoom */
#drivearrangement .img-wrapper {
    background: #f9f9f9; /* Light grey background to make PNGs pop */
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

#drivearrangement .img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

#drivearrangement .preview-box:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Responsive Font for Product Names */
#drivearrangement .pro_name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    transition: color 0.3s ease;
}

#drivearrangement .preview-box:hover .pro_name {
    color: var(--syno-blue);
}

/* Responsive adjustment for small devices */
@media (max-width: 576px) {
    #drivearrangement .preview-box {
        margin-bottom: 20px;
    }
    #drivearrangement .pro_name {
        font-size: 16px;
    }
}

/* --- Full Card Image Style --- */
.feature-wrap {
    background: #fff;
    margin-bottom: 30px;
    padding: 0; /* Card ki internal padding khatam kar di */
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden; /* Round corners image par bhi apply honge */
    display: flex;
    flex-direction: column;
}

/* Image Wrapper: Poori width lene ke liye */
.feature-wrap a[rel="example_group"] {
    display: block;
    width: 100%; 
    height: 220px; /* Aap isse height adjust kar sakte hain */
    margin: 0; 
    padding: 0;
}

.feature-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Image poore box ko cover karegi bina khiche */
    transition: transform 0.6s ease;
}

/* Heading: Image ke turant niche */
.feature-wrap h2 {
    font-size: 16px;
    margin: 0; 
    padding: 15px 10px; /* Text ke liye thodi space card ke andar */
    background: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-wrap h2 a {
    color: #333;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
}

/* Hover Effects */
.feature-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.feature-wrap:hover img {
    transform: scale(1.1);
}

.feature-wrap:hover h2 a {
    color: #007bff;
}

/* Mobile responsive height */
@media (max-width: 576px) {
    .feature-wrap a[rel="example_group"] {
        height: 180px;
    }
}

/* ================positive displacment screw pump================ */

   
 

        .apss-eccentric-section {
            padding: 0px 0px 20px;
        }

        .apss-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Side-by-Side Flex Layout */
        .apss-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 40px;
        }

        /* Left Column: Content */
        .apss-content-col {
            flex: 1;
            min-width: 300px;
        } 

        .apss-description p {
            font-size: 16px;
            color: #444;
            margin-bottom: 20px;
            text-align: justify;
        }

        .apss-brand-note {
            font-style: normal;
            color: #666;
        }

       
        /* Accordion Styling */
.apss-accordion{
    width:100%;
    max-width:100%;
}

        .apss-acc-item {
            border-top: 1px solid #eee;
        }

        .apss-acc-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
            cursor: pointer;
            transition: background 0.2s;
        }

        .apss-acc-title {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .apss-acc-title i {
            font-size: 20px;
            color: #000;
        }

        .apss-acc-title span {
            font-weight: 700;
            color: #000;
            font-size: 17px;
        }

        .apss-icon {
            font-size: 24px;
            color: #ccc;
            transition: transform 0.3s ease;
        }

        .apss-acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding-left: 35px;
        }

        .apss-acc-item.active .apss-acc-body {
            max-height: 500px;
            padding-bottom: 30px;
        }

        .apss-acc-item.active .apss-icon {
            transform: rotate(45deg);
           
        }
 
 
/* --- ORIGINAL DESIGN & BASICS --- */
.apss-table-container {
    background: #ffffff;
    padding: 10px 150px 20px 150px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06); 
    margin-top: 40px;
    border: 1px solid #f0f3f7;
}

.table-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 30px;
    border-left: 6px solid #0198E1;
    padding-left: 20px;
}

/* --- SCROLL & STICKY LOGIC (FOR TABLET & PHONE) --- */
.apss-responsive-table {
    overflow-x: auto; /* Tablet aur phone pe scroll chalu karega */
    border-radius: 16px;
    border: 1px solid #ebeef3;
    -webkit-overflow-scrolling: touch;
}

.syno-premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 900px; /* Isse columns pichkenge nahi, scroll honge */
}

.syno-premium-table thead th {
    background: linear-gradient(135deg, #0198E1 0%, #0056b3 100%);
    color: white;
    padding: 20px 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* Sticky Column Logic - Tablet/Phone ke liye sabse zaroori */
.syno-premium-table .main-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #f8fafc; /* Original Background */
    border-right: 2px solid #ebeef3;
    text-align: left;
    padding-left: 25px;
    font-weight: 600;
    color: #1e293b;
}

.syno-premium-table thead th.main-col {
    background: #0198E1 !important; 
    z-index: 11;
}

/* Hover Effect Fix: Jab user scroll karke hover karega tab bhi sticky background color dikhega */
.syno-premium-table tbody tr:hover td.main-col {
    background-color: #e6f2ff !important;
}

.syno-premium-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f4f9;
    text-align: center;
    font-size: 14px;
    color: #64748b;  
    transition: all 0.2s ease;
    white-space: nowrap;
}

.syno-premium-table i.fa-check {
    color: #0198E1;
    background: rgba(1, 152, 225, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

.syno-premium-table tbody tr:hover td {
    background-color: #f0f7ff;
}

/* Mobile & Tablet Specific Adjustments */
@media screen and (max-width: 991px) {
    .apss-table-container {
        padding: 20px 10px;
    }
    .table-heading {
        font-size: 20px;
    }
    /* Scrollbar ko thoda thin dikhane ke liye (Optional) */
    .apss-responsive-table::-webkit-scrollbar {
        height: 6px;
    }
    .apss-responsive-table::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
}
 


.trf-premium-card {
    width: 350px; /* Exact compact size */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #edf2f7;
    font-family: 'Ubuntu', sans-serif;
}

/* Header with Blue Gradient */
.trf-card-header {
    background: linear-gradient(135deg, #0198E1 0%, #007bbd 100%);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
   
}

.trf-card-header i { margin-right: 10px; opacity: 0.8; }

.trf-list-group { display: flex; flex-direction: column; }

/* Link Styling */
.trf-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none !important;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.3s ease;
    position: relative;
}

/* Left Indicator Bar on Hover */
.trf-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #0198E1;
    transform: scaleY(0);
    transition: 0.3s;
}

.series-id {
    width: 32px;
    font-size: 11px;
    font-weight: 800;
    color: #0198E1;
    background: #ebf8ff;
    padding: 4px;
    border-radius: 4px;
    text-align: center;
    margin-right: 12px;
    border: 1px solid #bee3f8;
}

.series-txt { font-size: 13.5px; font-weight: 500; }

/* Attractive Hover Effects */
.trf-link:hover {
    background: #f8fafc;
    color: #0198E1;
    padding-left: 20px;
}

.trf-link:hover::before { transform: scaleY(1); }

/* Active & Special State */
.trf-link.active {
    background: #f0f9ff;
    color: #0198E1;
}

.trf-link.active::before { transform: scaleY(1); }

.trf-link.active .series-id { background: #0198E1; color: #fff; border-color: #0198E1; }

.trf-link.special .series-id { color: #f6ad55; background: #fffaf0; border-color: #fbd38d; }
 
  