/* * FPPS RESEARCH HUB - MASTER STYLES
 * Handles: Sticky Header, OPI Tables, Ticker, and Custom UI 
 * Last Updated: March 2026
 */
/* Test Rule: If this works, your file is being recognized */
/* ============================================================
   1. GLOBAL STYLES (Applies to ALL devices)
   Put your OPI Table colors, font sizes, and "OPI Pedigree Index" 
   styling here. These don't affect layout.
   ============================================================ */
.opi-score-positive { color: #27ae60; font-weight: bold; }
.opi-score-negative { color: #c0392b; }


/* ============================================================
   2. DESKTOP ONLY (1003px and Up)
   This is where your Sticky Header and Fixed Widths live.
   ============================================================ */
@media screen and (min-width: 1003px) {
    .fpps-sticky-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    #main-wrapper {
        width: 980px !important;
        margin: 0 auto !important;
    }
}


/* ============================================================
   3. MOBILE SAFETY OVERRIDES (Under 1002px)
   This ensures our custom code doesn't fight Gameday's "Fly-Menu".
   ============================================================ */
@media screen and (max-width: 1002px) {
    /* Kill the stickiness so it doesn't break Gameday's translate3d menu */
    .fpps-sticky-header {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
    }

    /* Force the wrapper to follow Gameday's 100% rule */
    #main-wrapper, 
    #content-outer {
        width: 100% !important;
        margin: 0 !important;
        transform: none !important; /* Prevents collision with .fly-content */
    }
}
/* --- DESKTOP ONLY (Overriding Gameday's 1024px+ logic) --- */
@media screen and (min-width: 1025px) {
    .fpps-sticky-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
    }
    #main-wrapper {
        width: 980px !important;
        margin: 20px auto 0 !important;
    }
}

/* --- TABLET/MOBILE FIX (Matching Gameday's media query handles) --- */
@media screen and (max-width: 1024px) {
    #main-wrapper {
        width: 100% !important;
        max-width: 100vw !important;
        margin-top: 0 !important;
        padding: 0 10px !important;
    }

    /* Prevent the sticky header from covering the mobile menu button */
    .fpps-sticky-header {
        position: relative !important;
        z-index: 1 !important;
    }
}

/* --- SMALL MOBILE (480px and under) --- */
@media screen and (max-width: 480px) {
    .fpps-ad-pushdown-container {
        display: none !important; /* Save space for racing data on small screens */
    }
}
/* 1. Desktop Only Styles (Screens WIDER than 1024px) */
@media screen and (min-width: 1025px) {
    .fpps-sticky-header {
        position: sticky !important;
        top: 0 !important;
    }
    /* Keep your desktop-specific nav logic here */
}

/* 2. Tablet/Mobile "Safety" Reset (Screens SMALLER than 1024px) */
@media screen and (max-width: 1024px) {
    .fpps-sticky-header {
        position: relative !important; /* Prevents it from sticking over the mobile menu */
    }
    
    /* Re-center your logo for mobile as we discussed */
    #nav-logo {
        float: none !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center;
    }

    #nav-logo img {
        max-height: 40px !important;
        width: auto !important;
    }
}

/* 3. The "Mobile Menu" Fix */
/* Gameday uses a specific ID for the mobile 'hamburger' toggle. 
   We must ensure our new CSS doesn't hide it. */
@media screen and (max-width: 768px) {
    #nav-main-wrapper {
        display: block !important; /* Ensure the wrapper stays visible */
    }
    
    ul.nav-main {
        display: none !important; /* Hide desktop links so they don't overlap mobile menu */
    }
}
/* The Master Wrapper */
.fpps-sticky-header {
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* Match your site theme */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


#nav-main-wrapper {
    position: relative !important;
    top: 0 !important;
    /*clear: both !important;*/
    z-index: 998; /* One level below the ad */
	width: 100%;
}

/* The Ad Container */
.fpps-ad-pushdown-container {
    background: #f4f4f4; /* Subtle background for the 'Sponsored' area */
    width: 100%;
    min-height: 0; /* Starts at zero */
    overflow: hidden;
}

/* Ensure the AdSense slot doesn't break the layout */
#fpps-ad-header-wrapper {
    margin: 0 auto;
    padding: 5px 0;
}

/* Adjusting the main-wrapper to accommodate the sticky unit */

/* CHANGE THIS: From a fixed width to a flexible max-width */
#main-wrapper {
    width: 100% !important;        /* Fill the screen on mobile */
    max-width: 980px !important;   /* But stop at 980px on desktop */
    margin: 0 auto !important;     /* Keep it centered */
}
/* Add this to ensure the "Fly-out" menu can actually move */
.main-nav-over, .fly-content {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}
/* Mobile: Ensure the logo centers as we discussed */
@media screen and (max-width: 760px) {
    .nav-left-group {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .desktop-nav-links {
        display: none;
    }
}
#full-width-ad-header, #fpps-ad-header-wrapper {
	background: #002868;
}
#main-wrapper {
    position: relative;
    width: 980px;
    z-index: 5;
}
@media screen and (max-width: 1024px) {
    #main-wrapper {
        width: 100%;
        max-width: 100vw;
    }
}
/* Base Header Reset */
.sticky-top-header {
	/* Prevents the 'jump' by animating the expansion */
    width: 100%;
		background: #002868;
		position: fixed;
    top: 0;
    z-index: 2000;
}
/* Strengthened Nav Wrapper */
body #nav-main-wrapper {
    position: relative !important;
    top: 0 !important;
    z-index: 998;
    width: 100% !important;
    background: #002868 !important; /* Your Brand Blue */
}
#nav-main {
	width: 100%;
	margin: 0 auto;
	display: flex;
	padding: 0 15px;
	justify-content: space-between;
}
#nav-main-left {
	font-family: 'Bebas Neue';
	font-weight: 600;
	position: relative;
	width: 810px;
}
ul.nav-main {
	max-width: 960px;
	float: left;
	padding-left: 10px;
	position: relative;
	display: flex;
}
ul.nav-main li a {
	font-size: .75rem;
	font-family: 'Oswald';
	text-decoration: none;
}
ul.nav-main li a:hover {
	font-size: .75rem;
}
@media screen and (max-width: 760px) {
    /* 1. Hide the desktop menu links */
    ul.nav-main {
        display: none !important;
    }

    /* 2. Setup the parent container to center its children */
    #nav-main-left {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center;     /* Centers vertically */
        width: 100%;             /* Ensure it takes up the full screen width */
        float: none;             /* Kill any inherited floats from the theme */
    }

    /* 3. Reset the logo container */
    #nav-logo {
        float: none;             /* Remove float */
        margin: 0;               /* Remove side margins */
        display: block;
        padding: 5px 0;          /* Adjust vertical spacing as needed */
    }

    /* 4. Ensure the logo image itself is responsive */
    #nav-logo img {
        display: block;
        margin: 0 auto;
        max-height: 40px;        /* Keeps the header slim on mobile */
        width: auto;
    }
}
/* Hide the actual checkbox */
.read-more-state {
    display: none;
}
/* Hide the wrap by default */
.read-more-wrap {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
    opacity: 0;
}

/* When checkbox is checked, show the content */
.read-more-state:checked ~ .read-more-wrap {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

/* Style the "Read More" label */
.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Change text based on state */
.read-more-trigger:before {
    content: 'Read Our Mission +';
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: 'Show Less -';
}
/* FPPS Universal Ad Container Styles */
[id^="fpps-ad-"] {
    position: relative;
    /*clear: both;*/
    margin: 0 auto;
    text-align: center;
}

/* The Advertisement Label */
[id^="fpps-ad-"] small {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0a0a0;
    margin-bottom: 8px;
    line-height: 1;
}

/* Placeholder to prevent layout shift during refresh */
[id^="fpps-ad-"] .adsbygoogle {
    background-color: #002868; /* Subtle grey placeholder */
    transition: opacity 0.3s ease-in-out;
}
.fpps-infeed-wrapper {
	text-align: center;
}
.ad-label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 9px; /* Tiny */
    color: #cccccc; /* Light gray - barely visible */
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-transform: uppercase;
}
/* 1. The Command Bar (Top Piece) */
.command-bar {
    background-color: #212529; /* Dark finish */
    border: 1px solid #373b3e;
    border-bottom: none; /* Remove bottom border to fuse with table */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 15px;
}

/* 2. The OPI Table (Bottom Piece) */
.fused-table-container {
    border: 1px solid #dee2e6;
    border-top: none; /* Remove top border to fuse with bar */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden; /* Ensures rows don't spill over rounded corners */
    background: white;
}

#opiTable {
    margin-bottom: 0; /* Removes Bootstrap's default bottom margin */
}

/* Remove rounded corners from the table header since the bar handles it */
#opiTable thead th:first-child,
#opiTable thead th:last-child {
    border-radius: 0 !important;
}

/* 3. Subtle Row Polish */
.horse-row {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.table-warning {
    background-color: #fff9e6 !important; /* Premium gold tint */
    box-shadow: inset 5px 0 0 #ffc107; /* Thicker accent bar */
}

/* 4. Command Bar Elements */
.command-bar select, .command-bar .btn-sm {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}
/* Field Guide Styling */
.guide-content {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #495057;
}

.guide-header {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0d6efd; /* Your primary theme color */
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2px;
}

.guide-content p {
    margin-bottom: 10px;
}

.guide-content p:last-child {
    margin-bottom: 0;
}

/* Optional: rotate the icon when the guide is open */
[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.2s;
}
/* Styling for the Track Intelligence Engine */

/* 1. Highlighting the Real Winners */
.real-winner {
    border-left: 5px solid #198754; /* Green stripe for legitimacy */
    background-color: rgba(25, 135, 84, 0.05);
}

/* 2. Visual treatment for Paper Contenders (The Hard Filter) */
.paper-contender {
    color: #6c757d; /* Gray out text */
}

/* 3. Bias Highlight: When 'Speed' or 'Closer' is active */
.table-warning {
    background-color: #fff3cd !important; /* Soft Gold */
    border-left: 5px solid #ffc107 !important; /* Gold stripe */
    color: #000 !important;
    transition: all 0.3s ease;
}

/* 4. Hover effect for interactive feel */
.horse-row {
    transition: opacity 0.4s ease, transform 0.2s ease;
}

.horse-row:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

/* 5. Animation for the "Hard Filter" disappearance */
.paper-contender[style*="display: none"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}
/* End Field Guide & OPI Table */
.fpps-resource-hub {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.resource-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px solid #1a2b3c;
    padding-bottom: 20px;
}

.resource-header h1 {
    color: #1a2b3c;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.resource-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.resource-card:hover {
    transform: translateY(-50px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.resource-card h3 {
    color: #1a2b3c;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.card-link {
    display: inline-block;
    color: #2980b9;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #2980b9;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.card-link:hover {
    background: #2980b9;
    color: #fff;
}
/* Schedule Table Styling */
.fpps-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.fpps-schedule-table th {
    background-color: #1a2b3c;
    color: #ffffff;
    text-align: left;
    padding: 12px;
}

.fpps-schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.fpps-schedule-table tr.highlight-row {
    background-color: #fff8e1; /* Soft alert color for Last Chance */
    font-weight: bold;
}

.fpps-schedule-table tr.major-event {
    background-color: #e8f4fd;
    border-left: 5px solid #2980b9;
    font-weight: 800;
}

.coming-soon {
    color: #999;
    font-style: italic;
    font-size: 0.85rem;
}

@media screen and (max-width: 600px) {
    .fpps-schedule-table thead { display: none; }
    .fpps-schedule-table td { display: block; text-align: right; border: none; position: relative; padding-left: 50%; }
    .fpps-schedule-table td::before { content: attr(data-label); position: absolute; left: 10px; width: 45%; text-align: left; font-weight: bold; }
}
.fpps-sidebar-hub {
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
}
.hub-title {
    background: #1a2b3c; /* Consistent with your brand blue */
    color: #fff;
    padding: 10px 15px;
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.tournament-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tournament-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.tournament-item:last-child {
    border-bottom: none;
}

.tourney-date {
    font-size: 0.75rem;
    color: #e67e22; /* Branding Orange */
    font-weight: 800;
    margin-bottom: 3px;
}

.tourney-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
}

.tourney-meta {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 8px;
}

.tourney-link {
    font-size: 0.85rem;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

.tourney-link:hover {
    text-decoration: underline;
}

.hub-cta {
    background: #f4f4f4;
    text-align: center;
    padding: 10px;
}

.hub-cta a {
    font-size: 0.85rem;
    font-weight: bold;
    color: #555;
    text-decoration: none;
}
/* Breaking News Banner Styling */
.breaking-news-banner {
    background-color: #d32f2f; /* Alert Red */
    color: #ffffff;
    padding: 10px 20px;
	margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    border: 3px solid #b71c1c;
    animation: slideDown 0.5s ease-out;
	border-radius: 5px;
}
.news-label {
    background-color: #ffffff;
    color: #d32f2f;
    padding: 2px 8px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 15px;
}

.news-text {
    margin: 0;
    font-size: 0.95rem;
}

.news-link {
    color: #ffeb3b; /* Highlight Yellow */
    text-decoration: underline;
    margin-left: 10px;
    font-weight: bold;
}

.news-link:hover {
    color: #ffffff;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
/* Expert Insight Container */
.expert-insight {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
}

/* Value Alert Box */
.value-alert {
    margin: 15px 0;
    padding: 12px 18px;
    background-color: #fff9e6; /* Soft amber */
    border-left: 4px solid #f39c12; /* Brand Orange */
    font-size: 0.95rem;
}

.value-alert strong {
    color: #d35400;
    text-transform: uppercase;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #34495e;
}
.cta-button:visited {
	color: #ffffff !important;
}
.fpps-feature-spotlight {
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 6px solid #d32f2f;
}
.spotlight-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #d32f2f;
    font-weight: bold;
}
.fpps-feature-spotlight h2 {
    margin: 5px 0 20px 0;
    font-size: 2.2rem;
}
.spotlight-content {
    display: flex;
    gap: 25px;
    align-items: center;
}
.opi-badge {
    background: #333;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    border: 2px solid #d32f2f;
}
.opi-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}
.opi-text {
    font-size: 0.6rem;
    text-transform: uppercase;
}
.spotlight-analysis h4 {
    margin: 0 0 10px 0;
    color: #eee;
}
.btn-spotlight {
    display: inline-block;
    margin-top: 15px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}
@media (max-width: 600px) {
    .spotlight-content { flex-direction: column; text-align: center; }
}
.fpps-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-module {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
}
.sidebar-module h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #333;
    border-left: 4px solid #0044cc;
    padding-left: 10px;
}
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}
.sidebar-list li a {
    text-decoration: none;
    color: #0044cc;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.sidebar-stat {
    color: #666;
    font-size: 0.8rem;
    font-weight: bold;
}
.sidebar-more {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}
.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.track-grid a {
    background: #f1f1f1;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}
/* New Aside Ends Here */
.opi-trend-snapshot {
    background: #f9f9f9;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: sans-serif;
}
.trend-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.trend-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.trend-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #222;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.highlight-horse {
    display: flex;
    align-items: center;
    background: #eef4ff;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
}
.horse-rank {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0044cc;
    margin-right: 15px;
}
.horse-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}
.horse-opi {
    margin-left: auto;
    text-align: right;
    font-weight: bold;
    color: #d32f2f;
}
.trend-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.trend-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
}
.btn-full-list {
    display: block;
    text-align: center;
    padding: 10px;
    background: #0044cc;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}
.expert-insight {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px dashed #ccc;
}
.expert-insight h4 {
    margin: 0 0 10px 0;
    color: #d32f2f;
}
.fpps-brand { font-weight: 800; color: #0044cc; }

/* FPPS Sticky Sidebar Ad - 2026 Optimization */
@media (min-width: 1024px) {
    /* Ensures the sidebar container has enough height to allow sticking */
#sidebar-wrapper, .widget-container, .widget-inner {
	position: relative;
	width: 320px;
	height: 100%;
	margin-top: 10px;
	overflow: visible !important;
	display: flex;
	flex-direction: column;
	}
	/* Makes Sidebar Wrapper Sticky */
@media (min-width: 769px) {
    #sidebar-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 99;
        background-color: #ffffff; /* Optional: add background for visual separation */
    }
}  
    /* Makes the specific Ad Unit sticky */
.fpps-sticky-ad {
        position: -webkit-sticky; /* Safari Support */
        position: sticky;
        top: 25px; /* Space from the top of the screen */
        z-index: 99;
			margin-top: 20px;
    }
}
/* fpps Table Dashboard Styles */
.fpps-table-container {
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.fpps-table {
    margin-bottom: 0;
    font-family: 'Inter', sans-serif; /* Clean, modern font */
}

.fpps-table thead th {
    background-color: #2c3e50;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 15px;
    border: none;
}

.fpps-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.9rem;
}

/* Highlight for the 100-point "Super Preps" */
.fpps-row-major {
    background-color: rgba(52, 152, 219, 0.05);
    font-weight: 600;
}

/* Highlight for "Today's Race" */
.fpps-row-today {
    border-left: 4px solid #f1c40f;
    background-color: #fffdf5;
}

/* Tab Styling */
.nav-tabs .nav-link.active {
    background-color: #2c3e50;
}
.nav-tabs .nav-item {
	list-style: none;
}
.nav-link-derby.active { background-color: #004a99 !important; }
.nav-link-oaks.active { background-color: #b30059 !important; }

/* Ensure the FAB doesn't overlap the footer too aggressively */
.dropup {
    transition: transform 0.3s ease-in-out;
}

/* Optional: Hide the button until the user scrolls down a bit */
.btn-fab-hidden {
    transform: translateY(100px);
}

/* Style the jump keys to look like clean data points */
.dropdown-menu .btn-outline-secondary {
    width: 35px;
    height: 35px;
    padding: 5px 0;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Set BS 5 Table Height */
 .table-responsive {
    min-height: 400px; /* Adjust based on your average table size */
}
/* Event Widget */
.event-widget { background: #f9f9f9; border-left: 4px solid #0073aa; padding: 15px; margin-bottom: 20px; }
/* Sidebar Styling - The "Grade 1" Look */
.widget-area {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.widget-title {
    font-size: 1.0rem;
    color: #b22222; /* Racing Red */
    border-bottom: 2px solid #b22222;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Mobile Optimization (Screens smaller than 768px) */
@media screen and (max-width: 768px) {
    .widget-area {
        margin-top: 30px; /* Separation from main content */
        width: 100%;      /* Full width on mobile */
        float: none;      /* Prevent side-by-side overlap */
    }
    
    .event-widget {
        background: #fdf2f2; /* Light highlight for major events */
        border: 1px dashed #b22222;
    }
}

/* Desktop Alignment (Screens 769px and larger) */
@media screen and (min-width: 769px) {
    #primary { /* Your main content div */
        width: 70%;
        float: left;
    }
    
    .widget-area {
        width: 25%;
        float: left;
    }
}

/* FPPS Expert Callout Box */
.fpps-expert-callout {
    background-color: #f0f7f4; /* Soft turf green */
    border-left: 5px solid #2d5a27; /* Darker racing green */
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    font-family: inherit;
    line-height: 1.6;
}

/* Styling the Header inside the box */
.fpps-expert-callout h4 {
    margin-top: 0;
    color: #2d5a27;
    font-size: 1.2rem;
    font-weight: 700;
}
/* FPPS Overall Performance Index Infographic */
.screen-reader-text-box {
	margin-top: 5px;
	padding: 10px;
	border: 2px solid #ccc;
	border-radius: 3px;
}
/* FPPS Leaderboard */
.fpps-leaderboard thead th {
    position: sticky;
    top: 0;
    background-color: #1a1a1a; /* Dark professional background */
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
/* 
 * /* Gold, Silver, and Bronze highlights for the top 3 rows */
.fpps-leaderboard tbody tr:nth-child(1) { border-left: 5px solid #FFD700; }
.fpps-leaderboard tbody tr:nth-child(2) { border-left: 5px solid #C0C0C0; }
.fpps-leaderboard tbody tr:nth-child(3) { border-left: 5px solid #CD7F32; }Container styling for the Dashboard look */
.fpps-leaderboard th, .fpps-leaderboard td {
    padding: 12px 8px;
    vertical-align: middle;
}

/* Right-align numeric data for easier comparison */
.fpps-leaderboard td:nth-child(1), /* Rank */
.fpps-leaderboard td:nth-child(3), /* Points */
.fpps-leaderboard td:nth-child(5)  /* Speed Figure */ {
    text-align: center;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace; /* Makes numbers line up perfectly */
}
.fpps-leaderboard tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05) !important;
    cursor: pointer;
}
@media screen and (max-width: 600px) {
    .fpps-leaderboard {
        display: block;
        overflow-x: auto; /* Adds a smooth horizontal scroll on mobile */
        white-space: nowrap;
    }
}

.fpps-hero-container {
    display: flex;
    gap: 20px;
    margin: 20px 0 40px 0;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

/* Base card styling */
.fpps-hero-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Subtle hover effect for 2026 UX */
.fpps-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.fpps-hero-card h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.4rem;
}

.fpps-hero-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Call to action buttons */
.card-btn {
    display: block;
    text-align: center;
    background: #004a99; /* Adjust to your brand blue */
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s;
}

.card-btn:hover {
    background: #003366;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .fpps-hero-container {
        gap: 15px;
    }
    .fpps-hero-card {
        min-width: 100%;
    }
}
/* Update the base card to handle the overlay */
.fpps-hero-card {
    position: relative; /* Required for badge positioning */
    overflow: hidden;    /* Clips the ribbon so it doesn't bleed out */
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* The 2026 "Electric" Badge */
.fpps-badge {
    position: absolute;
    top: 15px;
    right: -35px; /* Angled position */
    background: #00f2ff; /* Electric Cyan */
    color: #002b30; /* Dark contrast for legibility */
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
    letter-spacing: 1px;
}

/* Ensure the card content stays below the badge if needed */
.card-content {
    position: relative;
    z-index: 1;
}

/* Keep the rest of your previous CSS (buttons, hover effects, etc.) */
h2[id^="letter-"] {
    scroll-margin-top: 80px; /* Adjust based on your header height */
}
/* Make the Alpha Nav Sticky */
.fpps-alpha-nav {
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    top: 60px; 
    z-index: 999; /* Keeps it above other content */
    background: #f1f1f1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 20px;
}
@media screen (min-width: 1025px) {
	.fpps-alpha-nav {
		position: -webkit-sticky;
		position: sticky;
		top: 90px;}
}
.fpps-alpha-nav {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    text-align: center;
}

.nav-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.nav-links a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #fff;
    border: 1px solid #ccc;
    color: #0073aa; /* Standard Link Blue or your brand color */
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Ensure the target doesn't get hidden behind a sticky header */
[id^="letter-"] {
    scroll-margin-top: 120px;
}
html {
    scroll-behavior: smooth;
}

/* Optional: Add some padding so the header doesn't cover the letter */
[id] {
    scroll-margin-top: 100px; 
}
/* Legal Disclaimer Box at bottom of page */
.fpps-legal-footer-box {
    background-color: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.legal-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.legal-icon {
    font-size: 20px;
    margin-right: 10px;
}

.legal-box-header h3 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

.proprietary-notice {
    background: #fff;
    border-left: 4px solid #cc0000; /* Red "warning" stripe */
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.vpn-warning {
    font-size: 13px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.alert-box {
    background-color: #f2f2f2;
    color: #000000;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}   
.horse-card {background:#1b263b; padding:22px; border-radius:12px; margin:25px 0; max-width:760px;}
  .horse-name {font-size:1.4em; color:#48cae4; font-weight:bold;}
  .win {color:#90be6d;}
  .loss {color:#f94144;}
  .ev-big {font-size:1.9em; font-weight:bold;}
  .calc-box {margin-top:15px; padding:15px; background:#415a77; border-radius:8px; font-size:0.95em;}
  .locked {background:#90be6d; color:black; padding:3px 10px; border-radius:5px; font-size:0.8em; font-weight:bold;}
#post-info-wrapper {
	border: none;
	margin-bottom: 0;
}
.post-info {
	margin-bottom: 0;
}
.edd-submit.button.blue {
	background-color: green;
}
.bcDraw {
	text-align: center;
	font-family: 'Bebas Neue';
	padding-top: 50px;
}
.rodCard .card-header {
	background: #007bff;
	color: #fff;
	font-family:'Bebas Neue';
	font-size: 1rem;
	letter-spacing: 1px;
}
.rodCard .card-text {
		font-family: 'Bebas Neue';
	letter-spacing: 1px;
	}
.rodCard .btn {
	color: #fff;
	font-family:'Bebas Neue';
	letter-spacing: 1px;
}
.countdown-container {
            text-align: center;
        }

        h5 {
						font-family: 'Bebas Neue';
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #007bff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem;
					
        }

        .time-unit {
            background: #fcfcfc;
            padding: 1rem;
            border-radius: 10px;
            min-width: 80px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .time-unit:hover {
            transform: scale(1.05);
        }

        .time-value {
						font-family: 'Bebas Neue';
            font-size: 1.5rem;
            font-weight: bold;
            color: #007bff;
            display: block;
        }

        .time-label {
					font-family: 'Bebas Neue';
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.classicFeature li, .classicPosts li {
	list-style: none;
	border-bottom: 1px solid #ccc;
	img {
		border-radius: 3px;
	}
	a {
		text-decoration: none;
		font-family: 'Bebas Neue';
		color: #000;
	}
}
@media screen and (min-width: 1200px) {
.apTableWrap {
margin-top: 4px;
}
}
@media screen and (min-width: 768px) {
.apTableWrap {
margin-top: 16px;
max-width: 100%;
}
}
@media screen and (min-width: 768px) {
    .apTableWrap .apTableFooter {
        gap: 15px;
    }
}
@media screen and (min-width: 768px)
{
.apTableHeader {
display: flex;
align-items: center;
}
}
@media screen and (min-width: 768px)
{
.apTableHeader .raceName {
margin-bottom: 0;
}
}
@media screen and (min-width: 768px) {
    .apTableWrap .apRaceWrap .raceDetailsWrap {
        flex-direction: row;
    }
}
@media screen and (min-width: 768px) {
    .apTableWrap .apRaceWrap .raceDescReg {
        margin-bottom: 0;
    }
}
.viewDetails a {
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    color: #fffce9;
}
.trackName a {
        color:#fffce9;
}
.anglePicks {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 45px;
    color: #fffce9;
    line-height: 46px;
}
.angleTag {
    font-weight: 400;
    font-size: 35px;
    font-family: 'Oswald', sans-serif;
    color: #fffce9;
    display: block;
    line-height: 46px;
}
.angleExp {
    font-weight: 300;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    color: #fffce9;
    display: block;
}
.apTableWrap {
    background: #333;
}
.apTableWrap .separator {
    width: 1px;
    height: 16px;
    opacity: .5;
    background: #fff;
    margin: 0 8px;
    display: inline-flex;
}
.apTableHeader {
    background: #002868; color: #fffce9;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 8px 12px;
}
.apRaceWrap {
    background: #f7fcff;
    border: 1px solid #dae4e9;
    padding: 7px 11px;
}
.apRaceWrap .separator {
    height: 12px;
    background: #c4cbcf;
}
.infoBody {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #dae4e9;
    position: relative;
    margin: -1px 0;
    flex-wrap: wrap;
    padding: 8px 0;
    align-items: center;
}
.infoDetail {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}
.infoBody .infoDetail {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    font-family: Oswald, sans-serif;
    font-weight: 300;
    display: block;
    margin-bottom: 4px;
}



@media screen and (min-width: 1200px) {
.entriesTableWrap {
margin-top: 4px;
}
}
@media screen and (min-width: 768px) {
.entriesTableWrap {
margin-top: 16px;
max-width: 385px;
}
}
@media screen and (min-width: 768px) {
    .entriesTableWrap .entriesTableFooter {
        gap: 15px;
    }
}
@media screen and (min-width: 768px)
{
.entriesTableHeader {
display: flex;
align-items: center;
}
}
@media screen and (min-width: 768px)
{
.entriesTableHeader .raceName {
margin-bottom: 0;
}
}
@media screen and (min-width: 768px) {
    .entriesTableWrap .middleWrap .raceDetailsWrap {
        flex-direction: row;
    }
}
@media screen and (min-width: 768px) {
    .entriesTableWrap .middleWrap .raceDescReg {
        margin-bottom: 0;
    }
}
.entriesTableWrap .middleWrap .raceDetailsWrap {
    flex-direction: column;
    display: flex
;
}
.entriesTableWrap .raceDesc, .entriesTableWrap .raceDescReg, .entriesTableWrap .raceDetails, .entriesTableWrap .raceName {
    display: flex;
    align-items: center;
}
.entriesTableWrap .separator {
    width: 1px;
    height: 16px;
    opacity: .5;
    background: #fff;
    margin: 0 8px;
    display: inline-flex;
}
.entriesTableWrap .raceDetails, .entriesTableWrap .raceNumber, .entriesTableWrap .raceDate, .entriesTableWrap .postTime {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    font-family: Oswald, sans-serif;
}
.entriesTableWrap .middleWrap {
    background: #f7fcff;
    border: 1px solid #dae4e9;
    padding: 7px 11px;
}
.entriesTableWrap .middleWrap .raceDesc strong {
    font-size: 13px;
    line-height: 16px;
    color: #222;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}
.entriesTableWrap .raceDescReg  {
    font-size: 13px;
    line-height: 16px;
    color: #222;
    font-family: Oswald, sans-serif;
    font-weight: 300;
}
.entriesTableHeader {
background: rgb(1, 1, 40);
color: #000000;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 8px 12px;
.raceName {
    color: white;
    font-family: 'Oswald';
}
}
.entriesTableWrap .middleWrap .raceDescReg {
    margin-bottom: 4px;
}
.entriesTableWrap .raceDesc, .entriesTableWrap .raceDescReg, .entriesTableWrap .raceDetails, .entriesTableWrap .raceName {
    display: flex;
    align-items: center;
}
.entriesTableWrap .middleWrap .separator {
    height: 12px;
    background: #c4cbcf;
}
.entriesTableWrap .horseListSection {
    border: 1px solid #dae4e9;
    border-top: 0;
}
.entriesTableWrap .infoHeader {
    border-bottom: 1px solid #dae4e9;
    background: #fffce9;
    display: flex;
    align-items: center;
    padding: 2px 0 1px;
    font-size: 11px;
    line-height: 16px;
    color: #666;
    font-family: Oswald, sans-serif;
}
.entriesTableWrap .infoHeader .infoSection .numbers {
    width: 20px;
    font-size: 12px;
    line-height: 16px;
    color: #666;
    font-family: Oswald, sans-serif;
}
.entriesTableWrap .infoHeader span {
    display: block;
    flex-shrink: 0;
    text-align: center;
}
.entriesTableWrap .infoHeader .infoSection .odds {
    width: 28px;
    margin-left: 8px;
    font-size: 11px;
    line-height: 14px;
    color: #666;
    font-family: Oswald, sans-serif;
}
.entriesTableWrap .infoHeader .trainer {
    width: 32px;
    margin-left: 38px;
}
.entriesTableWrap .infoBody {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #dae4e9;
    position: relative;
    margin: -1px 0;
    flex-wrap: wrap;
    padding: 8px 0;
    align-items: center;
}
.entriesTableWrap .infoBody .numbers {
    height: 32px;
}
.entriesTableWrap .horseListWrap .saddle {
    width: 20px;
    height: 32px;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.entriesTableWrap .infoDetail {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}
.entriesTableWrap .infoBody .horseName {
    font-size: 13px;
    line-height: 16px;
    color: #000;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.entriesTableWrap .bottomDetails {
    display: flex;
    align-items: center;
}
.entriesTableWrap .infoBody .liveOdds {
    font-size: 11px;
    line-height: 12px;
    color: #000;
    font-family: Oswald, sans-serif;
    width: 24px;
}
.entriesTableWrap .bottomDetails span {
    display: inline-flex;
}
.entriesTableWrap .infoBody .jockeyName, .entriesTableWrap .infoBody .trainer {
    font-size: 12px;
    line-height: 12px;
    color: #000;
    font-family: Oswald, sans-serif;
    font-weight: 300;
    width: 100px;
}
.entriesTableWrap .infoBody .trainer {
    margin-left: 16px;
}
.entriesTableFooter {
    background: #f7fcff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 15px;
    display: flex;
    gap: 12px;
    border: 1px solid #dae4e9;
    border-top: none;
}
.saddle {
    font-weight: 600;
}
.saddle1 {
    background: #ec2c28;
    color: #fff;
}
.saddle2 {
    background: #fff;
    color: #000;
    border: 1px solid black;
}
.saddle3 {
    background: #3f086c;
    color: #fff;
}
.saddle4 {
    background: #e7f73e;
    color: #000000;
}
.saddle5 {
    background: green;
    color: #ffffff;
}
.saddle6 {
    background: #000000;
    color: #ffffff;
}
.saddle7 {
    background: orange;
    color: #ffffff;
}
.saddle8 {
    background: pink;
    color: #000000;
}
.saddle9 {
    background: turquoise;
    color: #000000;
}
.saddle10 {
    background: purple;
    color: #ffffff;
}
.saddle11 {
    background: grey;
    color: #ffffff;
}
.saddle12 {
    background: lime;
    color: #ffffff;
}
ul.post-info {
	padding-left: 0;
}
.table-sm th, td {
	font-size: .75em;
	font-family: 'Oswald';
}
.table-sm a {
	font-family: 'Oswald';
}
#horsePedigree {
	table {
            border-collapse: collapse;
            width: 100%;
            max-width: 600px;
						max-height: 350px;
            margin: 20px auto;
            font-family: 'Oswald', sans-serif;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
}
#derbyHorses {
	width: 100%;
	height: 750px;
}
.leftColumn {
        height: 730px;
        overflow-y: scroll;
    }
.rightColumn {
        max-height: 990px;
    }
h5.horseName {
	font-family: Oswald;
	font-size: .75rem;
}
#related-posts ul {
	padding: 0;
}
#featured-main {
	margin-bottom: 1px;
}
.flex-control-paging li a.flex-active 
{ border: 2px solid #fff; cursor: default; box-shadow: none; width: 16px; height: 16px;
}
.flex-control-nav {
	bottom: 10px;
}
.headlineTitle h4 {
	font-family: 'Bebas Neue';
	font-weight: 700;
	font-size: 1rem;
}
.headlineTitle {
	font-family: 'Bebas Neue';
	font-weight: 700;
	font-size: 1.5rem;
}
@media (max-width: 768px) {
	.headlineTitle {
		font-size: 1.25rem;
		margin-left: 10px;
	}
}
@media screen and (max-width: 767px) and (min-width: 480px) {
	ul.headlines-cat,
	ul.headlines li img {
		display: block;
	}
}
@media screen and (max-width: 479px) {
	ul.headlines-cat,
	ul.headlines li img {
		display: block;
	}
}
#topCarousel {
    margin: 30px 0 50px 0;
}
.card {
            border-radius: 0;
        }
        .card-title {
            font-family: 'oswald';
            font-size: 15px;
        }

        .card-subtitle {
            font-size: 9px;
            line-height: 13px;
        }
        .card-body {
           padding: .25rem;
           display: block;
        }
         .btn-primary {
            font-family: Oswald;
            font-size: .25em;
            border-radius: 1px;
					 color: white;
}
.newsCard a {
	text-decoration: none;
	color: inherit;
}
/*.entryDetails {
    font-size: 9px;
    line-height: .15rem;
}*/
.detailsTrackDay {
	display: block;
	float: left;
	font-size: 10px;
	line-height: 13px;
	margin-bottom: 5px;
	font-family: 'Oswald'
}
.globalNewsContentLeader {
	width: 210px;
	margin-top: 10px;
	display: block;
    font-size: 10px;
    font-weight: 400;
    float: left;
    line-height: .1rem;
	position: relative;
}
.readMore {
	font-family: 'Oswald';
	font-size: 8px;
	line-height: 16px;
}
.globalNewsImg {
	/*width: 75px;
    height: 75px;*/
    top: 10px;
	position: absolute;
	float: right;
	right: 5px;
	border-radius: 4px;
	overflow: hidden;
}
.globalNewsImg img {
    object-fit: cover;
    object-position: 50% 50%;
}
.newsCategory {
	display: inline-block;
    position: absolute;
		width: auto;
    height: 24px;
    border-radius: 5px 0 0 0;
    color: white;
    text-transform: title;
    font-size: 12px;
    font-family: 'Oswald';
    text-align: left;
    line-height: 5px;
    padding: .5rem;
}
.globalNewsStory {
	display: block;
	position: relative;
}
h2.card-title {
    font-size: 15px;
    font-weight: 700;
		line-height: 19px;
		font-family: 'Oswald';
    display: block;
    float: left;
    width: 190px;
    position: relative;
}
@media (max-width: 768px) {
* h2.card-title {
	width: 120px;
}
	.globalNewsImg {
	width: 30px;
    height: 30px;
    top: 5px;
	position: absolute;
	float: right;
	right: 5px;
	border-radius: 4px;
	overflow: hidden;
}
    /*.carousel-inner .carousel-item>div {
        display: none;
    }
    .carousel-inner .carousel-item>div:first-child {
        display: flex;
    }*/
}
.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}
a.whiteLink {
	color: white;
}
#crumbs {
	font: 400 12px/12px 'Open Sans', helvetica, arial, sans-serif;
	font-weight: bold;
	}
#post-area #content-area ol li {
	margin-left: 0px;
	padding: 0 5px;
	line-height: 1.25rem;
}
#post-area #content-area ul li {
	margin-left: 0px;
	padding: 0 5px;
	line-height: 1.25rem;
}
#homepage-wrapper {
	float: left;
	position: relative;
	max-width: 100%;
}
.numbered-list {
            height: 25px;
            width: 25px;
            text-align: center;
            line-height: 25px;
}
.number {
            font-size: 1rem;
            font-weight: bold;
        }
.modal-dialog {
            max-width: 480px;
            margin: 30px auto;
						top: 50px;
        }

        .modal-body {
            position: relative;
            padding: 0px;
        }

        .btn-close {
            position: absolute;
            right: -30px;
            top: 0;
        }
.derby-info {
	color: #162f55;
	font-family: 'Oswald';
}
.classicsSeriesHead {
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 5px;
	color: #162f55;
}
span.scroll-more {
	background: linear-gradient(90deg,#162f55 0%, #03639f 100%), #162f55;
	color: #fff;
	font-family: 400 15px/15px 'Bebas Neue';
	text-transform: uppercase;
	width: 365px;
	}
.ppsList {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ppsList a {
	text-decoration: none;
	font-family: 'Oswald';
	font-size: .55rem;
}
.ppsListItem h5{
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
}
.ppsListItem p {
	font-size: .55rem;
}
.ppsListItem {
	list-style-type: none;
	border: 1px solid #ccc;
	margin-bottom: 8px;
	padding: 6px;
	max-height: 100px;
	background: #fff;
}
.bi::before {
	width: 1rem;
	height: 1rem;
}
#article-ad {
	margin-top: 3px;
	}
ul.score-nav {
padding-top: 6px;
	padding-left: .5rem;
}
@media only screen and (max-width:576px) {
	#ticker {
width: 700px;
		display: inline;
	}
}
@media only screen and (min-width:577px) {
	#ticker {
width: 700px;
		display: inline;
	}
}
.list-group {
	margin-left: 10px;
}
.myListGroup .list-group-item {
	max-height: 100px;
}
/*.list-group a {
	text-decoration: underline;
}*/
.list-group-item h5{
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
}
.list-group-item p {
	font-size: .55rem;
}
/*.listTitle {
	font-size: small;
	font-weight: 700;
}*/
ul#menu-mad-max.menu {
	max-width: 270px;
	padding: .5rem;
	margin-top: 10px;
}
.nav.fly-nav-menu ul li {
	width: auto;
}
.fly-nav-menu {
	width: 270px;
	margin: 5px 5px;
}
#fly-wrap.fly-menu {
	max-width: 270px;
}
.fly-side-wrap {
	width: 0;
}
.fly-wrap-in {
	margin-left: 0;
}
.fly-wrap-out {
	float: left;
	margin-left: 0px;
}
.rodFeaturedPPsSection {
	padding: 16px 0;
	background: #002868;
}
.rodFeaturedPPsSection .container {
	padding-right: 16px;
	padding-left: 16px;
}
h2.rodPPsSectionHeading {
font-size: 28px;
line-height: 36px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-weight: 700;
display: flex;
margin: 0;
}
h5.rodPPsSectionSubhead {
	font-size: 15px;
	color: white;
	line-height: 20px;
	display: flex;
	font-family: 'Oswald';
}
#classics .classicsSeries {
            background: #f7fcff;
            padding: 12px 0 12px 0;
        }
			.classicsSeries {
            position: relative;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }
        @media (min-width: 768px) {
            section.classicsSeries
            .classicsSeriesHead {
                background: linear-gradient(90deg,#162f55 0%, #03639f 100%), #162f55;
                background-repeat: no-repeat;
                border-top-left-radius: 4px;
                border-top-right-radius: 4px;
            }
        }
			@media (max-width: 767px) {
            section.classicsSeries
            .classicsSeriesHead {
                background: linear-gradient(90deg,#162f55 0%, #03639f 100%), #162f55;
                background-repeat: no-repeat;
                border-top-left-radius: 4px;
                border-top-right-radius: 4px;
            }
        }
        section.classicsSeries
        .classicsSeriesHead {
            width: 100%;
            border-bottom: none;
            color: white;
            font-family: "Oswald", sans-serif;
            position: relative;
            display: flex;
            justify-content: space-between;
        }
        @media (min-width: 768px) {
            section.classicsSeries
            .classicsSeriesHead
            .classicsSeriesInnerWrapper {
                background: url() no-repeat;
                padding: 8px 12px 8px 8px;
                background-size: 46px 44px;
            }
        }
        section.classicsSeries
        .classicsSeriesHead
        .classicsSeriesInnerWrapper {
            background: url() no-repeat;
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        section.classicsSeries
        .classicsSeriesDetails {
            display: flex;
            align-items: flex-start;
        }
        section.classicsSeries
        .classicsSeriesHead
        .calendarIcon svg {
            float: left;
            margin-right: 8px;
            width: 28px;
            height: 28px;
        }
        @media (min-width: 768px) {
            section.classicsSeries
            classicsSeriesHead hgroup {
                margin-left: 55px;
            }
        }
        @media (min-width: 1024px) {
            section.classicsSeries
            .classicsSeriesInnerWrapper hgroup h1 {
                font-size: 24px;
                line-height: 1.33;
                color: #fff;
                font-family: 'Oswald', sans-serif;
            }
        }
        section.classicsSeries
        .classicsSeriesHead hgroup h1 {
            font-size: 15px;
            line-height: 24px;
            color: #fff;
        }
        @media (min-width: 1024px) {
            section.classicsSeries
            .classicsSeriesInnerWrapper hgroup h4 {
                font-size: 13px;
                line-height: 1.23;
                color: #fff;
                font-family: Oswald, sans-serif;
            }
        }
        section.classicsSeries
        .classicsSeriesHead hgroup h4 {
            font-size: 10px;
            line-height: 12px;
            color: #fff;
            font-family: Oswald, sans-serif;
            font-weight: 400;
        }
        .flexWrap {
            display: flex;
            align-items: center;
        }
		.saratoga-scroller {
			height: 100%;
			scroll-behavior: smooth;
			h2 {
				font-family: 'Bebas Neue';
			}
			p {
				font-family: 'Oswald';
			}
		}
			.tab-pane {
				background: #f7fcff;
				font-size: 1.15em;
				margin-top: 10px;
			}
			.trainerName {
				font-size: 16px;
				font-weight: 700;
				text-transform: uppercase;
			}
#derbycount {
	font-family: 'Alfa Slab One';
}
.countdown-increments {
	font-size: 8px;
}
span.headlines-header {
	background-color: #002868;
	color: white;
	text-transform: uppercase;
	font-family: 'Bebas Neue';
	font-weight: 400;
	font-size: 1.5rem;
	text-align: left;
	padding-left: 10px;
	position: sticky;
	top: 0;
	z-index: 999;
}
	.previewList {
     font-family: 'Oswald';
            font-size: small;
            width: 100%;
            height: auto;
            overflow-y: scroll;       
        }
h3.slideHeadline {
            font-family: 'Oswald';
            font-size: 58px;
            font-weight: 700;
            color: black;
            text-align: left;
            text-transform: uppercase;
        }

        h4.slideSubhead {
            font-family: 'Oswald';
            font-weight: 400;
            color: black;
            text-align: left;
        }
@font-face {
	font-family: Alfa Slab One;
	src: url(https://thefreepps.com/wp-content/themes/gameday-child/fonts/AlfaSlabOne-Regular.ttf);
	font-weight: normal;
}
.nav-item a {
	font-family: 'Oswald';
	font-size: small;
	color: #002868;
}
.widget_block h2 {
	font-family: 'Alfa Slab One' ;
	font-size: medium;
	color: #002868;
}
.dropdown {
	font-family: 'Alfa Slab One';
	font-size: small;
	color: #002868;
	border: 1px solid;
}
.tabPaneText {
	font-size: small;
}
.caption-top {
	font-size: .9em;
}
.bordered-rows tr td {
	border-bottom: .1px solid gray;
}
.btn-200 {
	background-color: #3260a6 !important;
	color: white !important;
	text-transform: uppercase;
	font-weight: 700;
}
.btn:focus {
	box-shadow: none;
}
	.raceList-item {
	text-transform: uppercase;
	color: #0B0B45;
	font-weight: 700;
		font-size: small;
}
.card-header {
	text-transform: uppercase;
	color: #0B0B45;
	font-weight: 700;
}
.card-text{
	font-weight: 400;
}
.card .card-footer {
	align-self: flex-end;
	flex: 1 1 auto;
}
.futures {
	color: white;
	font-size: .5em;
	font-style: italic;
}
#main h1,
#content-area h1,
#post-area h1 {
	color: #222;
	font: 700 34px/130% 'Oswald', sans-serif;
	}
.best-headlines li {
	list-style-type: none;
	border-bottom: 1px solid black;
	font-size: 20px;
	margin: 0 !important;
}
.scroll-y {
	max-height: 400px;
}
	table#t01 th {
    color: white;
    background-color: #002868;
	font-size:14px;
	padding: 5px;
	text-align:left;
	background-image:url(https://www.thefreepps.com/wp-content/themes/gameday/images/striped-bg.png);
	}
#t01 button {
	font-weight: bold;
	font-size: 10px;
	padding: 0;
}
#t01 td{
	padding-left:5px;
	text-align:left;
	line-height:18px;
	font-size: 12px;
}
td .derby-horse {
	font-weight: bold;
}
#t01 {
	margin-bottom: 10px;
    background-color: #f1f1c1;
	float: left;
	position: relative;
}
table#t01 tr:nth-child(even) {
    background-color: #eee;
}
table#t01 tr:nth-child(odd) {
    background-color: #fff;
}
table#t01 .t01-2 {
	overflow-y: scrollbar;
	border: 2px solid white;
}
#logos {
display: inline-block;
width: 100%;
}
#logos .image {
width: 100%;
}
h4.widget-header {
background-color: rgb(4,84,167);
}
.flexslider .slides > li:first-child {display: flex;}
ul.bcHistory li {
	padding: 5px;
	text-decoration: underline;
}
ul.bcHistory li a:hover {
	color: blue;
}
ul.bcHistory {
	margin-top: 10px;
}
.bcBox {
	padding-bottom: 20px;
}
.bcSaturday {
list-style-type: none;
margin: 0;
padding: 0;
}

.bcSaturday li {
display: inline;
float: left;
padding: 3px;
}
@media only screen and (min-width: 992px) {
#bcMenu {
	color: white;
	font-size: 20px;
	float: left;
	position: relative;
	width: 960px;
	padding: 10px 10px;
	}
}
@media only screen and (max-width: 600px) {
#bcMenu {
	color: white;
	font-size: 1em;
	float: left;
	position: relative;
	width: 100%;
	padding: 10px 10px;
	}
}
@media only screen and (min-width: 992px) {
.aSense {
	padding: 10px;
	}
}
@media only screen and (max-width: 600px){
	.aSense {
	padding: 10px;
	}
}
@media(max-width: 500px) { .home_mob {
	width: 100%;
	}
}
.fas {
	color: lightgray;
}
  @keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
  }
  .tcontainer{
    width: 100%;
    overflow: hidden;
  }
  .ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 2rem;
background: linear-gradient(90deg,#007bff 0%, #03639f 100%), #007bff;  padding-left: 100%;
	box-sizing: content-box;
  }
  .ticker-move {
    display: inline-block;
    white-space: nowrap;
		height: 4rem;
    line-height: 2rem;
    padding-right: 100%;
		box-sizing: content-box;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 65s;
  }
  .ticker-move:hover{
    animation-play-state: paused;
  }
  .ticker-item {
   display: inline-block;
      padding: 0 2rem;
      font-size: 1rem;
      color: white;
  }
/*.raceNumber {
	border: 1px solid #ccc;
	text-align: center;
	padding: 0 4px;
	color: black;
}
.raceNumber:hover {
	text-decoration: none;
	color: slateblue;
}*/
.postBtn {
	width: 25px;
	height: 25px;
	font-size: 1rem;
	text-align: center;
	line-height: 25px;
	display: inline-block;
	font-weight: bold;
}
.postBtn1 {
	color: white;
	background-color: #f44336;
}
.redRow td{
	background-color: red;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn2 {
	background-color: white;
    border: 1px solid gray;
	color: black
}
.whiteRow td{
	background-color: white;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn3 {
	background-color: blue;
    color: white;
}
.blueRow td{
	background-color: blue;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn4 {
	background-color: yellow;
	color: black;
}
.yellowRow td{
	background-color: yellow;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn5 {
	background-color: green;
	color: white
}
.greenRow td{
	background-color: green;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn6 {
	background-color: black;
	color: white;
}
.blackRow td{
	background-color: black;
	color: gold;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn7 {
	background-color: orange;
	color: black;
}
.orangeRow td{
	background-color: orange;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn8 {
	background-color: pink;
	color: black;
}
.pinkRow td{
	background-color: pink;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn9 {
	background-color: turquoise;
	color: black;
}
.turquoiseRow td{
	background-color: turquoise;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn10{
	background-color: purple;
	color: white;
}
.purpleRow td{
	background-color: purple;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn11{
	background-color: gray;
	color: white;
}
.grayRow td{
	background-color: gray;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn12{
	background-color: lime;
	color: black;
}
.limeRow td{
	background-color: lime;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn13{
	background-color: brown;
	color: white;
}
.brownRow td{
	background-color: brown;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn14{
	background-color: maroon;
	color: white;
}
.maroonRow td{
	background-color: maroon;
	color: yellow;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn15{
	background-color: khaki;
	color: black;
}
.khakiRow td{
	background-color: khaki;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn16{
	background-color: lightblue;
	color: white;
}
.lightblueRow td{
	background-color: lightblue;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn17{
	background-color: navy;
	color: white;
}
.navyRow td{
	background-color: navy;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn18{
	background-color: forestgreen;
	color: white;
}
.forestgreenRow td{
	background-color: forestgreen;
	color: yellow;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn19{
	background-color: royalblue;
	color: white;
}
.royalblueRow td{
	background-color: royalblue;
	color: white;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.postBtn20{
	background-color: fuchsia;
	color: white;
}
.fuchsiaRow td{
	background-color: fuchsia;
	color: black;
	font-weight: 700;
	padding: 5px;
	border-bottom: 2px solid white;
	text-align:left;
}
.betBtn {
	background-color: #85bb65;
	color: white;
	padding: 5px;
	font-weight: bold;
	border: none;
}
.betBtn:hover {
	background-color: gray;
	color: whitesmoke;
}
.betBtnT {
	background-color: #FDB80C;
	color: #2D3846;
	padding: 5px;
	font-weight: bold;
	text-align: center;
	border: none;
}
.betBtnT:hover {
	background-color: gray;
	color: whitesmoke;
}
.month {
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
}
.past-winners-table {
	display: block;
	width: 100%;
	color: grey;
	font-size: 1.5em;
	font-weight: 700;
}
.past-winners-table-row {
	display: table-row;
}
.past-winners-table-label, .past-winners-table-value {
	display: table-cell;
	clear: both;
	padding: 3px 10px;
	border-top: 1px solid grey;
}
    .t01{
        display: table;
			width: 100%;
			position: relative;
    }
    .Title
    {
        display: table-caption;
        text-align: center;
        font-weight: bold;
        font-size: larger;
    }
    .t01-heading
    {
        display: table-row;
        font-weight: bold;
        text-align: center;
    }
    .t01-row
    {
        display: table-row;
    }
    .t01-cell
    {
        display: table-cell;
        border: solid;
        border-width: thin;
        padding-left: 5px;
        padding-right: 5px;
}
.colspan {
	width: 100%;
	left: 0;
	position: absolute;
}
a.tickerlink {
	color: #AEA1BD;
}
span.ticker-heading {
	background: #BF0A30;
}
.mobLinks a {
	display: inline-block;
	border: 1.5px solid #002868;
	padding: .25rem;
	background: white;
	color: #002868;
	border-radius: 30px;
	text-align: center;
	line-height: 20px;
	text-decoration: none;
	width: 100%;
	margin-top: 5px;
}
.mobLinks a:hover {
	background: #002868;
	color: white;
}
ul.widget-headlines {
	display: block;
	float: left;
	margin-bottom: 0;
	position: relative;
	width: auto;
	padding-left: 0;
	}
ul.widget-headlines li {
	background: #007bff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	display: flex;
	float: left;
	padding: 6px 10px;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	}

ul.widget-headlines li:last-child {
	border-bottom: none;
	}

ul.widget-headlines li:hover {
	background: #444;
	}

ul.widget-headlines li img {
	float: left;
	margin-right: 10px;
	border-radius: 2px;
	}

ul.widget-headlines li p a {
	clear: both;
	color: #fff;
	float: left;
	font: bold 14px/16px Oswald, arial, sans-serif;
	}
ul.widget-headlines li p a:hover {
	color: #fff;
	text-decoration: none;
	}
.widget-headlines-text {
	float: left;
	position: relative;
	width: 100%;
	padding-left: 10px;
	}
ul.headlines {
	display: block;
	float: left;
	margin-bottom: 24px;
	position: relative;
	width: 100%;
	}
ul.headlines li {
	background: #007bff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
	border-left: 1px solid #444;
	border-right: 1px solid #444;
	display: block;
	float: left;
	padding: 6px 10px;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 343px;
	}

ul.headlines li:last-child {
	border-bottom: none;
	}

ul.headlines li:hover {
	background: #444;
	}

ul.headlines li img {
	float: left;
	margin-right: 10px;
	border-radius: 2px;
	}

ul.headlines li p a {
	clear: both;
	color: #fff;
	float: left;
	margin-right: 20px;
	font: bold 14px/16px Oswald, arial, sans-serif;
	}

ul.headlines li p a:hover {
	color: #fff;
	text-decoration: none;
	}
.headlines-text {
	float: left;
	position: relative;
	width: 285px;
	}
#content-inner {
	width: 100%;
	margin-top: 1rem;
	background: none;
	padding: 5px 5px;
}
.widget-container {
	width: 300px;
}
.widget-inner {
	display: flex;
    flex-direction: column;
    min-height: 350px; /* Adjust this to match your typical 'card' height */
	float: left;
	position: relative;
	width: 100%;
}
h4.widget-header {
	background: #002868;
	width: 300px;
}
#footer-wrapper {
	background: #002868;
}
#main-top {
	background: linear-gradient(90deg,#162f55 0%, #03639f 100%), #162f55;
	margin-bottom: 0;
}
.ticketmaker {
	background: #002868;
}
.deep-dark-strip {
	background: #222022;
}
.post-layout-strip {
	display: inline-block;
}
.featured-text {
	width: 100%;
}

#headlines-wrapper {
	background: #007bff;
	/*float: left;*/
	overflow: hidden;
	position: relative;
	width: 100;
	height: 400px;
}
.date-cat {
	color: #fff;
	display: inline-block;
	float: left;
	font: 10px/10px helvetica, arial, sans-serif;
	margin-bottom: 2px;
	position: relative;
	}
ul.headlines-cat {
	display: inline-block;
	float: left;
	margin-bottom: 2px;
	position: relative;
	}

ul.headlines-cat {
	background: none;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	color: #fff;
	display: inline;
	float: left;
	font: 10px/10px helvetica, arial, sans-serif;
	padding: 0 0 0 5px;
	width: auto !important;
	}

ul.headlines-cat li:last-child {
	border-bottom: none;
	}
ul.headlines-cat li:hover {
	background: none;
	}
/*#tabs-wrapper {
	float: left;
	position: relative;
	width: 365px;
	height: 530px;
	@media screen and (min-width: 768px) and (max-width: 1002px) {
		width: 100%;
	}
}*/
	/*#left-tabs-wrapper {
	float: left;
	position: relative;
	width: 100%;
	height: 530px;

	@media screen and (min-width: 768px) and (max-width: 1002px) {
		width: 100%;
	}*/
}
.nav.nav-tabs {
	margin-top: 3px;
	padding-left: 10px;
}
.nav-item a.nav-link {
	background: #007bff;
	color: white;
	margin-right: .15rem;
}
ul.headlines {
	padding-left: 0;
}
ul.headlines li {
	display: flex;
}
.card-body {display: block}
#fpps-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #0073aa; /* Your brand blue */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.8;
}

#fpps-back-to-top:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: #005a87;
}

#fpps-back-to-top .arrow {
    font-size: 18px;
    line-height: 1;
}