/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --font-editorial: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Centralized Typography Scale (1rem = 10px based on bootstrap html base reset) */
    --font-size-xs: 1.2rem;
    /* 12px - Footnotes / Micro-copy */
    --font-size-sm: 1.35rem;
    /* 13.5px - Small label / metadata */
    --font-size-md: 1.5rem;
    /* 15px - Default Body Text */
    --font-size-lg: 1.7rem;
    /* 17px - Sub-headers / Large labels */
    --font-size-xl: 2.0rem;
    /* 20px - H3 / Card Titles */
    --font-size-2xl: 2.4rem;
    /* 24px - H2 / Page Sections */
    --font-size-3xl: 3.0rem;
    /* 30px - H1 / Sub-banners */
    --font-size-4xl: 3.6rem;
    /* 36px - Hero Titles */

    --default-font-size: var(--font-size-md);

    --color-primary: #1b3b2b;
    --color-primary-rgb: 27, 59, 43;
    --color-accent: #d48c5e;
    --color-accent-hover: #b97448;
    --color-bg-warm: #fcfaf7;
    --color-bg-sage: #e9ece7;
    --color-text-dark: #232a25;
    --color-text-muted: #626c65;
    --color-white: #ffffff;

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-round: 50%;

    --shadow-soft: 0 4px 20px rgba(27, 59, 43, 0.04);
    --shadow-hover: 0 12px 32px rgba(27, 59, 43, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(27, 59, 43, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-out;
}

.text-center {
    text-align: center !important;
}

.justify-center {
    justify-content: center !important;
}

.text-xs {
    font-size: var(--font-size-xs) !important;
}

.text-sm {
    font-size: var(--font-size-sm) !important;
}

.text-md {
    font-size: var(--font-size-md) !important;
}

.text-lg {
    font-size: var(--font-size-lg) !important;
}

.text-xl {
    font-size: var(--font-size-xl) !important;
}

.text-2xl {
    font-size: var(--font-size-2xl) !important;
}

.text-3xl {
    font-size: var(--font-size-3xl) !important;
}

.text-4xl {
    font-size: var(--font-size-4xl) !important;
}

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-to-content:focus-within {
    top: 0;
}

.premium-header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(27, 59, 43, 0.08);
    padding: 14px 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1100;
    font-family: var(--font-sans);
}

.premium-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 24px;
    min-height: 52px;
}

.premium-header .header-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.premium-header .header-brand a,
.premium-header .header-brand-link {
    font-family: var(--font-editorial);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.premium-header .header-brand a:hover {
    color: var(--color-accent);
}

.premium-header .header-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    flex: 0 0 38px;
}

.premium-header .siteTitle {
    color: var(--color-primary);
    font-family: var(--font-editorial);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.premium-header #navbar {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    float: none !important;
    height: auto !important;
    justify-content: center;
    min-width: 0;
    overflow: visible !important;
}

/* Desktop: force single-row header (logo | nav | actions) */
@media (min-width: 992px) {
    .premium-header .header-container {
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        gap: clamp(12px, 2vw, 24px);
    }

    .premium-header .navbar-toggle {
        display: none !important;
    }

    .premium-header #navbar.navbar-collapse,
    .premium-header #navbar.navbar-collapse.collapse {
        align-items: center;
        display: flex !important;
        flex: 1 1 auto;
        height: auto !important;
        justify-content: center;
        max-height: none !important;
        min-width: 0;
        overflow: visible !important;
        visibility: visible !important;
    }

    .premium-header nav.menu-bar {
        justify-content: center;
        width: 100%;
    }

    .premium-header ul.weblinks {
        flex-wrap: nowrap;
        gap: clamp(10px, 1.4vw, 20px);
        justify-content: center;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .premium-header ul.weblinks::-webkit-scrollbar {
        display: none;
    }

    .premium-header ul.weblinks li.weblink a {
        font-size: var(--font-size-sm);
        padding: 6px 0;
        white-space: nowrap;
    }

    .premium-header .header-actions {
        flex: 0 0 auto;
        margin-left: 0;
        padding-top: 0;
        border-top: none;
    }
}

.premium-header nav.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
    float: none !important;
}

.premium-header ul.weblinks {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    float: none !important;
}

.premium-header ul.weblinks li.weblink {
    position: relative;
}

.premium-header ul.weblinks li.weblink a {
    font-family: var(--font-sans);
    font-size: var(--default-font-size);
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
}

.premium-header ul.weblinks li.weblink a:hover,
.premium-header ul.weblinks li.weblink.active a {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.premium-header ul.weblinks li.divider-vertical {
    width: 1px;
    height: 20px;
    background-color: rgba(27, 59, 43, 0.1);
    margin: 0 4px;
}

.premium-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 300px;
    padding: 10px;
    margin: 8px 0 0;
    font-size: var(--font-size-sm);
    text-align: left;
    list-style: none;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid rgba(27, 59, 43, 0.08);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-hover);
    animation: slideDown 0.2s ease-out;
}

.premium-header .dropdown:hover .dropdown-menu,
.premium-header .dropdown.open .dropdown-menu {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-header .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    clear: both;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.premium-header .dropdown-menu li a:hover {
    background-color: var(--color-bg-warm);
    color: var(--color-accent);
}

.premium-header .dropdown-menu .divider {
    height: 1px;
    margin: 6px 0;
    overflow: hidden;
    background-color: rgba(27, 59, 43, 0.06);
}

.premium-header .dropdown-header {
    padding: 6px 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.premium-header .header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: 0;
    flex-shrink: 0;
    float: none !important;
    min-height: 40px;
}

.premium-header #userAuthAction {
    display: flex;
    align-items: center;
}

.premium-header .action-btn,
.premium-header .btn-avtar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: var(--border-radius-round);
    background-color: var(--color-bg-warm);
    border: 1px solid rgba(27, 59, 43, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    text-decoration: none;
    /* transition: var(--transition-smooth); */
    cursor: pointer;
}

.premium-header .action-btn:hover {
    background-color: var(--color-bg-sage);
    color: var(--color-primary);
    /* transform: translateY(-2px); */
}

.premium-header .btn-signin {
    background-color: var(--color-primary);
    color: var(--color-white);
    min-height: 40px;
    padding: 0 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: var(--font-size-sm);
    line-height: 1;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(27, 59, 43, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.premium-header .btn-signin:hover {
    background-color: var(--color-accent);
    box-shadow: 0 6px 18px rgba(212, 140, 94, 0.2);
    transform: translateY(-2px);
}

.premium-header .profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    background-color: var(--color-bg-warm);
    border: 1px solid rgba(27, 59, 43, 0.05);
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    width: auto;
}

.premium-header .profile-trigger:hover {
    background-color: var(--color-bg-sage);
}

.premium-header .profile-avatar {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-round);
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Cart Icon with Badge */
.premium-header .cart-icon {
    position: relative;
}

.premium-header .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--border-radius-round);
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 140, 94, 0.3);
    pointer-events: none;
    z-index: 2;
}

.premium-header .cart-icon.has-items .cart-badge {
    display: flex;
    animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orders-page .status-pending_payment {
    background-color: #f8e7c2;
    color: #7a5200;
}

.orders-page .status-ready {
    background-color: #e0f2fe;
    color: #075985;
}

.orders-page .status-completed {
    background-color: #dcfce7;
    color: #166534;
}

.orders-page .status-cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

@keyframes badgePop {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.premium-header .dropdown-search {
    min-width: 320px;
    padding: 16px;
}

.premium-header .dropdown-search .form-control {
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(27, 59, 43, 0.15);
    padding: 8px 12px;
}

.premium-header .dropdown-search .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 140, 94, 0.15);
}

.home-stores-page .stores-toolbar {
    position: sticky;
    top: 72px;
    z-index: 900;
    background: rgba(252, 250, 247, 0.96);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .premium-header .header-container {
        align-items: center;
        display: grid;
        gap: 8px 12px;
        grid-template-columns: 1fr auto auto;
    }

    .premium-header .header-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .premium-header .navbar-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        grid-column: 2;
        grid-row: 1;
        padding: 10px;
    }

    .premium-header .navbar-toggle .icon-bar {
        width: 24px;
        height: 2px;
        background-color: var(--color-primary);
        transition: var(--transition-fast);
    }

    .premium-header .header-actions {
        border-top: none;
        grid-column: 3;
        grid-row: 1;
        justify-content: flex-end;
        margin-left: 0;
        padding-top: 0;
    }

    .premium-header #navbar {
        display: none;
        flex-direction: column;
        align-items: stretch;
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .premium-header #navbar.in,
    .premium-header #navbar.show {
        display: flex;
    }

    .premium-header ul.weblinks {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 0;
    }

    .premium-header ul.weblinks li.divider-vertical {
        display: none;
    }

    .home-stores-page .stores-toolbar {
        top: 76px;
    }
}

.premium-page {
    font-family: var(--font-sans);
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    line-height: 1.6;
    padding: 40px 0 80px;
}

.premium-page .premium-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: center;
    background-color: var(--color-bg-sage);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 56px;
    margin-bottom: 40px;
    overflow: hidden;
}

.premium-page .premium-hero.compact {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
}

.premium-page .premium-eyebrow {
    color: var(--color-accent);
    display: inline-block;
    font-size: var(--font-size-lg);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.premium-page h1,
.premium-page h2,
.premium-page h3 {
    color: var(--color-primary);
    font-family: var(--font-editorial);
    font-weight: 600;
}

.premium-page h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin: 0 0 18px;
}

.premium-page h2 {
    font-size: 2rem;
    margin: 0 0 16px;
}

.premium-page h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.premium-page p {
    color: var(--color-text-muted);
    margin: 0 0 16px;
}

.premium-page .premium-lede {
    font-size: var(--font-size-md);
}

.premium-page .premium-hero-media img,
.premium-page .premium-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    display: block;
    object-fit: cover;
    width: 100%;
}

.premium-page .premium-section {
    margin: 40px 0;
}

.premium-page .premium-section-header {
    margin-bottom: 24px;
    max-width: 760px;
}

.premium-page .premium-section.centered .premium-section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.premium-page .premium-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.premium-page .premium-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-page .premium-card {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.premium-page .premium-card:hover {
    box-shadow: var(--shadow-hover);
}

.premium-page .premium-icon {
    align-items: center;
    background-color: var(--color-bg-sage);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary);
    display: inline-flex;
    font-size: 1.25rem;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    margin-bottom: 18px;
    width: 44px;
}

.premium-page .premium-split {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.premium-page .premium-check-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-page .premium-check-list li {
    color: var(--color-text-muted);
    display: flex;
    gap: 12px;
}

.premium-page .premium-check-list li::before {
    align-items: center;
    background-color: var(--color-bg-sage);
    border-radius: var(--border-radius-round);
    color: var(--color-primary);
    content: "✓";
    display: inline-flex;
    flex: 0 0 28px;
    font-weight: 700;
    height: 28px;
    justify-content: center;
}

.premium-page .premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.premium-page .premium-btn,
.premium-page button.premium-btn,
.premium-page a.premium-btn {
    align-items: center;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-sans);
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.premium-page .premium-btn:hover,
.premium-page button.premium-btn:hover,
.premium-page a.premium-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.premium-page .premium-btn.secondary {
    background-color: transparent;
    color: var(--color-primary);
}

.premium-page .premium-btn.secondary:hover {
    background-color: var(--color-bg-sage);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.premium-page .premium-form {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.premium-page .premium-field {
    margin-bottom: 18px;
}

.premium-page .premium-field label {
    color: var(--color-primary);
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-page .premium-field input,
.premium-page .premium-field select,
.premium-page input.form-control,
.premium-page select.form-control,
.premium-page textarea.form-control {
    border: 1px solid rgba(27, 59, 43, 0.14);
    border-radius: var(--border-radius-sm);
    box-shadow: none;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.premium-page .premium-field input:focus,
.premium-page .premium-field select:focus,
.premium-page input.form-control:focus,
.premium-page select.form-control:focus,
.premium-page textarea.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 140, 94, 0.15);
    outline: none;
}

.premium-page .premium-table-wrap {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.premium-page .premium-table {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

.premium-page .premium-table th {
    background-color: var(--color-bg-sage);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    text-transform: uppercase;
}

.premium-page .premium-table td {
    border-top: 1px solid rgba(27, 59, 43, 0.05);
    color: var(--color-text-dark);
    padding: 16px 18px;
}

.premium-page .premium-total {
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: right;
}

.premium-page .premium-status {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    margin: 48px auto;
    max-width: 720px;
    padding: 56px;
    text-align: center;
}

.premium-page .premium-status-mark {
    align-items: center;
    background-color: var(--color-bg-sage);
    border-radius: var(--border-radius-round);
    color: var(--color-primary);
    display: inline-flex;
    font-size: 2rem;
    font-weight: 700;
    height: 72px;
    justify-content: center;
    margin-bottom: 22px;
    width: 72px;
}

.premium-page .premium-note {
    background-color: rgba(212, 140, 94, 0.12);
    border: 1px solid rgba(212, 140, 94, 0.24);
    border-radius: var(--border-radius-md);
    color: var(--color-primary);
    padding: 18px 20px;
}

.premium-page .entitylist,
.premium-page .crmEntityFormView,
.premium-page .entity-form {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.06);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

/* Shared marketplace page system */
.premium-marketplace {
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    padding: 40px 0;
}

.premium-marketplace h1,
.premium-marketplace h2,
.premium-marketplace h3,
.premium-marketplace h4 {
    color: var(--color-primary);
    font-family: var(--font-editorial);
    font-weight: 600;
}

.premium-marketplace .section-header {
    align-items: flex-end;
    border-bottom: 1px solid rgba(27, 59, 43, 0.1);
    display: flex;
    justify-content: space-between;
    margin: 50px 0 24px;
    padding-bottom: 12px;
}

.premium-marketplace .section-header h2,
.premium-marketplace .bottom-selector-section h2 {
    margin: 0;
}

.premium-marketplace .section-header h2 {
    position: relative;
}

.premium-marketplace .section-header h2::after {
    background-color: var(--color-accent);
    border-radius: 2px;
    bottom: -13px;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
}

.premium-marketplace .section-header a {
    align-items: center;
    color: var(--color-accent);
    display: flex;
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    font-weight: 600;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.premium-marketplace .section-header a:hover {
    color: var(--color-accent-hover);
    transform: translateX(3px);
}

.premium-marketplace .market-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.premium-marketplace .market-search {
    background: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    width: 100%;
}

.premium-marketplace .market-search:focus-within {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.premium-marketplace .market-search form {
    align-items: center;
    display: flex;
    padding: 4px 6px;
}

.premium-marketplace .market-search-icon {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    padding-left: 20px;
}

.premium-marketplace .market-search input.form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    padding: 16px 20px;
    width: 100%;
}

.premium-marketplace .market-search input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.premium-marketplace .market-search button.search-btn,
.premium-marketplace .shop-btn {
    background-color: var(--color-primary);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: var(--transition-fast);
}

.premium-marketplace .market-search button.search-btn {
    border-radius: calc(var(--border-radius-lg) - 4px);
    margin-right: 4px;
    padding: 12px 24px;
}

.premium-marketplace .market-search button.search-btn:hover,
.premium-marketplace .shop-btn:hover {
    background-color: var(--color-accent);
}

.premium-marketplace .hero-banner {
    background: linear-gradient(135deg, var(--color-bg-sage) 0%, #f0f3ee 100%);
    border: 1px solid rgba(27, 59, 43, 0.04);
    border-radius: var(--border-radius-lg);
    margin-bottom: 40px;
    overflow: hidden;
    padding: 56px;
    position: relative;
}

.premium-marketplace .hero-banner::after {
    background: radial-gradient(circle, rgba(212, 140, 94, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: var(--border-radius-round);
    content: '';
    height: 300px;
    pointer-events: none;
    position: absolute;
    right: -50px;
    top: -100px;
    width: 300px;
}

.premium-marketplace .hero-tagline {
    background-color: rgba(212, 140, 94, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-accent);
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 6px 16px;
    text-transform: uppercase;
}

.premium-marketplace .hero-title {
    color: var(--color-primary);
    font-family: var(--font-editorial) !important;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
}

.premium-marketplace .hero-title span {
    color: var(--color-accent);
    font-family: var(--font-editorial) !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

.premium-marketplace .hero-subtitle {
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    font-size: var(--font-size-md);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
}

.premium-marketplace .shop-btn {
    border-radius: var(--border-radius-md);
    box-shadow: 0 6px 20px rgba(27, 59, 43, 0.15);
    padding: 16px 36px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.premium-marketplace .shop-btn:hover {
    box-shadow: 0 10px 25px rgba(212, 140, 94, 0.25);
    transform: translateY(-3px);
}

.premium-marketplace .hero-illustration-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.premium-marketplace .hero-illustration {
    align-items: center;
    animation: organicBubble 10s infinite alternate ease-in-out;
    background: var(--color-white);
    border: 4px solid var(--color-bg-sage);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    box-shadow: var(--shadow-hover);
    color: var(--color-primary);
    display: flex;
    font-size: 7rem;
    height: 280px;
    justify-content: center;
    width: 280px;
}

@keyframes organicBubble {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }

    50% {
        border-radius: 55% 45% 38% 62% / 55% 53% 47% 45%;
    }

    100% {
        border-radius: 42% 58% 68% 32% / 35% 60% 40% 65%;
    }
}

.premium-marketplace .store-card,
.premium-marketplace .product-card,
.premium-marketplace .category-card,
.premium-marketplace .selector-card,
.premium-marketplace .bottom-selector-section {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 59, 43, 0.05);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.premium-marketplace .store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    overflow: hidden;
    padding: 28px 24px;
    position: relative;
    text-align: center;
}

.premium-marketplace .store-card::before {
    background-color: transparent;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    transition: var(--transition-fast);
    width: 100%;
}

.premium-marketplace .store-card:hover,
.premium-marketplace .product-card:hover,
.premium-marketplace .category-card:hover {
    /* box-shadow: var(--shadow-hover); */
}

.premium-marketplace .store-card:hover::before {
    background-color: var(--color-accent);
}

.premium-marketplace .store-logo-wrapper {
    align-items: center;
    background: var(--color-bg-warm);
    border: 1px solid rgba(27, 59, 43, 0.05);
    border-radius: var(--border-radius-round);
    color: var(--color-primary);
    display: flex;
    font-size: 2rem;
    height: 80px;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition-smooth);
    width: 80px;
}

.premium-marketplace .store-card:hover .store-logo-wrapper {
    background-color: var(--color-bg-sage);
    transform: scale(1.08);
}

.premium-marketplace .store-name {
    color: var(--color-primary);
    font-family: var(--font-editorial);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-marketplace .store-meta {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    font-size: var(--font-size-sm);
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.premium-marketplace .store-meta::before {
    background-color: #38b000;
    border-radius: var(--border-radius-round);
    content: '';
    height: 6px;
    width: 6px;
}

.premium-marketplace .store-card .btn-success,
.premium-marketplace .selector-card .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 10px 20px;
    /* transition: var(--transition-fast); */
}

.premium-marketplace .store-card .btn-success:hover,
.premium-marketplace .selector-card .btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.premium-marketplace .category-card-wrapper {
    margin-bottom: 24px;
}

.premium-marketplace .category-card {
    align-items: center;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    font-size: var(--font-size-md);
    font-weight: 600;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
}

.premium-marketplace .category-card:hover {
    border-color: rgba(212, 140, 94, 0.2);
}

.premium-marketplace .category-icon-bg {
    align-items: center;
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-round);
    display: flex;
    font-size: 2rem;
    height: 64px;
    justify-content: center;
    transition: var(--transition-smooth);
    width: 64px;
}

.premium-marketplace .col-md-2:nth-child(1) .category-icon-bg {
    background-color: rgba(144, 224, 239, 0.15);
}

.premium-marketplace .col-md-2:nth-child(2) .category-icon-bg {
    background-color: rgba(255, 186, 8, 0.12);
}

.premium-marketplace .col-md-2:nth-child(3) .category-icon-bg {
    background-color: rgba(212, 140, 94, 0.12);
}

.premium-marketplace .col-md-2:nth-child(4) .category-icon-bg {
    background-color: rgba(230, 57, 70, 0.08);
}

.premium-marketplace .col-md-2:nth-child(5) .category-icon-bg {
    background-color: rgba(162, 210, 255, 0.15);
}

.premium-marketplace .col-md-2:nth-child(6) .category-icon-bg {
    background-color: rgba(138, 43, 226, 0.08);
}

.premium-marketplace .category-card:hover .category-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.premium-marketplace .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    /* transition: var(--transition-smooth); */
}

.premium-marketplace .product-card:hover {
    /* transform: translateY(-6px); */
}

.premium-marketplace .product-image-container {
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-sage) 100%);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary);
    display: flex;
    font-size: 3rem;
    height: 180px;
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0.9;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.premium-marketplace .product-card:hover .product-image-container {
    opacity: 1;
    transform: scale(1.02);
}

.premium-marketplace .product-badge {
    background-color: var(--color-primary);
    border-radius: 12px;
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    left: 10px;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    position: absolute;
    top: 10px;
}

.premium-marketplace .product-name {
    color: var(--color-primary);
    display: -webkit-box;
    font-family: var(--font-sans);
    font-size: var(--font-size-md);
    font-weight: 600;
    height: 2.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-marketplace .product-store-info {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    font-style: italic;
    margin-bottom: 12px;
}

.premium-marketplace .product-footer {
    align-items: center;
    border-top: 1px solid rgba(27, 59, 43, 0.05);
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}

.premium-marketplace .product-price {
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
}

.premium-marketplace .btn-cart {
    align-items: center;
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    font-size: var(--font-size-sm);
    font-weight: 600;
    gap: 6px;
    padding: 8px 16px;
    transition: var(--transition-fast);
}

.premium-marketplace .btn-cart:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.premium-marketplace .bottom-selector-section {
    margin-top: 60px;
    padding: 50px 40px;
    text-align: center;
}

.premium-marketplace .bottom-selector-subtitle {
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    font-size: var(--font-size-md);
    margin: 0 auto 35px;
    max-width: 500px;
}

.premium-marketplace .selector-card {
    background-color: var(--color-bg-warm);
    margin-bottom: 20px;
    padding: 24px;
    font-family: var(--font-sans);

}

.premium-marketplace .selector-card:hover {
    background-color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.premium-marketplace .selector-card h4 {
    color: var(--color-primary);
    font-family: var(--font-editorial);
    font-size: var(--font-size-sm);
    margin-bottom: 16px;
}

.premium-marketplace .selector-card .btn-primary {
    width: 100%;
}

.premium-marketplace .no-stores-message {
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    font-style: italic;
    padding: 40px;
}

@media (max-width: 768px) {
    .premium-marketplace {
        padding: 20px 0;
    }

    .premium-marketplace .hero-banner {
        padding: 32px 24px;
        text-align: center;
    }

    .premium-marketplace .hero-title {
        font-size: 2.25rem;
    }

    .premium-marketplace .hero-subtitle {
        margin: 0 auto 24px;
    }

    .premium-marketplace .hero-illustration-wrapper {
        margin-top: 40px;
    }

    .premium-marketplace .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .premium-marketplace .bottom-selector-section {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .premium-page {
        padding: 24px 0 56px;
    }

    .premium-page .premium-hero,
    .premium-page .premium-split,
    .premium-page .premium-grid.two {
        grid-template-columns: 1fr;
    }

    .premium-page .premium-hero {
        padding: 32px 24px;
    }

    .premium-page h1 {
        font-size: 2.25rem;
    }

    .premium-page h2 {
        font-size: 1.7rem;
    }

    .premium-page .premium-card,
    .premium-page .premium-form,
    .premium-page .premium-status {
        padding: 24px;
    }

    .premium-page .premium-table-wrap {
        overflow-x: auto;
    }
}

/* line 19, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
h1.underline,
h4.underline {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 21px;
}

@media (max-width: 767px) {

    /* line 28, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .text_center-mobile {
        text-align: center;
    }
}

/* line 34, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.btn-lg-home {
    padding: 20px 40px;
    font-size: 15px;
}

/* line 39, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.btn-info-home {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

/* line 44, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.btn-info-home:hover {
    color: #000;
    border-color: #000;
    background: #fff;
}

/* line 49, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.btn-info-home:active {
    color: #000;
    border-color: #000;
    background: #fff;
}

/* line 54, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.btn-info-home:focus {
    color: #000;
    border-color: #000;
    background: #fff;
}

/* line 67, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.breadcrumb>li a {
    color: #302ce1;
    padding: 2px 4px;
}

.breadcrumb>li a:hover {
    color: #302ce1;
}

/* line 85, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.pagination>li>a,
.pagination>li>span {
    background-color: transparent;
    border: 0px;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
}

/* line 96, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.pagination>li:first-child>a:hover,
.pagination>li:first-child>span:hover {
    background: none;
}

/* line 103, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.pagination>li:last-child>a:hover,
.pagination>li:last-child>span:hover {
    background: none;
}

/* line 112, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
    background-color: transparent;
    border-color: transparent;
}

/* line 122, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.pagination>.active>a,
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
    border-color: transparent;
    border-radius: 50%;
    border: solid 1px;
}

.logo-container {
    height: 51px;
    width: 187px;
    margin-left: 9px;
}

/* line 132, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top {
    border-width: 0;
}

/* line 136, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top {
    border-width: 0;
    margin-bottom: 0;
}

/* line 140, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-default {
    border-color: transparent;
}

/* line 144, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.homelink,
a.homelink:hover,
a.homelink:focus {
    color: #fff;
    text-decoration: none;
}

/* line 149, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.register-bar {
    clear: both;
}

/* line 153, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar {
    min-height: 67px;
}

/* line 156, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar .navbar-collapse {
    max-height: 510px;
    box-shadow: none;
    border-top: none;
    padding-top: 8px;
}

/* line 163, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar .navbar-form {
    border: none;
    margin-left: 0;
    margin-right: 0;
}

/* line 168, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar .navbar-form .form-control {
    font-size: 1em;
}

/* line 175, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar .navbar-collapse {
    max-height: 510px;
    box-shadow: none;
    border-top: none;
}

/* line 181, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar .navbar-form {
    border: none;
    margin-left: 0;
    margin-right: 0;
}

/* line 186, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar .navbar-form .form-control {
    font-size: 1em;
}

@media (min-width: 992px) {

    /* line 191, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .fix-navbar .register-bar {
        display: none;
    }
}

/* line 197, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar>.container>.row>div {
    float: none !important;
    display: inline-block;
    vertical-align: bottom;
}

/* line 202, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar>.container>.row>div {
    float: none !important;
    display: inline-block;
    vertical-align: bottom;
}

/* line 211, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar .menu-bar>.navbar-nav>li>a {
    font-family: "Segoe UI Semibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
}

/* line 218, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar .menu-bar>.navbar-nav>.divider-vertical {
    height: 21px;
    margin: 0 4px;
    margin-top: 14.5px;
    border-right: 1px solid #fff;
    border-left: 1px solid #666;
}

/* line 230, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar .menu-bar>.navbar-nav>li>a {
    font-family: "Segoe UI Semibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
}

/* line 237, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar .menu-bar>.navbar-nav>.divider-vertical {
    height: 21px;
    margin: 0 4px;
    margin-top: 14.5px;
    border-right: 1px solid #fff;
    border-left: 1px solid #666;
}

/* line 247, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top .navbar-brand {
    font-size: 2.11em;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #232222;
    position: relative;
}

@media (max-width: 1200px) {

    /* line 247, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-fixed-top .navbar-brand {
        position: initial;
        height: 42px;
    }
}

/* line 259, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top .navbar-header {
    padding-top: 8px;
}

/* line 264, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top .navbar-brand {
    font-size: 2.11em;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #232222;
    position: relative;
}

@media (max-width: 1200px) {

    /* line 264, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-static-top .navbar-brand {
        position: initial;
        height: 42px;
    }
}

/* line 284, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar-inverse {
    background-color: #232222;
    border-color: transparent;
}

/* line 288, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar-inverse .navbar-brand {
    color: #fff;
}

/* line 291, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-fixed-top.navbar-inverse .divider-vertical {
    border-right-color: #fff;
    border-left-color: #111;
}

/* line 296, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar-inverse {
    background-color: #ffffff;
    border-color: transparent;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

/* line 300, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar-inverse .navbar-brand {
    color: #fff;
}

/* line 304, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-static-top.navbar-inverse .divider-vertical {
    border-right-color: #fff;
    border-left-color: #111;
}

/* line 311, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-inverse .navbar-nav>li>a {
    color: #000;
}

/* line 314, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #302CE1;
    /*border-bottom: 4px solid #2F5FEF;
    padding-bottom: 10px;*/
}

/* line 320, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.navbar-inverse .navbar-nav>li>a:focus {
    color: #fff;
    background-color: #302CE1;
    border: 1px dashed black !important;
    outline: 1px dashed #FFFFFF;
}

@media (max-width: 1199px) {

    /* line 331, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-inverse .navbar-nav>li>a:hover {
        color: #fff;
        background-color: #302ce1;
        /*border-bottom: 4px solid #2F5FEF;
    padding-bottom: 6px;*/
    }
}

/* line 342, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.menu-bar .shopping_link {
    position: relative;
}

/* line 345, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.menu-bar .shopping_link .cart_amount {
    border-radius: 100%;
    height: 17px;
    width: 17px;
    position: absolute;
    bottom: 6px;
    right: -6px;
    background-color: #2f5fef;
    text-align: -webkit-center;
    line-height: 17px;
    font-size: 9px;
    padding-left: 1.9px;
    color: #fff;
}

/* line 359, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.menu-bar .shopping_link .cart_amount:hover {
    color: #fff;
}

@media (max-width: 1199px) {

    /* line 367, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-fixed-top .navbar-collapse .nav>.divider-vertical {
        display: none;
    }
}

@media (max-width: 1199px) {

    /* line 372, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-static-top .navbar-collapse .nav>.divider-vertical {
        display: none;
    }
}

@media (max-width: 767px) {

    /* line 377, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-fixed-top.navbar>.container>.row>div {
        display: block;
    }

    /* line 381, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-header {
        position: relative;
    }
}

@media (max-width: 767px) {

    /* line 386, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-static-top.navbar>.container>.row>div {
        display: block;
    }

    /* line 390, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-header {
        position: relative;
    }
}

/* line 397, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel {
    -webkit-box-shadow: 0 0px 0px transparent;
    box-shadow: 0 0px 0px transparent;
}

/* line 404, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group {
    margin-bottom: 21px;
}

/* line 407, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group.border-bottom {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 84px;
}

/* line 412, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel {
    border-radius: 0px;
    border: none;
    box-shadow: none;
}

/* line 417, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel+.panel {
    margin-top: 5px;
}

/* line 422, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading {
    border-bottom: 0;
}

/* line 426, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading .panel-title a {
    text-decoration: none;
}

/* line 429, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading .panel-title a:hover {
    color: #2f5fef;
}

/* line 433, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading .panel-title a:before {
    content: ' ';
    background-repeat: no-repeat;
    display: inline-block;
    width: 22px;
    height: 12px;
    background-position: -92px -5px;
    margin-right: 10.5px;
}

/* line 444, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading .panel-title a.collapsed:before {
    background-position: -5px -126px;
}

/* line 452, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: none;
}

/* line 457, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-footer {
    border-top: 0;
}

/* line 460, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: none;
}

/* line 465, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.panel-group .panel-default {
    border-color: none;
}

/* line 6, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/mixins/panels.scss */
.panel-group .panel-default>.panel-heading {
    color: #333333;
    background-color: transparent;
    border-color: none;
}

/* line 11, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/mixins/panels.scss */
.panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: none;
}

/* line 14, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/mixins/panels.scss */
.panel-group .panel-default>.panel-heading .badge {
    color: transparent;
    background-color: #333333;
}

/* line 20, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/mixins/panels.scss */
.panel-group .panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: none;
}

/* line 473, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
body {
    padding-top: 0px;
    /* Below changes in body tag to support DefaultPortalTemplate in maker*/
    margin: 0;
    height: 100%;
}

@media (max-width: 767px) {

    /* line 473, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    body {
        padding-top: 0px;
    }
}

/* line 482, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.layer_down {
    height: 50px;
    background: url("layer_down.png") no-repeat bottom center;
    position: absolute;
    bottom: 0;
    z-index: 900;
    width: 100%;
}

/* line 491, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.layer_up {
    height: 40px;
    background: url("layer_up.png") no-repeat bottom center;
    position: relative;
    z-index: 20;
}

/* line 498, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-margin {
    margin: 21px 0;
}

/* line 513, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search {
    background-size: cover;
}

/* line 518, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div {
    margin-top: 100px;
}

/* line 521, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div h1 {
    color: #fff;
}

@media screen and (max-width: 600px) {

    /* line 521, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .section-inline-search .row>div h1 {
        font-size: 16vw;
    }
}

/* line 531, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div .form-inline .form-group .input-group {
    margin-right: 21px;
}

/* line 534, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div .form-inline .form-group .input-group .input-group-addon {
    background-color: #fff;
    border-right: none;
}

/* line 539, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div .form-inline .form-group .input-group .form-control {
    height: 60px;
    border-left: none;
    box-shadow: none;
}

/* line 544, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-inline-search .row>div .form-inline .form-group .input-group .form-control:focus {
    box-shadow: none;
    border-right: none;
    border-color: #ccc;
}

/* line 557, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    -moz-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out;
    -webkit-transition: width 0.3s ease-out;
    transition: width 0.3s ease-out;
}

/* line 567, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.wrapper .contained {
    position: relative;
    height: 400px;
    padding-bottom: 56.25%;
}

/* line 573, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.wrapper .contained>svg {
    margin-top: -100px;
    position: absolute;
    display: block;
}

/* line 579, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.contained .row {
    margin-top: 80px;
}

/* line 583, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer {
    position: relative;
    color: #22221E;
}

/* line 587, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-top {
    width: 100%;
    min-height: 130px;
    background-color: #232222;
    display: flex;
    align-items: center;
}

/* line 594, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-top h3,
footer .footer-top h4 {
    color: #fff;
}

/* line 598, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-top .list-social-links {
    margin-top: 25px;
    margin-bottom: 12.5px;
}

@media screen and (max-width: 991px) {

    /* line 605, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    footer .footer-top h3,
    footer .footer-top .list-social-links {
        text-align: center;
    }
}

/* line 611, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-bottom {
    width: 100%;
    min-height: 68px;
    background-color: #D2D2CE;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* line 619, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-bottom p {
    margin: 0;
}

/* line 623, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-bottom h4 {
    margin-top: 0;
    color: #fff;
}

/* line 628, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-bottom ul {
    list-style-type: none;
    margin: 0;
}

/* line 638, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
footer .footer-bottom ul li a,
footer .footer-bottom ul li a:hover,
footer .footer-bottom ul li a:focus,
footer .footer-bottom ul li a:active,
footer .footer-bottom ul li a.active {
    font-size: 15px;
    color: #fff;
}

/* line 648, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.list-social-links {
    list-style-type: none;
    padding-left: 0;
}

/* line 652, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.list-social-links li {
    display: inline-block;
    margin: 0 10px;
}

/* line 661, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.list-social-links li a,
.list-social-links li a:hover,
.list-social-links li a:focus,
.list-social-links li a:active,
.list-social-links li a.active {
    color: #fff;
}

@media screen and (max-width: 993px) {

    /* line 669, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .section-landing h1 {
        font-size: 65px;
    }

    /* line 673, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .section-landing h2 {
        letter-spacing: normal;
        margin-left: -3px;
    }
}

/* line 679, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.user-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 7px;
}

/* line 687, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-title-container {
    border-top: solid 1px #bcbcbc;
    border-bottom: solid 1px #bcbcbc;
    padding-left: 15px;
    padding-top: 28px;
    padding-bottom: 28px;
}

/* line 695, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-title {
    margin-left: -35px;
}

/* line 698, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-title>span {
    margin-left: 3px;
}

/* line 701, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-title>span .article-author {
    font-weight: bold;
    color: #2f5fef;
}

/* line 708, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-content {
    margin-top: 15px;
}

/* line 711, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.article-content>p {
    text-align: justify;
}

@media screen and (max-width: 993px) {

    /* line 717, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .article-title {
        margin-left: 0;
        text-align: center;
    }

    /* line 722, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .article-author {
        text-align: center;
    }
}

/* line 728, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .header-search {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    background-color: #eeeeee;
}

/* line 734, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .header-search img {
    max-width: 350px;
}

@media screen and (max-width: 600px) {

    /* line 738, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .section-search .header-search h1 {
        font-size: 13vw;
    }
}

/* line 745, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .title-search {
    font-size: 26px;
    font-weight: bold;
}

/* line 750, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search input {
    border-style: none;
    padding-left: 10px;
    height: 60px;
}

/* line 758, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .media .media-left>img {
    max-width: 240px;
}

/* line 763, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .media .media-body {
    padding-left: 20px;
}

/* line 766, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .media .media-body>a {
    text-decoration: none;
    font-weight: bold;
}

/* line 771, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.section-search .media .media-body .media-heading {
    margin-top: 5px;
    margin-bottom: 20px;
}

/* line 780, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.cards-container {
    margin-top: 84px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 991px) {

    /* line 780, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .cards-container {
        flex-direction: column;
    }
}

/* line 795, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.carousel-custom .carousel-inner>.item {
    margin-right: auto;
    margin-left: auto;
}

/* line 799, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.carousel-custom .carousel-inner>.item .carousel-caption {
    display: flex;
    align-items: center;
    top: 5%;
    left: 5%;
    right: 5%;
}

@media screen and (min-width: 768px) {

    /* line 799, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .carousel-custom .carousel-inner>.item .carousel-caption {
        left: 5%;
        right: 5%;
    }
}

/* line 815, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.carousel-custom .carousel-indicators li {
    border-color: #232222;
}

/* line 824, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.table.table-forms td {
    padding: 15px 8px;
}

/* line 830, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.table.table-forms tbody tr:first-child td {
    border-top: none;
}

/* line 839, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll {
    background-color: #eeeeee;
    border-top: 7px solid #0b80d0;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

/* line 846, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-header {
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 5px;
}

/* line 856, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-header h4 {
    font-weight: bold;
    display: inline-block;
}

/* line 862, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content {
    padding-top: 25px;
}

/* line 865, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content p {
    font-size: 14px;
}

/* line 869, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content form {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 10px;
}

/* line 874, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content .poll-buttons {
    padding-top: 20px;
    padding-left: 11px;
}

/* line 878, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content .poll-buttons .btn {
    padding: 4px 14px;
    font-size: 14px;
}

/* line 883, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content .poll-buttons .btn-default {
    color: #000;
    border-color: #000;
}

/* line 887, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-content .poll-buttons .btn-default:hover {
    color: #000;
    border-color: #000;
}

/* line 895, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-tags {
    padding-top: 10px;
}

/* line 898, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-tags h4 {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 10px;
}

/* line 903, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.poll .poll-tags .tag {
    display: inline-block;
    background-color: #e1e1e1;
    color: #232222;
    padding: 5px 14px;
    margin: 5px 0px;
    text-transform: uppercase;
    font-size: 13px;
}

/* line 915, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar {
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* line 922, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>li>a {
    padding: 4px 20px;
    color: #2f5fef;
    border-right: 2px solid #eeeeee;
}

/* line 928, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>li>a:hover,
.nav-sidebar .nav>li>a:focus {
    color: #232222;
    text-decoration: none;
    background-color: transparent;
    border-right: 2px solid #555555;
}

/* line 935, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>li>a:before {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e250";
    margin-right: 7px;
}

/* line 952, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>.active>a {
    color: #232222;
    text-decoration: none;
    background-color: transparent;
    border-right: 2px solid #555555;
    font-weight: bold;
}

/* line 959, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>.active>a:before {
    content: "\e252";
}

/* line 966, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>.active:hover>a,
.nav-sidebar .nav>.activefocus>a {
    font-weight: bold;
}

/* line 972, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav>.active>ul.nav {
    display: block;
}

/* line 979, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav ul.nav {
    display: none;
}

/* line 986, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav .nav>li>a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 30px;
}

/* line 996, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav .nav>.active,
.nav-sidebar .nav .nav>.active:hover,
.nav-sidebar .nav .nav>.active:focus {
    font-weight: bold;
}

/* line 1003, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav .nav .nav>li>a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 60px;
}

/* line 1008, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav .nav .nav>li>a:before {
    content: "";
}

/* line 1017, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.nav-sidebar .nav .nav .nav>.active,
.nav-sidebar .nav .nav .nav>.active:hover,
.nav-sidebar .nav .nav .nav>.active:focus {
    font-weight: bold;
}

/* line 1028, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
#navbar .dropdown-menu {
    margin-top: 8px;
}

/* line 1032, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
#navbar .dropdown-search {
    padding-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 9px;
}

/* line 1039, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
#navbar .dropdown-search #q {
    min-width: 200px;
}

@media (max-width: 1199px) {

    /* line 1044, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    #navbar .dropdown-search .input-group-btn {
        vertical-align: top;
    }

    /* line 1047, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    #navbar .dropdown-search #search-filter {
        width: 100%;
        text-align: left;
        padding-left: 25px;
    }

    /* line 1052, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    #navbar .dropdown-search.dropdown-menu>li:hover,
    #navbar .dropdown-search .dropdown-menu>li:hover {
        color: white;
        background-color: transparent;
    }
}

/* line 1060, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.tabs-header {
    padding-bottom: 9.5px;
    margin: 42px 0 21px;
}

/* line 1073, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
.help-block.error,
label.control-label.required:before,
.crmEntityFormView .cell div.info.required label:after,
.crmEntityFormView .cell div.info div.validators,
.crmEntityFormView .validator-text,
.crmEntityFormView .rank-order-cell .validator-text,
.crmEntityFormView .constant-sum-cell .validator-text,
.crmEntityFormView .stack-rank-cell .validator-text {
    color: #a94442;
}

@media screen and (-ms-high-contrast: active) {

    /* line 1078, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #888;
    }

    /* line 1082, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff;
    }
}

/* line 11, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.pr-color {
    color: #2f5fef;
}

/* line 16, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.blue_border {
    padding-bottom: 10px;
    border-bottom: 7px solid #0b80d0;
}

/* line 21, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section {
    position: relative;
    background-size: cover;
    color: #000;
}

/* line 26, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section .row {
    padding-top: 40px;
    padding-bottom: 100px;
}

/* line 31, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section .row.sidebar-home {
    padding-bottom: 0;
}

/* line 35, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section h1 {
    font-size: 32px;
}

/* line 39, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section h2 {
    color: #666666;
    font-size: 40px;
}

/* line 44, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section h3 {
    font-size: 66px;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 49, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section p {
    padding-top: 5px;
}

/* line 54, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section .btn {
    margin-top: 50px;
}

/* line 58, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section .form-search .btn {
    padding: 4px 12px;
    margin-top: 0;
}

/* line 64, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section .section-landing-heading p,
.page_section .section-landing-sub-heading p {
    border-top: 0;
}

/* line 71, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.form-search .btn {
    border: 1px solid #ccc;
}

/* line 74, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.form-search .btn-default:hover {
    border-color: #ccc;
}

/* line 78, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.form-search .dropdown-submenu {
    right: -2px;
}

/* line 82, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.form-search .dropdown-menu {
    margin-top: 0px;
}

/* line 87, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.dropdown-search.dropdown-menu>li:hover {
    background-color: transparent;
}

/* line 91, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
#navbar .form-search .dropdown-menu {
    margin-top: 0px;
}

/* line 95, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left {
    -webkit-transform: skew(0deg, -1.3deg);
    -ms-transform: skew(0deg, -1.3deg);
    transform: skew(0deg, -1.3deg);
    overflow: hidden;
    margin-top: -60px;
    margin-bottom: -20px;
}

/* line 103, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left .section-diagonal-left-content {
    -webkit-transform: skew(0deg, 1.3deg);
    -ms-transform: skew(0deg, 1.3deg);
    transform: skew(0deg, 1.3deg);
    background-size: cover;
    margin-top: -70px;
}

/* line 111, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left .section-diagonal-left-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    z-index: -1;
    background-color: #fff;
}

/* line 125, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-right {
    -webkit-transform: skew(0deg, 1.3deg);
    -ms-transform: skew(0deg, 1.3deg);
    transform: skew(0deg, 1.3deg);
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: -20px;
}

/* line 133, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-right.home-section {
    margin-top: -60px;
}

/* line 137, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-right .section-diagonal-right-content {
    -webkit-transform: skew(0deg, -1.3deg);
    -ms-transform: skew(0deg, -1.3deg);
    transform: skew(0deg, -1.3deg);
    background-size: cover;
    margin-top: -70px;
}

/* line 145, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-right .section-diagonal-right-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: -1;
    background-color: #2f5fef;
}

/* line 161, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left .row,
.section-diagonal-right .row {
    padding-top: 125px;
}

/* line 165, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left .col-md-5,
.section-diagonal-right .col-md-5 {
    float: none;
    margin: 0 auto;
}

/* line 170, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-diagonal-left p,
.section-diagonal-right p {
    border-top: none;
}

/* line 176, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing {
    background: linear-gradient(transparent, transparent);
    background-size: cover;
}

/* line 181, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing .row>div {
    margin-top: 80px;
}

/* line 184, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing .row>div .section-landing-heading {
    font-size: 4rem;
    color: #fff;
}

@media screen and (max-width: 600px) {

    /* line 184, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
    .section-landing .row>div .section-landing-heading {
        font-size: 16vw;
    }
}

/* line 194, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing .row>div .section-landing-sub-heading {
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: Semibold;
}

@media screen and (max-width: 600px) {

    /* line 194, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
    .section-landing .row>div .section-landing-sub-heading {
        font-size: 4vw;
    }
}

/* line 210, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-sub-landing {
    background-size: cover;
}

/* line 215, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-default {
    background-size: cover;
}

@media screen and (max-width: 767px) {

    /* line 220, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
    .section-default:before {
        content: " ";
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.59) 41%, rgba(0, 0, 0, 0.62) 43%, black 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.59) 41%, rgba(0, 0, 0, 0.62) 43%, black 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.59) 41%, rgba(0, 0, 0, 0.62) 43%, black 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
        /* IE6-9 */
    }
}

/* line 235, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-default .row {
    padding-bottom: 150px;
}

/* line 242, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-knowledge {
    margin-bottom: 40px;
}

/* line 247, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .btn {
    margin-top: 0;
}

/* line 251, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .panel {
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

/* line 256, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .panel p {
    border: 0;
}

/* line 261, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .panel-heading {
    display: none;
}

/* line 265, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .list-group-item {
    padding: 20px 0;
    font-size: 20px;
    background-color: transparent;
    border: 0;
    border-top: 1px solid #ddd;
}

/* line 272, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .list-group-item img {
    margin-right: 25px;
}

/* line 278, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home a.list-group-item,
.content-home .list-group-item a.title {
    color: #232222;
}

/* line 282, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home a.list-group-item:hover,
.content-home a.list-group-item:focus,
.content-home .list-group-item a.title:hover,
.content-home .list-group-item a.title:focus {
    color: #232222;
    text-decoration: underline;
    background-color: transparent;
}

/* line 290, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .title,
.content-home .description {
    display: block;
}

/* line 294, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .title {
    font-size: 24px;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 299, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.content-home .description {
    display: block;
    font-size: 14px;
}

/* line 305, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home {
    background-color: #eeeeee;
    border-top: 7px solid #0b80d0;
    margin-top: 36px;
    position: relative;
}

/* line 311, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home h3 {
    font-size: 18px;
}

/* line 315, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .panel {
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

/* line 321, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .panel-heading {
    padding-left: 0;
    background-color: transparent;
    border: 0;
}

/* line 327, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .panel-title {
    font-size: 14px;
    color: #2f5fef;
    font-family: "Segoe UI Semibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 333, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .list-group-item {
    padding-left: 0;
    font-size: 14px;
    background-color: transparent;
    border: 0;
}

/* line 340, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .list-group-item:hover,
.sidebar-home .list-group-item:focus {
    text-decoration: underline;
    background-color: transparent;
}

/* line 345, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.sidebar-home .list-group-item .date {
    visibility: hidden;
}

/* line 351, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing-search {
    min-height: 250px;
    background: url(homehero.jpg) no-repeat 0 25%;
    background-size: cover;
}

/* line 357, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-landing-forums {
    min-height: 250px;
    background-size: cover;
}

/* line 364, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-knowledge .list-group a.list-group-item {
    color: #2f5fef;
}

/* line 368, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.section-knowledge .panel-title {
    color: #000;
}

/* line 373, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section.section-landing .row {
    padding-bottom: 60px;
}

/* line 377, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.page_section.section-landing .row>div {
    margin-top: 0px;
}

/* line 381, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
ul.tree,
ol.tree {
    color: #2f5fef;
}

/* line 386, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.tree ul,
.tree ol,
.tree ul ul,
.tree ol ul,
.tree ol ol ul,
.tree ol ul ul,
.tree ul ol ul,
.tree ul ul ul {
    list-style-type: disc;
    color: #2f5fef;
}

/* ADX_FORMS  */
/* line 392, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.adx_forms_font_calibri {
    font-family: Calibri;
}

/* line 396, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.adx_forms_font_new_roman {
    font-family: Times New Roman;
}

/* line 399, C:/PortalFxRepo2/Resources/Theme/ElectricBlueDesign/DefaultPortalTemplate/theme.scss */
.adx_forms_font_helvetica {
    font-family: 'Helvetica', sans-serif;
}

/* Below changes are done to support DefaultPortalTemplate in maker */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    margin: 0;
}

.wrapper-body {
    min-height: calc(100% - 132px);
    margin-bottom: 0px;
}

.footer .push {
    height: 43px;
}

.footer {
    margin-top: 0px;
}

.page-copy {
    margin-top: 0px;
    margin-bottom: 0px;
}

.navbar-brand {
    line-height: 37px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: unset;
}

body,
legend {
    color: #000000;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    background-color: #f2f2f2;
    color: #302CE1;
}

.btn-default {
    color: #302CE1;
    background-color: white;
    border-color: #302CE1;
}

.btn-default:hover,
.btn-default:active,
.btn-default.active,
.btn-default:focus,
.btn-default.focus {
    color: #302CE1;
    background-color: #f2f2f2;
    border-color: #302CE1;
}

.btn-primary {
    color: white;
    background-color: #302CE1;
    border-color: #302CE1;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.btn-primary:focus,
.btn-primary.focus {
    color: white;
    background-color: #5c59e7;
    border-color: #5c59e7;
}

.navbar-inverse .navbar-toggle {
    border: 1px solid #302CE1;
}

.navbar-inverse .navbar-toggle:hover {
    background-color: #4642e4;
}

.navbar-inverse .navbar-toggle:focus {
    border: 1px solid black;
    background-color: #4642e4;
}

.navbar-inverse .navbar-nav .open .dropdown-menu {
    background-color: #302CE1;
}

.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
    color: #fff;
}

.navbar-inverse .navbar-nav>.open>a .navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
    background-color: #302CE1;
    color: #fff;
}

.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
    background-color: #ffffff;
    color: #302CE1;
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: #f2f2f2;
}

.nav .open .dropdown-menu {
    background-color: #ffffff;
}

.nav .open .dropdown-menu>li>a {
    color: black;
}

.nav>.open>a .nav>.open>a:hover,
.nav>.open>a:focus {
    background-color: #f2f2f2;
}

.nav .open .dropdown-menu>.active>a,
.nav .open .dropdown-menu>.active>a:hover,
.nav .open .dropdown-menu>.active>a:focus,
.nav .open .dropdown-menu>li>a:hover,
.nav .open .dropdown-menu>li>a:focus {
    background-color: #f2f2f2;
    color: black;
}

#filterDropdownId>.dropdown-menu>li>a:focus {
    border: 1px solid;
}

#filterDropdownId>a:focus {
    border: 1px solid;
}

.crmEntityFormView,
.entitylist {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #f2f2f2;
}

.sectionPrimaryColor {
    background-color: #302ce1;
    color: #ffffff;
}

.sectionPrimaryColor h1,
.sectionPrimaryColor h2,
.sectionPrimaryColor h3,
.sectionPrimaryColor h4,
.sectionPrimaryColor h5,
.sectionPrimaryColor h6 {
    color: #ffffff;
}

.sectionPrimaryColor .crmEntityFormView h1,
.sectionPrimaryColor .crmEntityFormView h2,
.sectionPrimaryColor .crmEntityFormView h3,
.sectionPrimaryColor .crmEntityFormView h4,
.sectionPrimaryColor .crmEntityFormView h5,
.sectionPrimaryColor .crmEntityFormView h6 {
    color: #000000;
}

.sectionPrimaryColor .entitylist h1,
.sectionPrimaryColor .entitylist h2,
.sectionPrimaryColor .entitylist h3,
.sectionPrimaryColor .entitylist h4,
.sectionPrimaryColor .entitylist h5,
.sectionPrimaryColor .entitylist h6 {
    color: #000000;
}

.sectionFixedStyle {
    color: #000000;
}

a {
    color: #302ce1;
}

a:not(.btn) {
    text-decoration: underline;
}

[role="navigation"] a,
[role="contentinfo"] a,
.toolbar a,
a.list-group-item {
    text-decoration: none;
}

a:hover,
a:focus {
    color: #302ce1;
    text-decoration: underline;
}

.breadcrumb>.active {
    color: #000000;
    font-weight: bold;
}

p {
    font-size: 16px
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-left: 0px;
    margin-right: 0px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

.page-header {
    border-bottom: 0px;
}

.navbar-brand {
    padding: 8px
}

.navbar-static-top.navbar-inverse .navbar-brand {
    font-size: 24px;
    font-weight: bold;
    font-family: unset;
}

.navbar-static-top.navbar-inverse .navbar-brand a {
    color: black;
    text-decoration: none;
}

.help-block {
    color: black;
}

.skip-to-content a {
    padding: 10px 20px;
    position: absolute;
    top: -43px;
    left: 0px;
    color: #FFFFFF;
    border-radius: 2px;
    background: #742774;
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 100;
    font-family: Segoe UI;
    font-size: 14px;
}

.skip-to-content a:focus {
    position: absolute;
    left: 0px;
    top: 0px;
    outline: none;
    color: #FFFFFF;
    -webkit-transition: top .1s ease-in;
    transition: top .1s ease-in;
}

@media screen and (-ms-high-contrast: active) {

    .nav-tabs>li.active>a,
    .nav-tabs>li.active>a:hover,
    .nav-tabs>li.active>a:focus {
        border-bottom: 0px;
    }

    .nav-tabs>li>a {
        border: 0px;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
        border: 1px solid;
    }

    .facet-list-group-item {
        margin: 1px;
        border: 0px;
    }
}

.frenchAccessibilityLink {
    float: right;
    width: 297px;
    height: 24px;
    font-family: Segoe UI;
    font-size: 18px;
    line-height: 21px;
    text-decoration-line: underline;
    color: #2C33D8;
}


/* Power Virtual Agent styles */
.pva-floating-style {
    position: fixed;
    bottom: 0px;
    right: 0px;
    margin-right: 16px;
    margin-bottom: 18px;
    z-index: 9999;
}

/* Power Virtual Agent styles ends */

.visible-lg-block {
    display: flex !important;
    align-items: center;
}

/* ==========================================================================
   OVERRIDE: Portal Basic Theme Font Conflicts
   Priority: Force modern font stack across all elements globally
   ========================================================================== */

/* Force all headings to use editorial font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-editorial) !important;
    font-weight: 600 !important;
}

/* Body text consistency - all default text elements */
body,
p,
span,
div,
li,
a,
input,
select,
textarea {
    font-family: var(--font-sans) !important;
}

/* Form elements */
input,
select,
textarea,
input.form-control,
select.form-control,
textarea.form-control {
    font-family: var(--font-sans) !important;
}

/* Override button and link fonts */
.btn-primary,
button.btn-primary,
a.btn-primary,
button,
.btn,
a.btn {
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
}

/* Override footer and navigation */
footer,
footer h1,
footer h2,
footer h3,
footer p,
footer a,
footer label {
    font-family: var(--font-sans) !important;
}

nav,
nav a,
.nav a,
.navbar,
.navbar a,
.navbar-nav a,
.navbar-brand {
    font-family: var(--font-sans) !important;
}

/* Override legend and labels */
legend,
label {
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
}

/* Premium page elements (for consistency) */
.premium-page h1,
.premium-page h2,
.premium-page h3,
.premium-page h4,
.premium-page h5,
.premium-page h6 {
    font-family: var(--font-editorial) !important;
}

.premium-page p,
.premium-page span,
.premium-page a,
.premium-page label,
.premium-page input {
    font-family: var(--font-sans) !important;
}

/* ========================================
   Modern Banner Component System
   ======================================== */

/* Base banner container */
.banner-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    max-width: 90%;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: var(--shadow-hover);
    animation: slideInDown 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: all;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid;
}

.banner.hide {
    animation: slideOutUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Success banner variant */
.banner.success {
    background-color: #f0fde8;
    border-color: #b3e5a0;
    color: #2d5a1f;
}

.banner.success .banner-icon {
    color: #4caf50;
}

.banner.success .banner-close {
    color: #4caf50;
}

.banner.success .banner-close:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

/* Error banner variant */
.banner.error {
    background-color: #fff0f0;
    border-color: #f5c2c2;
    color: #c0392b;
}

.banner.error .banner-icon {
    color: #e74c3c;
}

.banner.error .banner-close {
    color: #e74c3c;
}

.banner.error .banner-close:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

/* Warning banner variant */
.banner.warning {
    background-color: #fff8f0;
    border-color: #ffe4c4;
    color: #b8860b;
}

.banner.warning .banner-icon {
    color: #f39c12;
}

.banner.warning .banner-close {
    color: #f39c12;
}

.banner.warning .banner-close:hover {
    background-color: rgba(243, 156, 18, 0.1);
}

/* Info banner variant */
.banner.info {
    background-color: #eef7ff;
    border-color: #b3e5fc;
    color: #0c5aa0;
}

.banner.info .banner-icon {
    color: #2196f3;
}

.banner.info .banner-close {
    color: #2196f3;
}

.banner.info .banner-close:hover {
    background-color: rgba(33, 150, 243, 0.1);
}

/* Banner icon */
.banner-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Banner content */
.banner-content {
    flex: 1;
}

/* Banner close button */
.banner-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: var(--transition-fast);
    padding: 0;
}

.banner-close:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .banner-container {
        top: 70px;
        width: calc(100% - 20px);
    }

    .banner {
        font-size: var(--font-size-sm);
        padding: 12px 14px;
        gap: 10px;
    }

    .banner-icon {
        font-size: 1rem;
    }

    .banner-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    /* Cart badge responsive */
    .premium-header .cart-badge {
        width: 18px;
        height: 18px;
        font-size: var(--font-size-xs);
        top: -6px;
        right: -6px;
    }
}

.premium-marketplace .product-card .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 8px;
}

.premium-marketplace .product-card .product-unit,
.premium-marketplace .product-card .price-label {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.premium-marketplace .product-card .product-unit {
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.premium-marketplace .product-card .product-price-wrapper {
    align-items: baseline;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.premium-marketplace .product-card .price-label {
    font-weight: 500;
}

.premium-marketplace .product-card .product-price {
    color: var(--color-accent);
    font-size: var(--font-size-md);
    font-weight: 700;
}

.premium-marketplace .product-card .product-price::before {
    content: '$';
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-right: 1px;
}

.premium-marketplace .qty-section {
    align-items: center;
    background-color: var(--color-bg-warm);
    border: 1px solid rgba(27, 59, 43, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    height: 44px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 4px;
}

.premium-marketplace .qty-btn {
    align-items: center;
    background-color: var(--color-white);
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(27, 59, 43, 0.03);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    transition: var(--transition-fast);
    width: 34px;
}

.premium-marketplace .qty-btn:hover {
    background-color: var(--color-bg-sage);
}

.premium-marketplace .qty-input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 0;
    text-align: center;
    width: 50px;
}

.premium-marketplace .qty-input::-webkit-outer-spin-button,
.premium-marketplace .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.premium-marketplace .qty-input[type=number] {
    -moz-appearance: textfield;
}

.premium-marketplace .add-cart-btn {
    align-items: center;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(27, 59, 43, 0.08);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    padding: 12px 20px;
    transition: var(--transition-smooth);
}

.premium-marketplace .add-cart-btn:hover {
    background-color: var(--color-accent);
    box-shadow: 0 6px 18px rgba(212, 140, 94, 0.2);
    transform: translateY(-2px);
}

.premium-marketplace .add-cart-btn svg {
    transition: var(--transition-fast);
}

.premium-marketplace .add-cart-btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   Power Pages Default Account Login Custom Overrides
   ========================================================================== */

/* Hide Register, Redeem Invitation, and default tabs on portal login screen */
.login-page .nav-tabs,
.login-page ul.nav-tabs,
.nav-tabs>li>a[href*="Register"],
.nav-tabs>li>a[href*="Redeem"],
.nav-tabs>li>a[href*="redeem"],
a[href*="/Register"],
a[href*="/Register?ReturnUrl="],
a[href*="/Account/Login/Register"],
a[href*="/Account/Login/RedeemInvitation"] {
    display: none !important;
}

/* Hide the right-side external account section and Microsoft Entra ID */
.login-page h4:has(span[id*="External"]),
.login-page h3:has(span[id*="External"]),
.login-page div.col-md-6:has(a[href*="Entra"]),
.login-page div.col-md-5:has(button[title*="Entra"]),
.login-page div.col-md-6:nth-child(2),
.login-page div:has(> button[name="provider"]),
.login-page div:has(> button[id*="Entra"]) {
    display: none !important;
}

/* Center and stretch the local sign-in form column for a cleaner look */
.login-page .row>div:first-child,
.login-page div.col-md-6:first-child {
    width: 100% !important;
    max-width: 500px !important;
    margin: 40px auto !important;
    float: none !important;
}
