:root {
    --bt-bg: #ffffff;
    --bt-surface: #ffffff;
    --bt-text: #0f172a;
    --bt-muted: #64748b;
    --bt-border: rgba(15, 23, 42, .10);
    --bt-border-strong: rgba(15, 23, 42, .16);
    --bt-shadow: 0 8px 24px rgba(15, 23, 42, .08);
    --bt-radius-lg: 16px;
    --bt-radius-md: 12px;
    --bt-radius-sm: 10px;
    --bt-gap: 14px;
    --bt-price-color: #cc0000;
    --bt-available-bg: #dcfce7;
    --bt-available-color: #15803d;
    --bt-available-border: #bbf7d0;
}
/* ── Results section ────────────────────────────── */

.fp-review-reply {
    margin-top: 10px;
    margin-left: 20px;
    padding: 10px 14px;
    background-color: #f0f4ff;
    border-left: 3px solid #4a6cf7;
    border-radius: 4px;
}
.fp-review-reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.fp-review-reply-icon {
    color: #4a6cf7;
    font-size: 14px;
}
.fp-review-reply-date {
    font-size: 12px;
    color: #888;
}
.fp-review-reply-text {
    font-size: 14px;
    color: #444;
}
.bt-results {
    margin-top: 10px;
}
.bt-results__head {
    text-align: center;
    margin: 0 0 14px;
}
.bt-results__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--bt-text);
    display: none;
}

div#content h1 {
    text-align: center;
    opacity: 0 !important;
    height: 0 !important;
}

/* ── Grid ───────────────────────────────────────── */
.bt-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--bt-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 992px) {
    .bt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .bt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 420px) {
    .bt-grid {
        grid-template-columns: 1fr;
    }
}
/* ── Card ───────────────────────────────────────── */

.bt-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    background: var(--bt-surface);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.bt-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--bt-shadow);
    border-color: var(--bt-border-strong);
}
.bt-card:focus-visible {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .20), var(--bt-shadow);
    border-color: rgba(59, 130, 246, .40);
}
.bt-card.is-selected {
    border-color: rgba(59, 130, 246, .55);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .14), var(--bt-shadow);
}
/* Red highlight when card is selected/active */

.bt-card--active {
    border-color: rgba(153, 0, 0, .55) !important;
    box-shadow: 0 0 0 4px rgba(153, 0, 0, .14), var(--bt-shadow) !important;
    background: #fff8f8 !important;
}
.bt-card__media {
    width: 74px;
    height: 74px;
    border-radius: var(--bt-radius-md);
    border: 1px solid var(--bt-border);
    background: rgba(15, 23, 42, .02);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.bt-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.bt-card__body {
    min-width: 0;
    display: grid;
    gap: 6px;
}
.bt-card__top {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
/* ── Badge ──────────────────────────────────────── */

.bt-badge {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--bt-border);
    background: rgba(15, 23, 42, .03);
    color: var(--bt-text);
    font-size: 12px;
    font-weight: 600;
}
/* Green "Available" badge */

.bt-badge--available {
    background: var(--bt-available-bg);
    color: var(--bt-available-color);
    border-color: var(--bt-available-border);
    font-weight: 700;
}
.bt-meta {
    font-size: 12px;
    color: var(--bt-muted);
}
.bt-card__name {
    margin: 0;
    font-size: 13px;
    line-height: 1.25rem;
    color: var(--bt-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bt-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.bt-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}
/* Red price */

.bt-price__new, .bt-price--red {
    font-weight: 800;
    font-size: 13px;
    color: var(--bt-price-color) !important;
}
.bt-price__old {
    font-size: 12px;
    color: var(--bt-muted);
    text-decoration: line-through;
}
/* ── Right-column panel ─────────────────────────── */

.rc-panel {
    padding: 0 16px;
}
.rc-img-wrap {
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}
.rc-thumb {
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* ── #addToCart panel ───────────────────────────── */

#addToCart {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--bt-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Price row */
.rc-price-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
}
.rc-price__val {
    font-size: 22px;
    font-weight: 800;
    color: var(--bt-price-color);
    letter-spacing: -0.02em;
}

/* Warehouse availability table */
.rc-table {
    width: 100%;
    font-size: 13px;
    margin: 0;
    border-collapse: collapse;
    border-radius: var(--bt-radius-md);
    overflow: hidden;
    border: 1px solid var(--bt-border);
}

.rc-table tr th {
    text-align: center;
}

.rc-table thead tr {
    background: #f8fafc;
}
.rc-table thead th {
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bt-muted);
    border-bottom: 1px solid var(--bt-border);
    /* override global .table th border: none */
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid var(--bt-border) !important;
}
.rc-table tbody td {
    padding: 8px 10px;
    color: var(--bt-text);
    line-height: 1.4;
    /* override global .table td border: none */
    border: none !important;
    border-bottom: 1px solid var(--bt-border) !important;
}
.rc-table tbody tr:last-child td {
    border-bottom: none !important;
}
.rc-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

/* Availability value — right column */
.rc-table tbody td:last-child {
    font-weight: 700;
    color: var(--bt-available-color);
    text-align: center;
    white-space: nowrap;
}

/* Actions row */
.rc-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
}

/* "View product information" — ghost outline button */
.rc-btn-view {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid var(--bt-border-strong);
    background: #ffffff;
    color: var(--bt-text);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
    /* override Bootstrap btn-info */
    background-color: #ffffff !important;
    color: var(--bt-text) !important;
    border-color: var(--bt-border-strong) !important;
    box-shadow: none !important;
}
.rc-btn-view:hover {
    border-color: rgba(15, 23, 42, .30) !important;
    background: #f8fafc !important;
    transform: translateY(-1px);
    color: var(--bt-text) !important;
}

/* Quantity select */
.rc-qty {
    width: auto !important;
    min-width: 64px;
    flex: 0 0 auto;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--bt-border-strong);
    border-radius: 999px;
    background: #f8fafc;
    color: var(--bt-text);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease;
    text-align: center;
}
.rc-qty:focus {
    outline: none;
    border-color: #900;
    box-shadow: 0 0 0 3px rgba(153, 0, 0, .10);
}

/* "Add To Cart" — primary maroon pill button */
.rc-btn-cart {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 999px;
    letter-spacing: 0.03em;
    /* override Bootstrap btn-primary */
    background: #900 !important;
    border-color: #900 !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(153, 0, 0, .28) !important;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease !important;
    text-decoration: none;
}
.rc-btn-cart:hover {
    background: #700 !important;
    border-color: #700 !important;
    box-shadow: 0 10px 24px rgba(153, 0, 0, .38) !important;
    transform: translateY(-1px);
    color: #fff !important;
}
.rc-btn-cart:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(153, 0, 0, .20) !important;
}
/* ── Filter wrapper ─────────────────────────────── */
/* Styled after section.bt-news-blog / .box-content pattern */

#filter-wrapper {
    --bt-bg: #fff;
    --bt-surface: #fff;
    --bt-text: #0f172a;
    --bt-muted: #64748b;
    --bt-border: rgba(15, 23, 42, .10);
    --bt-border-strong: rgba(15, 23, 42, .16);
    --bt-shadow: 0 10px 30px rgba(15, 23, 42, .07);
    --bt-radius-lg: 20px;
    --bt-radius-md: 12px;
    --bt-radius-sm: 10px;
    --bt-gap: 16px;

    margin-top: 18px;

    /* Outer card — mirrors .box-content */
    background: var(--bt-surface);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    box-shadow: var(--bt-shadow);
    padding: 20px;

    /* Two-column layout inside the card */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bt-gap);
    align-items: stretch;
}

/* Left column — filter panel */
#left-column {
    background: #f8fafc;
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-md);
    overflow: hidden;
}

/* Section label header inside left column — mirrors h3 in bt-news-blog */
#left-column::before {
    content: "Filter Products";
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bt-muted);
    background: #f1f5f9;
    border-bottom: 2px solid rgba(15, 23, 42, .08);
}

/* Right column — product detail panel */
#right-column {
    position: sticky;
    top: 20px;
    align-self: start;
    display: flex;
    flex-direction: column;
    background: var(--bt-surface);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-md);
    overflow: hidden;
}

/* rc-panel fills remaining space */
#right-column .rc-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 16px 16px;
}

/* Right column header label */
#right-column::before {
    content: "Product Details";
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bt-muted);
    background: #f1f5f9;
    border-bottom: 2px solid rgba(15, 23, 42, .08);
}

/* Tablet */
@media (max-width: 991px) {
    #filter-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
    }
}

/* Mobile — stack vertically */
@media (max-width: 767px) {
    #filter-wrapper {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 12px;
    }

    #left-column,
    #right-column {
        position: relative;
        top: auto;
        min-height: unset;
        align-self: auto;
    }
}

/* Left column filter table */
#left-column table {
    background: transparent;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

#right-column #prod-thumb {
    max-width: 260px;
}

/* ── Left column filter table rows ──────────────── */

#left-column table tr {
    border-bottom: 1px solid var(--bt-border);
    transition: background 0.12s ease;
}

#left-column table tr:last-child {
    border-bottom: none;
}

#left-column table tr:hover {
    background: #ffffff;
}

/* Reset first row (reset button row) */
#left-column table tr:first-child {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, .10);
}

#left-column table tr:first-child:hover {
    background: #e8edf2;
}

/* Override global .table td/th border: none */
#left-column table td,
#left-column table th {
    border: none !important;
    padding: 9px 14px;
    vertical-align: middle;
}

/* Filter label cell */
#left-column .fp-filter-label {
    width: 40%;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bt-muted) !important;
    text-align: right;
    padding-right: 12px;
    white-space: nowrap;
}

/* Filter select */
#left-column .form-control.filter-select {
    width: 100%;
    height: 34px;
    padding: 0 28px 0 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bt-text);
    background-color: #ffffff;
    border: 1px solid var(--bt-border-strong);
    border-radius: var(--bt-radius-sm);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

#left-column .form-control.filter-select:focus {
    border-color: #900;
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.10);
    background-color: #fff;
}

#left-column .form-control.filter-select:hover {
    border-color: rgba(15, 23, 42, 0.28);
}

/* Reset filters button */
#left-column #reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bt-muted) !important;
    background: #ffffff !important;
    border: 1px solid var(--bt-border-strong) !important;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: none !important;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

#left-column #reset-filters::before {
    content: "↺";
    font-size: 13px;
    line-height: 1;
}

#left-column #reset-filters:hover {
    color: #900 !important;
    border-color: rgba(153, 0, 0, 0.35) !important;
    background: #fff8f8 !important;
    transform: translateY(-1px);
}

/* Search button (shown by JS) */
#left-column #filter-search-button {
    display: none;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    background: #900 !important;
    border-color: #900 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(153, 0, 0, 0.25) !important;
    transition: background 0.15s ease, transform 0.1s ease !important;
}

#left-column #filter-search-button:hover {
    background: #700 !important;
    border-color: #700 !important;
    transform: translateY(-1px);
}
/* ── Results instruction text ───────────────────── */

#results-instruction {
    border-top: 1px solid var(--bt-border);
    padding-top: 12px;
    margin-top: 18px;
}
/* ══════════════════════════════════════════════════
   TAB BLOCK
══════════════════════════════════════════════════ */

.fp-tabs-wrapper {
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    overflow: hidden;
}
.fp-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--bt-border);
    background: #f8fafc;
    overflow-x: auto;
}
.fp-tab-btn {
    flex: 0 0 auto;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bt-muted);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}
.fp-tab-btn:hover {
    color: var(--bt-text);
}
.fp-tab-btn.active {
    color: #900;
    border-bottom-color: #900;
    background: #fff;
}
.fp-tab-content {
    display: none;
    padding: 24px;
    background: #fff;
    line-height: 1.7;
    color: var(--bt-text);
}
.fp-tab-content.active {
    display: block;
}
.fp-static-content h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
}
.fp-static-content ul {
    padding-left: 20px;
    margin: 10px 0;
}
.fp-static-content li {
    margin-bottom: 6px;
}
/* ── Review list ────────────────────────────────── */

.fp-reviews-list {
    margin-bottom: 28px;
}
.fp-review-item {
    border-bottom: 1px solid var(--bt-border);
    padding: 16px 0;
}
.fp-review-item:last-child {
    border-bottom: none;
}
.fp-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.fp-review-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--bt-text);
}
.fp-review-date {
    font-size: 12px;
    color: var(--bt-muted);
}
.fp-review-stars {
    font-size: 14px;
}
.fp-star-filled {
    color: #f59e0b;
}
.fp-star-empty {
    color: #d1d5db;
}
.fp-review-text {
    font-size: 14px;
    color: #374151;
}
.fp-no-reviews {
    color: var(--bt-muted);
    font-style: italic;
}
.fp-pagination {
    margin-top: 16px;
}
.fp-pagination-results {
    font-size: 12px;
    color: var(--bt-muted);
    margin-bottom: 8px;
}
/* ── Add Review form ────────────────────────────── */

.fp-add-review {
    border-top: 1px solid var(--bt-border);
    padding-top: 24px;
    margin-top: 24px;
}
.fp-add-review__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--bt-text);
}
.fp-form-group {
    margin-bottom: 14px;
}
.fp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text);
    margin-bottom: 5px;
}
.fp-form-control {
    width: 100%;
/*    max-width: 480px;*/
    padding: 8px 12px;
    border: 1px solid var(--bt-border-strong);
    border-radius: var(--bt-radius-sm);
    font-size: 14px;
    color: var(--bt-text);
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s;
}
.fp-form-control:focus {
    outline: none;
    border-color: #900;
    box-shadow: 0 0 0 3px rgba(153, 0, 0, .10);
}
textarea.fp-form-control {
    resize: vertical;
    min-height: 90px;
}
/* Interactive stars */

.fp-star-rating {
    display: flex;
    gap: 4px;
    margin: 2px 0;
}
.fp-star-input {
    font-size: 24px;
    color: #d1d5db;
    cursor: pointer;
    transition: color .12s, transform .12s;
    line-height: 1;
}
.fp-star-input.hovered, .fp-star-input.selected {
    color: #f59e0b;
}
.fp-star-input:hover {
    transform: scale(1.15);
}
.fp-submit-review {
    margin-top: 6px;
}
/* ══════════════════════════════════════════════════
   RELATED ARTICLES
══════════════════════════════════════════════════ */

.fp-related-articles {}
.fp-related-articles__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bt-text);
    margin-bottom: 16px;
}
.fp-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 768px) {
    .fp-articles-grid {
        grid-template-columns: 1fr;
    }
}
.fp-article-card {
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    overflow: hidden;
    background: #fff;
    transition: box-shadow .18s, transform .18s;
}
.fp-article-card:hover {
    box-shadow: var(--bt-shadow);
    transform: translateY(-2px);
}
.fp-article-card__img-wrap {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f1f5f9;
}
.fp-article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.fp-article-card:hover .fp-article-card__img {
    transform: scale(1.04);
}
.fp-article-card__body {
    padding: 16px;
}
.fp-article-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #900;
    background: #fff0f0;
    border: 1px solid #fecaca;
    border-radius: 999px;
    padding: 2px 10px;
    margin-bottom: 8px;
}
.fp-article-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--bt-text);
    margin: 0 0 8px;
    line-height: 1.4;
}
.fp-article-card__excerpt {
    font-size: 13px;
    color: var(--bt-muted);
    margin: 0 0 12px;
    line-height: 1.5;
}
.fp-article-card__link {
    font-size: 13px;
    font-weight: 700;
    color: #900;
    text-decoration: none;
}
.fp-article-card__link:hover {
    text-decoration: underline;
}
/*Notice Box*/

.notice-box {
    text-align: center;
    margin: 0;
    padding: 10px 14px;
    background: #fdf2f2;
    border-left: 4px solid #7f1d1d;
    border-radius: 4px;
}
.notice-box p {
    font-size: 16px;
    color: #3b0a0a;
    margin: 0;
    font-weight: 500;
}
.notice-box p+p {
    font-size: 13px;
    color: #7f1d1d;
    margin-top: 4px;
    font-weight: normal;
}
/* ══════════════════════════════════════════════════
   MOVED FROM INLINE STYLES
══════════════════════════════════════════════════ */

/* #content container */

#content.container {
    border: none;
    padding: 0 5px;
}
/* Filter label td */

.fp-filter-label {
    font-size: 16px;
    color: #900;
    font-weight: bold;
    vertical-align: middle;
}
/* Hidden by default, triggered via JS */

#filter-search-button {
    display: none;
}
/* Hidden until card is clicked */

#addToCart {
    display: none;
}
/* Clear float */

.fp-clear {
    clear: both;
}
/* Spinner */

#spinner {
    display: none;
    text-align: center;
    margin-top: 30px;
}
/* Results */

#results {
    margin-top: 10px;
}
/* Second description block */

.filter-description--bottom {
    margin-top: 30px;
}
/* Tab block */

.fp-tabs-wrapper {
    margin-top: 36px;
}
/* Related articles */

.fp-related-articles {
    margin-top: 40px;
}
/* Review alert — hidden by default */

#fp-review-alert {
    display: none;
}
/* JS-generated error message */

.fp-error-msg {
    text-align: center;
    color: red;
}
/*TABLE STYLING*/

div#filter-wrapper table tr+tr {
    border-top: 1px solid #ddd;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border: none;
}
