@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap);@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap);@import url(https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap);.uuc-minimal{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-dashboard{font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-gradient{font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-neumorphism{font-family:'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-floating{font-family:'Outfit',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-glass{font-family:'Outfit',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}.uuc-split{font-family:'Space Grotesk',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}/**
 * Universal Unit Converter - 7 Unique Template Styles
 * Version 3.0.6
 */

/* ================================
   COMMON BASE
   ================================ */
.uuc-container {
    display: block;
    max-width: 600px;
}

.uuc-widget {
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
    position: relative;
    --uuc-radius: 16px;
}

/* Ensure Lucide icons maintain their size (fixes SVG sprite rendering) */
.uuc-widget svg.lucide {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.uuc-widget *,
.uuc-widget *::before,
.uuc-widget *::after {
    box-sizing: border-box;
}

.uuc-widget input,
.uuc-widget select,
.uuc-widget button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: transparent;
}

.uuc-widget button {
    cursor: pointer;
}

.uuc-widget input::-webkit-outer-spin-button,
.uuc-widget input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.uuc-widget input[type=number] {
    -moz-appearance: textfield;
}

.uuc-toast {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.2s;
    z-index: 100;
}

.uuc-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.uuc-formula {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.6;
    font-family: monospace;
}

/* ================================
   TEMPLATE 1: MINIMAL
   ================================ */
.uuc-minimal {
    font-family: 'Inter', system-ui, sans-serif;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    background: #fff;
    border-radius: var(--uuc-radius);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 580px;
    min-height: 360px;
    overflow: hidden;
}

/* Fix for WordPress wrapping shortcode in code/p/span tags */
.uuc-minimal>code,
.uuc-minimal>p,
.uuc-minimal>span {
    display: contents !important;
}

.uuc-minimal .uuc-sidebar {
    width: 170px;
    min-width: 170px;
    flex-shrink: 0;
    background: #f8fafc;
    padding: 20px 14px;
    border-right: 1px solid #e5e7eb;
}

.uuc-minimal .uuc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 20px;
    padding-left: 6px;
}

.uuc-minimal .uuc-brand i {
    width: 18px;
    height: 18px;
    color: #6366f1;
}

.uuc-minimal .uuc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uuc-minimal .uuc-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #64748b;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.15s;
}

.uuc-minimal .uuc-nav-btn:hover {
    background: #e2e8f0;
}

.uuc-minimal .uuc-nav-btn.active {
    background: #1e293b;
    color: white;
}

.uuc-minimal .uuc-nav-btn i {
    width: 16px;
    height: 16px;
}

.uuc-minimal .uuc-main {
    flex: 1 1 auto;
    min-width: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.uuc-minimal .uuc-card {
    background: #f8fafc;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.uuc-minimal .uuc-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.uuc-minimal .uuc-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.uuc-minimal .uuc-input {
    font-size: 26px;
    font-weight: 600;
    width: 110px;
    color: #1e293b;
}

.uuc-minimal .uuc-select {
    flex: 1;
    padding: 10px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #475569;
    font-weight: 500;
}

.uuc-minimal .uuc-swap {
    align-self: center;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
    background: #f1f5f9;
    border-radius: 10px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-minimal .uuc-swap:hover {
    background: #1e293b;
    color: white;
    transform: rotate(180deg);
}

.uuc-minimal .uuc-swap i {
    width: 16px;
    height: 16px;
}

/* ================================
   TEMPLATE 2: DASHBOARD
   ================================ */
.uuc-dashboard {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    border-radius: var(--uuc-radius);
    max-width: 520px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.uuc-dashboard .uuc-topbar {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.uuc-dashboard .uuc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.uuc-dashboard .uuc-logo-icon {
    font-size: 22px;
}

.uuc-dashboard .uuc-logo-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.uuc-dashboard .uuc-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.uuc-dashboard .uuc-tabs::-webkit-scrollbar {
    display: none;
}

.uuc-dashboard .uuc-tabs.dragging {
    cursor: grabbing;
}

.uuc-dashboard .uuc-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.uuc-dashboard .uuc-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.uuc-dashboard .uuc-tab.active {
    background: #e94560;
    color: white;
}

.uuc-dashboard .uuc-tab-emoji {
    font-size: 13px;
}

.uuc-dashboard .uuc-content {
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.uuc-dashboard .uuc-panel {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.uuc-dashboard .uuc-panel-header {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.uuc-dashboard .uuc-big-input {
    display: block;
    width: 100%;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.uuc-dashboard .uuc-unit-dropdown {
    width: 100%;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.uuc-dashboard .uuc-swap-btn {
    flex-shrink: 0;
    flex-grow: 0;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    background: linear-gradient(135deg, #e94560, #0f3460);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    padding: 0;
    box-sizing: border-box;
}

.uuc-dashboard .uuc-swap-btn:hover {
    transform: rotate(180deg);
}

.uuc-dashboard .uuc-formula {
    color: rgba(255, 255, 255, 0.4);
}

/* ================================
   TEMPLATE 3: GRADIENT
   ================================ */
.uuc-gradient {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--uuc-radius);
    width: 100%;
    max-width: 600px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.35);
}

.uuc-gradient .uuc-grad-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.uuc-gradient .uuc-grad-header i {
    width: 22px;
    height: 22px;
}

.uuc-gradient .uuc-grad-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.uuc-gradient .uuc-grad-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.uuc-gradient .uuc-grad-btn i {
    width: 14px;
    height: 14px;
}

.uuc-gradient .uuc-grad-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.uuc-gradient .uuc-grad-btn.active {
    background: white;
    color: #667eea;
}

.uuc-gradient .uuc-grad-body {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.uuc-gradient .uuc-grad-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    flex: 1;
}

.uuc-gradient .uuc-grad-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #667eea;
    margin-bottom: 10px;
}

.uuc-gradient .uuc-grad-input {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    width: 100%;
    margin-bottom: 10px;
}

.uuc-gradient .uuc-grad-select {
    width: 100%;
    padding: 10px 14px;
    background: #f3f4f6;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
}

.uuc-gradient .uuc-grad-swap {
    align-self: center;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    background: white;
    border-radius: 50%;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-gradient .uuc-grad-swap:hover {
    transform: rotate(180deg) scale(1.1);
}

.uuc-gradient .uuc-grad-swap i {
    width: 20px;
    height: 20px;
}

.uuc-gradient .uuc-formula {
    color: #6b7280;
    font-size: 11px;
    margin-top: 8px;
}

/* ================================
   TEMPLATE 4: NEUMORPHISM
   ================================ */
.uuc-neumorphism {
    font-family: 'DM Sans', sans-serif;
    background: #e0e5ec;
    border-radius: var(--uuc-radius);
    max-width: 600px;
    padding: 28px;
    box-shadow: 20px 20px 60px #bec3c9, -20px -20px 60px #ffffff;
}

.uuc-neumorphism .uuc-neu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.uuc-neumorphism .uuc-neu-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e5ec;
    border-radius: 14px;
    color: #6366f1;
    box-shadow: 6px 6px 12px #bec3c9, -6px -6px 12px #ffffff;
}

.uuc-neumorphism .uuc-neu-icon i {
    width: 22px;
    height: 22px;
}

.uuc-neumorphism .uuc-neu-header span {
    font-weight: 600;
    font-size: 18px;
    color: #4a5568;
}

.uuc-neumorphism .uuc-neu-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.uuc-neumorphism .uuc-neu-pill {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e5ec;
    border-radius: 12px;
    color: #9ca3af;
    transition: all 0.2s;
    box-shadow: 4px 4px 8px #bec3c9, -4px -4px 8px #ffffff;
}

.uuc-neumorphism .uuc-neu-pill i {
    width: 18px;
    height: 18px;
}

.uuc-neumorphism .uuc-neu-pill:hover {
    color: #6366f1;
}

.uuc-neumorphism .uuc-neu-pill.active {
    color: #6366f1;
    box-shadow: inset 4px 4px 8px #bec3c9, inset -4px -4px 8px #ffffff;
}

.uuc-neumorphism .uuc-neu-body {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.uuc-neumorphism .uuc-neu-card {
    background: #e0e5ec;
    padding: 18px;
    border-radius: 16px;
    flex: 1;
    box-shadow: 8px 8px 16px #bec3c9, -8px -8px 16px #ffffff;
}

.uuc-neumorphism .uuc-neu-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 12px;
    display: block;
}

.uuc-neumorphism .uuc-neu-input-wrap {
    background: #e0e5ec;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: inset 4px 4px 8px #bec3c9, inset -4px -4px 8px #ffffff;
}

.uuc-neumorphism .uuc-neu-input {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    width: 100%;
    background: transparent;
}

.uuc-neumorphism .uuc-neu-result .uuc-neu-input {
    color: #6366f1;
}

.uuc-neumorphism .uuc-neu-select {
    width: 100%;
    padding: 12px 16px;
    background: #e0e5ec;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
    box-shadow: inset 2px 2px 4px #bec3c9, inset -2px -2px 4px #ffffff;
}

.uuc-neumorphism .uuc-neu-swap-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uuc-neumorphism .uuc-neu-swap {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    max-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e6ebf2, #d4d9e0);
    border-radius: 50%;
    color: #6366f1;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #bec3c9, -6px -6px 12px #ffffff;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-neumorphism .uuc-neu-swap i {
    width: 20px;
    height: 20px;
}

.uuc-neumorphism .uuc-neu-swap:hover {
    transform: rotate(180deg);
    box-shadow: inset 4px 4px 8px #bec3c9, inset -4px -4px 8px #ffffff;
}

.uuc-neumorphism .uuc-formula {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 10px;
}

/* ================================
   TEMPLATE 5: FLOATING CARDS
   ================================ */
.uuc-floating {
    font-family: 'DM Sans', sans-serif;
    max-width: 620px;
    padding: 24px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    border-radius: var(--uuc-radius);
    box-shadow: 0 20px 60px rgba(13, 148, 136, 0.35);
}

.uuc-floating .uuc-float-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: white;
}

.uuc-floating .uuc-float-header i {
    width: 22px;
    height: 22px;
}

.uuc-floating .uuc-float-title {
    font-weight: 600;
    font-size: 18px;
    color: white;
}

.uuc-floating .uuc-float-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.uuc-floating .uuc-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.uuc-floating .uuc-pill:hover {
    background: rgba(255, 255, 255, 0.3);
}

.uuc-floating .uuc-pill.active {
    background: white;
    color: #0d9488;
}

.uuc-floating .uuc-pill i {
    width: 14px;
    height: 14px;
}

.uuc-floating .uuc-float-body {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.uuc-floating .uuc-float-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    flex: 1;
}

.uuc-floating .uuc-float-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #0d9488;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uuc-floating .uuc-float-input {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    width: 100%;
    margin-bottom: 10px;
}

.uuc-floating .uuc-float-to .uuc-float-input {
    color: #0d9488;
}

.uuc-floating .uuc-float-select {
    width: 100%;
    padding: 10px 14px;
    background: #f0fdfa;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
}

.uuc-floating .uuc-float-swap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uuc-floating .uuc-float-swap.uuc-swap {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    color: #0d9488;
    transition: all 0.3s;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-floating .uuc-float-swap.uuc-swap i {
    width: 20px;
    height: 20px;
}

.uuc-floating .uuc-float-swap:hover {
    transform: rotate(180deg);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.3);
}

.uuc-floating .uuc-formula {
    font-size: 11px;
    color: #6b7280;
    margin-top: 8px;
}


/* ================================
   TEMPLATE 6: GLASSMORPHISM
   ================================ */
.uuc-glass {
    font-family: 'Outfit', sans-serif;
    position: relative;
    max-width: 600px;
    padding: 4px;
    border-radius: var(--uuc-radius);
    --uuc-accent: #6366f1;
}

.uuc-glass .uuc-glass-body {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.uuc-glass .uuc-glass-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--uuc-accent), #a855f7, #ec4899);
    border-radius: inherit;
    opacity: 0.9;
}

.uuc-glass .uuc-glass-content {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: calc(var(--uuc-radius) - 4px);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.uuc-glass .uuc-glass-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.uuc-glass .uuc-glass-header i {
    width: 22px;
    height: 22px;
}

.uuc-glass .uuc-glass-pills {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.uuc-glass .uuc-glass-pill {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.uuc-glass .uuc-glass-pill:hover {
    background: rgba(255, 255, 255, 0.3);
}

.uuc-glass .uuc-glass-pill.active {
    background: white;
    color: var(--uuc-accent);
}

.uuc-glass .uuc-glass-pill i {
    width: 16px;
    height: 16px;
}

.uuc-glass .uuc-glass-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.uuc-glass .uuc-glass-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.uuc-glass .uuc-glass-input {
    display: block;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.uuc-glass .uuc-glass-select {
    width: 100%;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: 500;
}

.uuc-glass .uuc-glass-select option {
    color: #333;
}

.uuc-glass .uuc-glass-swap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: center;
}

.uuc-glass .uuc-glass-swap.uuc-swap {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;
    background: white;
    border-radius: 50%;
    color: var(--uuc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-glass .uuc-glass-swap:hover {
    transform: rotate(180deg);
}

.uuc-glass .uuc-glass-swap i {
    width: 18px;
    height: 18px;
}

.uuc-glass .uuc-formula {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ================================
   TEMPLATE 7: SPLIT VIEW
   ================================ */
.uuc-split {
    font-family: 'Space Grotesk', sans-serif;
    max-width: 580px;
    border-radius: var(--uuc-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.uuc-split .uuc-split-header {
    background: #1e293b;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.uuc-split .uuc-split-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.uuc-split .uuc-split-cats {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.uuc-split .uuc-split-cat {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
}

.uuc-split .uuc-split-cat i {
    width: 12px;
    height: 12px;
}

.uuc-split .uuc-split-cat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.uuc-split .uuc-split-cat.active {
    background: white;
    color: #1e293b;
}

.uuc-split .uuc-split-body {
    display: flex;
}

.uuc-split .uuc-split-side {
    flex: 1;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.uuc-split .uuc-split-from {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    color: white;
}

.uuc-split .uuc-split-to {
    background: linear-gradient(180deg, #8b5cf6, #6d28d9);
    color: white;
}

.uuc-split .uuc-split-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 14px;
}

.uuc-split .uuc-split-input {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    width: 100%;
    margin-bottom: 14px;
}

.uuc-split .uuc-split-select {
    width: 100%;
    max-width: 170px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.uuc-split .uuc-split-select option {
    color: #333;
}

.uuc-split .uuc-split-center {
    display: flex;
    align-items: center;
    background: #1e293b;
    padding: 0 7px;
}

.uuc-split .uuc-split-swap {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    max-width: 46px;
    min-height: 46px;
    max-height: 46px;
    background: white;
    border-radius: 50%;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.uuc-split .uuc-split-swap:hover {
    transform: rotate(180deg);
}

.uuc-split .uuc-split-swap i {
    width: 22px;
    height: 22px;
}

.uuc-split .uuc-split-footer {
    background: #f8fafc;
    padding: 14px 22px;
    text-align: center;
}

.uuc-split .uuc-split-footer .uuc-formula {
    color: #64748b;
    margin: 0;
}

/* ================================
   INPUT VALIDATION
   ================================ */
.uuc-input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
    animation: uuc-shake 0.3s ease-in-out;
}

@keyframes uuc-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablet (768px) */
@media (max-width: 768px) {

    /* Minimal - Stack sidebar */
    .uuc-minimal {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        min-height: auto;
    }

    .uuc-minimal .uuc-sidebar {
        width: 100% !important;
        min-width: 100% !important;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        border-radius: var(--uuc-radius) var(--uuc-radius) 0 0;
        padding: 16px;
    }

    .uuc-minimal .uuc-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 5px;
    }

    .uuc-minimal .uuc-main {
        width: 100%;
        padding: 16px;
    }

    .uuc-minimal .uuc-swap {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    /* Dashboard - Stack panels */
    .uuc-dashboard .uuc-content {
        flex-direction: column;
    }

    .uuc-dashboard .uuc-swap-btn {
        transform: rotate(90deg);
    }

    /* Gradient - Stack cards */
    .uuc-gradient .uuc-grad-body {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .uuc-gradient .uuc-grad-swap {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    /* Neumorphism - Stack cards */
    .uuc-neumorphism .uuc-neu-body {
        flex-direction: column;
        gap: 12px;
    }

    .uuc-neumorphism .uuc-neu-swap-wrap {
        justify-content: center;
    }

    .uuc-neumorphism .uuc-neu-swap {
        transform: rotate(90deg);
    }

    /* Floating Cards - Stack */
    .uuc-floating .uuc-float-body {
        flex-direction: column;
        gap: 12px;
    }

    .uuc-floating .uuc-float-swap {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    /* Glass - Stack */
    .uuc-glass .uuc-glass-body {
        flex-direction: column;
        gap: 12px;
    }

    .uuc-glass .uuc-glass-swap {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    /* Split - Stack */
    .uuc-split .uuc-split-body {
        flex-direction: column;
    }

    .uuc-split .uuc-split-center {
        padding: 12px;
        justify-content: center;
    }

    .uuc-split .uuc-split-swap {
        transform: rotate(90deg);
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .uuc-widget {
        font-size: 14px;
    }

    /* Hide text labels in category nav */
    .uuc-minimal .uuc-nav-btn span,
    .uuc-gradient .uuc-grad-btn span,
    .uuc-dashboard .uuc-tab-label,
    .uuc-floating .uuc-pill span {
        display: none;
    }

    /* Smaller padding */
    .uuc-minimal .uuc-main,
    .uuc-dashboard .uuc-content,
    .uuc-gradient,
    .uuc-neumorphism,
    .uuc-floating,
    .uuc-glass,
    .uuc-split {
        padding: 12px;
    }

    /* Compact category pills */
    .uuc-dashboard .uuc-tabs,
    .uuc-gradient .uuc-grad-nav,
    .uuc-neumorphism .uuc-neu-pills,
    .uuc-floating .uuc-float-pills,
    .uuc-glass .uuc-glass-pills,
    .uuc-split .uuc-split-cats {
        gap: 6px;
        padding: 8px;
    }

    /* Smaller inputs */
    .uuc-minimal .uuc-input,
    .uuc-dashboard .uuc-big-input,
    .uuc-gradient .uuc-grad-input,
    .uuc-neumorphism .uuc-neu-input,
    .uuc-floating .uuc-float-input,
    .uuc-glass .uuc-glass-input,
    .uuc-split .uuc-split-input {
        font-size: 18px;
        padding: 10px 12px;
    }

    /* Smaller selects */
    .uuc-minimal .uuc-select,
    .uuc-dashboard .uuc-unit-dropdown,
    .uuc-gradient .uuc-grad-select,
    .uuc-neumorphism .uuc-neu-select,
    .uuc-floating .uuc-float-select,
    .uuc-glass .uuc-glass-select,
    .uuc-split .uuc-split-select {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Smaller swap buttons */
    .uuc-swap,
    .uuc-swap-btn {
        width: 36px;
        height: 36px;
    }

    /* Compact formula */
    .uuc-formula {
        font-size: 11px;
    }
}.wpa-test-msg{background:#d1ecf1!important;border:1px solid #bee5eb!important;border-radius:5px!important;color:#0c5460!important;font-size:14px!important;padding:.75rem 1.25rem!important;font-family:Arial!important;margin-top:5px!important}span.wpa-button{display:inline-block!important;padding-top:5px!important;color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important;padding:5px 10px!important;border-radius:5px!important;margin-top:5px!important;cursor:pointer!important}#altEmail_container,.altEmail_container{position:absolute!important;overflow:hidden!important;display:inline!important;height:1px!important;width:1px!important;z-index:-1000!important}/**
* kk Star Ratings
* @see https://github.com/kamalkhan/kk-star-ratings
*/
 .kk-star-ratings {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;}.kk-star-ratings.kksr-shortcode {display: -webkit-inline-box;display: -webkit-inline-flex;display: -ms-inline-flexbox;display: inline-flex;}.kk-star-ratings.kksr-valign-top {margin-bottom: 2rem;}.kk-star-ratings.kksr-valign-bottom {margin-top: 2rem;}.kk-star-ratings.kksr-align-left {-webkit-box-pack: flex-start;-webkit-justify-content: flex-start;-ms-flex-pack: flex-start;justify-content: flex-start;}.kk-star-ratings.kksr-align-center {-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;}.kk-star-ratings.kksr-align-right {-webkit-box-pack: flex-end;-webkit-justify-content: flex-end;-ms-flex-pack: flex-end;justify-content: flex-end;}.kk-star-ratings .kksr-muted {opacity: .5;}.kk-star-ratings .kksr-stars {position: relative;}.kk-star-ratings .kksr-stars .kksr-stars-active, .kk-star-ratings .kksr-stars .kksr-stars-inactive {display: flex;}.kk-star-ratings .kksr-stars .kksr-stars-active {overflow: hidden;position: absolute;top: 0;left: 0;}.kk-star-ratings .kksr-stars .kksr-star {cursor: pointer;padding-right: 0px;}.kk-star-ratings.kksr-disabled .kksr-stars .kksr-star {cursor: default;}.kk-star-ratings .kksr-stars .kksr-star .kksr-icon {transition: .3s all;}.kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-stars-active {width: 0 !important;}.kk-star-ratings .kksr-stars .kksr-star .kksr-icon, .kk-star-ratings:not(.kksr-disabled) .kksr-stars .kksr-star:hover ~ .kksr-star .kksr-icon {background-image: url("/wp-content/plugins/kk-star-ratings/src/core/public/svg/inactive.svg");}.kk-star-ratings .kksr-stars .kksr-stars-active .kksr-star .kksr-icon {background-image: url("/wp-content/plugins/kk-star-ratings/src/core/public/svg/active.svg");}.kk-star-ratings.kksr-disabled .kksr-stars .kksr-stars-active .kksr-star .kksr-icon, .kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-star .kksr-icon {background-image: url("/wp-content/plugins/kk-star-ratings/src/core/public/svg/selected.svg");}.kk-star-ratings .kksr-legend {margin-left: .75rem;margin-right: .75rem;}[dir="rtl"] .kk-star-ratings .kksr-stars .kksr-stars-active {left: auto;right: 0;}
.page-list .current_page_item>a{font-weight:700}.page-list-ext{clear:both}.page-list-ext{*zoom:1}.page-list-ext:before,.page-list-ext:after{display:table;line-height:0;content:""}.page-list-ext:after{clear:both}.page-list-ext .page-list-ext-item{clear:both;margin:10px 0 30px 0;-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid}.page-list-ext .page-list-ext-image{float:left;display:inline;margin:5px 15px 15px 0}.page-list-ext .page-list-ext-title{clear:none}.page-list-cols-2,.page-list-cols-3,.page-list-cols-4,.page-list-cols-5{column-gap:30px}.page-list-cols-2{column-count:2}.page-list-cols-3{column-count:3}.page-list-cols-4{column-count:4}.page-list-cols-5{column-count:5}@media (max-width:767px){.page-list-cols-2,.page-list-cols-3,.page-list-cols-4,.page-list-cols-5{column-count:1}}.bd_toc_container{position:relative;margin:0}.bd_toc_container .bd_toc_arrow{border:solid #000;border-width:0 2px 2px 0;display:inline-block;padding:3px;transform:rotate(-45deg);transition:transform 0.5s ease-in-out}.bd_toc_container .bd_toc_wrapper{max-width:100%;overflow:hidden}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header{transition:all 0.2s}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header .bd_toc_header_title{font-weight:700}.bd_toc_container .bd_toc_wrapper .bd_toc_content.list-type-number ul{counter-reset:List}.bd_toc_container .bd_toc_wrapper .bd_toc_content.list-type-number ul li{counter-increment:List}.bd_toc_container .bd_toc_wrapper .bd_toc_content.list-type-number ul li a:before{content:counters(List,".") ".";z-index:9;margin-right:10px}.bd_toc_container .bd_toc_wrapper .bd_toc_content.list-type-disc ul li a:before{content:"";width:6px;height:6px;position:absolute;border-radius:6px}.bd_toc_container .bd_toc_wrapper .bd_toc_content.list-type-none ul{list-style:none}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li ul li a{font-weight:400}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul{padding:0;margin:0;list-style:none}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li{position:relative;margin:0}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li .collaps-button{position:absolute;top:16px;right:30px;left:auto;width:30px;height:30px;align-items:center;justify-content:center}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li .collaps-button .bd_toc_arrow{transform:rotate(-135deg);cursor:pointer}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li.collapsed>ul{display:none}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li a{position:relative;display:block;text-decoration:none!important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li a:focus{outline:none!important}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li a .left-indicator{display:none}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li a:hover{text-decoration:underline!important}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li.collapsed>a{outline:none!important;text-decoration:none!important}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li.collapsed>.collaps-button .bd_toc_arrow{transform:rotate(-45deg)}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li>ul{padding-left:15px}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li>ul>li{position:relative}.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li>ul>li .left-indicator{position:absolute;top:calc(50% - 7px);left:-18px}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item{overflow:hidden}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header{display:flex;align-items:center;justify-content:space-between;cursor:pointer}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header .bd_toc_switcher_hide_show_icon{cursor:pointer}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header.active .bd_toc_arrow{transform:rotate(-135deg)}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_content{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_content .bd_toc_content_list .bd_toc_content_list_item{transition:height 0.2s ease-in-out}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_content .bd_toc_content_list .bd_toc_content_list_item>.collaps-button{display:none!important}.bd_toc_container .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_content .bd_toc_content_list.heading_toggle_icon .collaps-button{display:flex;align-items:center;justify-content:center}.bd_toc_container .bd_toc_wrapper .side_button i{display:none}.bd_toc_container.show_left_indicator .bd_toc_wrapper ul li>ul .left-indicator{display:none}.bd_toc_container .layout_toggle_button{display:none;align-items:center;justify-content:center;position:absolute;right:calc(0% - 124px);bottom:calc(0% + 200px);width:130px;box-sizing:content-box;border-width:50px 35px 0;border-style:solid;border-color:#000 #fff0;transform:rotate(-90deg);cursor:pointer;z-index:3;filter:drop-shadow(5px 5px 10px rgb(0 0 0 / .1))}@media only screen and (max-width:767px){.bd_toc_container .layout_toggle_button{right:calc(0% - 62px);bottom:calc(0% + 200px);width:40px;border-width:25px 30px 0}}.bd_toc_container .layout_toggle_button .bd_toc_arrow{transform:rotate(45deg);transition:transform 0.5s ease-in-out;margin-top:-45px}@media only screen and (max-width:767px){.bd_toc_container .layout_toggle_button .bd_toc_arrow{margin-top:-30px}}.bd_toc_container.scroll-to-fixed-fixed{height:100vh;border-top-left-radius:0!important;border-bottom-left-radius:0!important}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper{height:100%;max-height:100%;overflow:visible;opacity:0}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_content.scroll{overflow-y:scroll}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_content.scroll::-webkit-scrollbar{width:5px}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_content.scroll::-webkit-scrollbar-thumb{opacity:0;visibility:hidden;transition:0.5s ease-in-out;background:#EFEFEF;border-radius:10px}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_content.scroll:hover::-webkit-scrollbar-thumb{opacity:1;visibility:visible}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_content_list_item{height:calc(90vh - 50px)!important}.bd_toc_container.scroll-to-fixed-fixed .bd_toc_wrapper .bd_toc_wrapper_item .bd_toc_header .bd_toc_header_title{font-size:24px!important}.bd_toc_container.scroll-to-fixed-fixed .layout_toggle_button{display:flex}.bd_toc_container.scroll-to-fixed-fixed.active .bd_toc_wrapper{opacity:1}.bd_toc_container.scroll-to-fixed-fixed.active .layout_toggle_button{display:flex}.bd_toc_container.scroll-to-fixed-fixed.active .layout_toggle_button .bd_toc_arrow{transform:rotate(-135deg)}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.bd_toc_widget_floating{height:calc(100vh - 100%)}.bd_toc_widget_floating .bd_toc_floating_content{display:none;padding:10px 0;transition:ease-in-out 0.5s}.bd_toc_widget_floating .bd_toc_floating_content .bd_toc_content_list .bd_toc_content_floating_list_item ul{margin:0!important;padding:0!important}.bd_toc_widget_floating .bd_toc_floating_content .bd_toc_content_list .bd_toc_content_floating_list_item ul li{list-style:none;position:relative}.bd_toc_widget_floating .bd_toc_floating_content .bd_toc_content_list .bd_toc_content_floating_list_item ul li a{display:block;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:22px;border-radius:10px}.bd_toc_widget_floating .bd_toc_floating_content .bd_toc_content_list .bd_toc_content_floating_list_item ul li.current>a{border-radius:10px}.bd_toc_widget_floating .bd_toc_floating_content .bd_toc_content_list .bd_toc_content_floating_list_item ul li ul{margin-left:15px!important}.bd_toc_widget_floating .bd_toc_floating_content.list-type-number ul{counter-reset:List}.bd_toc_widget_floating .bd_toc_floating_content.list-type-number ul li{counter-increment:List}.bd_toc_widget_floating .bd_toc_floating_content.list-type-number ul li a:before{content:counters(List,".") ".";z-index:9;margin-right:10px}.bd_toc_widget_floating .bd_toc_floating_content.list-type-disc{padding:10px}.bd_toc_widget_floating .bd_toc_floating_content.list-type-disc ul li a:before{content:"";width:6px;height:6px;position:absolute;border-radius:6px}.bd_toc_widget_floating .bd_toc_floating_content.list-type-none ul{list-style:none}body .bd_toc_widget_floating{position:fixed;margin:0;padding:0;height:auto;z-index:99999999999999;max-width:700px;overflow:hidden}@media only screen and (max-width:767px){body .bd_toc_widget_floating{max-width:355px}}@media only screen and (max-width:412px){body .bd_toc_widget_floating{max-width:315px}}@media only screen and (max-width:360px){body .bd_toc_widget_floating{max-width:300px}}@media only screen and (max-width:320px){body .bd_toc_widget_floating{max-width:260px}}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading{display:none;line-height:normal}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item{display:inline-flex;align-items:center;justify-content:start;width:100%}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_prev{display:inline-flex;align-items:center;justify-content:center}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_prev a{color:#1140FF;position:relative;display:flex;width:30px;height:30px;background-color:#F0F8FF;cursor:pointer;margin-right:8px;line-height:30px;border-radius:50%}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_prev a.bd_toc_widget_left_arrow:after{content:"";display:block;position:absolute;width:9px;height:9px;border-bottom:2px solid;border-left:2px solid;transform:rotate(45deg);left:12px;top:11px}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_next{display:inline-flex;align-items:center;justify-content:center}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_next a{color:#1140FF;position:relative;display:flex;width:30px;height:30px;background-color:#F0F8FF;cursor:pointer;line-height:30px;border-radius:50%;margin-right:20px}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .bd_toc_widget_nav_next a.bd_toc_widget_right_arrow:after{content:"";display:block;position:absolute;width:9px;height:9px;border-bottom:2px solid;border-right:2px solid;transform:rotate(-45deg);left:10px;top:11px}body .bd_toc_widget_floating .bd_toc_widget_floating_current_heading .bd_toc_widget_item .current_list_item{cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:45px}body .bd_toc_widget_floating.widget_floating_open .bd_toc_widget_floating_current_heading{display:flex}body .bd_toc_widget_floating .bd_toc_floating_content.widget_floating_content_open{display:block;max-height:calc(100vh - 150px)!important;overflow:hidden;overflow-y:scroll}body .bd_toc_widget_floating .bd_toc_floating_content.widget_floating_content_open::-webkit-scrollbar{width:5px}body .bd_toc_widget_floating .bd_toc_floating_content.widget_floating_content_open::-webkit-scrollbar-thumb{opacity:0;visibility:hidden;transition:0.5s ease-in-out;background:#EFEFEF;border-radius:10px}body .bd_toc_widget_floating .bd_toc_floating_content.widget_floating_content_open:hover::-webkit-scrollbar-thumb{opacity:1;visibility:visible}.bd_toc_progress_bar.progress_bar_open .bd_toc_widget_progress_bar{position:fixed;margin:0;padding:0;left:0;height:5px;background-color:rgb(17 64 255 / .71);transition:all linear 0.1s;z-index:999999999999}.cmplz-video.cmplz-iframe-styles{background-color:transparent}.cmplz-video.cmplz-hidden{visibility:hidden !important}.cmplz-blocked-content-notice{display:none}.cmplz-placeholder-parent{height:inherit}.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice,.cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice{display:block}.cmplz-blocked-content-container,.cmplz-wp-video{animation-name:cmplz-fadein;animation-duration:600ms;background:#FFF;border:0;border-radius:3px;box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;background-repeat:no-repeat !important;background-size:cover !important;height:inherit;position:relative}.cmplz-blocked-content-container.gmw-map-cover,.cmplz-wp-video.gmw-map-cover{max-height:100%;position:absolute}.cmplz-blocked-content-container.cmplz-video-placeholder,.cmplz-wp-video.cmplz-video-placeholder{padding-bottom:initial}.cmplz-blocked-content-container iframe,.cmplz-wp-video iframe{visibility:hidden;max-height:100%;border:0 !important}.cmplz-blocked-content-container .cmplz-custom-accept-btn,.cmplz-wp-video .cmplz-custom-accept-btn{white-space:normal;text-transform:initial;cursor:pointer;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:200px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus,.cmplz-wp-video .cmplz-custom-accept-btn:focus{border:1px dotted #cecece}.cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-wp-video .cmplz-blocked-content-notice{white-space:normal;text-transform:initial;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links{display:block;margin-bottom:10px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a{color:#fff}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body{display:block}.cmplz-blocked-content-container div div{display:none}.cmplz-wp-video .cmplz-placeholder-element{width:100%;height:inherit}@keyframes cmplz-fadein{from{opacity:0}to{opacity:1}}.lsdp-wrapper{--lsdp-flag-width:20px;--lsdp-flag-height:calc(var(--lsdp-flag-width) * 0.75);--lsdp-flag-radius:0px;--lsdp-flag-ratio:initial;--lsdp-normal-text-font:initial;--lsdp-normal-text-weight:initial;--lsdp-normal-text-transform:initial;--lsdp-normal-text-decoration:initial;--lsdp-normal-text-style:initial;--lsdp-normal-text-decoration-color:initial;--lsdp-normal-text-decoration-style:initial;--lsdp-normal-text-letter-spacing:initial;--lsdp-normal-text-color:#333;--lsdp-normal-text-size:16px;--lsdp-normal-text-line-height:calc(var(--lsdp-normal-text-size) + 8px);--lsdp-hover-text-line-height:calc(var(--lsdp-hover-text-size) + 8px);--lsdp-lang-pading-top:4px;--lsdp-lang-pading-right:10px;--lsdp-lang-pading-bottom:4px;--lsdp-lang-pading-left:10px;--lsdp-normal-bg-color:#fff;--lsdp-hover-bg-color:#fff;--lsdp-hover-text-color:#333;--lsdp-hover-text-letter-spacing:initial;--lsdp-hover-text-size:16px;--lsdp-hover-bg-mrgn-top:0px;--lsdp-hover-bg-mrgn-bottom:0px;--lsdp-hover-bg-mrgn-left:auto;--lsdp-hover-bg-mrgn-right:auto;--lsdp-hover-bg-pading-top:10px;--lsdp-hover-bg-pading-bottom:10px;--lsdp-hover-bg-pading-left:15px;--lsdp-hover-bg-pading-right:15px;overflow:hidden}.lsdp-wrapper ul{padding:0}.lsdp-wrapper.vertical ul{padding-bottom:1rem}.lsdp-wrapper ul li{list-style:none;display:-ms-flexbox;display:flex}.lsdp-wrapper ul li.lsdp_active_lang a,.lsdp-wrapper ul li a{display:-ms-flexbox;display:flex;gap:.5rem;-ms-flex-align:center;align-items:center;background-color:var(--lsdp-normal-bg-color);padding:var(--lsdp-lang-pading-top) var(--lsdp-lang-pading-right) var(--lsdp-lang-pading-bottom) var(--lsdp-lang-pading-left)}.lsdp-wrapper span a,.lsdp-wrapper ul li a div:not(.lsdp-lang-image){color:var(--lsdp-normal-text-color);font-family:var(--lsdp-normal-text-font);font-weight:var(--lsdp-normal-text-weight);font-size:var(--lsdp-normal-text-size);line-height:var(--lsdp-normal-text-line-height);font-style:var(--lsdp-normal-text-style);text-transform:var(--lsdp-normal-text-transform);letter-spacing:var(--lsdp-normal-text-letter-spacing);-webkit-text-decoration:var(--lsdp-normal-text-decoration);text-decoration:var(--lsdp-normal-text-decoration);-webkit-text-decoration-style:var(--lsdp-normal-text-decoration-style);text-decoration-style:var(--lsdp-normal-text-decoration-style);-webkit-text-decoration-color:var(--lsdp-normal-text-decoration-color);text-decoration-color:var(--lsdp-normal-text-decoration-color)}.lsdp-wrapper.dropdown:hover span a,.lsdp-wrapper.dropdown ul li:hover,.lsdp-wrapper ul li.lsdp_active_lang a:hover div:not(.lsdp-lang-image),.lsdp-wrapper ul li a:hover div:not(.lsdp-lang-image){color:var(--lsdp-hover-text-color);font-size:var(--lsdp-hover-text-size);line-height:var(--lsdp-hover-text-line-height);letter-spacing:var(--lsdp-hover-text-letter-spacing)}.lsdp-wrapper.horizontal ul{display:-ms-flexbox;display:flex;gap:1rem;-ms-flex-wrap:wrap;flex-wrap:wrap}.lsdp-wrapper.dropdown{position:relative;display:-ms-inline-flexbox;display:inline-flex;margin:0 auto;padding:10px 15px;background:#fff;cursor:pointer;outline:none;background-color:var(--lsdp-normal-bg-color);overflow:visible;-ms-flex-align:center;align-items:center}.lsdp-wrapper.dropdown:after{content:"";width:0;height:0;display:inline-block;margin-left:.5rem;border-width:6px 6px 0;border-style:solid;border-color:gray transparent}.lsdp-wrapper.dropdown span a{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.6rem;-ms-flex-align:center;align-items:center}.lsdp-wrapper.dropdown ul{position:absolute;top:100%;left:0;right:0;background:#f5f5f5;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;list-style:none;opacity:0;pointer-events:none;padding:0;z-index:999;display:inline-table;width:100%}.lsdp-wrapper.dropdown ul li{text-decoration:none;display:block}.lsdp-wrapper.dropdown li a{color:#333;padding:5px 15px;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;white-space:nowrap}.lsdp-wrapper.dropdown.active:after,.lsdp-wrapper.dropdown:hover:after{border-width:0 6px 6px}.lsdp-wrapper.dropdown.active ul,.lsdp-wrapper.dropdown:hover ul{opacity:1;pointer-events:auto}.lsdp-wrapper .lsdp-lang-image{width:var(--lsdp-flag-width);height:var(--lsdp-flag-height);border-radius:var(--lsdp-flag-radius);aspect-ratio:var(--lsdp-flag-ratio);line-height:0;overflow:hidden}.lsdp-wrapper .lsdp-lang-image a{line-height:0;width:100%;height:100%;display:block}.lsdp-wrapper .lsdp-lang-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}input.lsdp-input{background:#f1f5f9;max-height:30px;border:0;border-radius:3px;padding:7px 10px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .2s ease;-o-transition:background .2s ease;transition:background .2s ease;color:#4c5866;font-family:Open Sans,Helvetica,Roboto,Arial,sans-serif;font-size:13px;font-weight:600;line-height:normal;display:block;width:100%}input.lsdp-input:focus{background:#e6ecf2}input.lsdp-input::-webkit-input-placeholder{color:#98a7b8}input.lsdp-input:-moz-placeholder,input.lsdp-input::-moz-placeholder{color:#98a7b8}input.lsdp-input:-ms-input-placeholder{color:#98a7b8}input.lsdp-input[readonly]{background:#fff!important;border:1px solid #eaedf0!important;cursor:not-allowed}.lsdp-wrapper{--lsdp-flag-width:20px;--lsdp-flag-height:calc(var(--lsdp-flag-width) * 0.75);--lsdp-flag-radius:0px;--lsdp-flag-ratio:initial;--lsdp-normal-text-font:initial;--lsdp-normal-text-weight:initial;--lsdp-normal-text-transform:initial;--lsdp-normal-text-decoration:initial;--lsdp-normal-text-style:initial;--lsdp-normal-text-letter-spacing:initial;--lsdp-normal-text-decoration-color:initial;--lsdp-normal-text-decoration-style:initial;--lsdp-normal-text-color:#333;--lsdp-normal-text-size:16px;--lsdp-normal-text-line-height:calc(var(--lsdp-normal-text-size) + 8px);--lsdp-hover-text-line-height:calc(var(--lsdp-hover-text-size) + 8px);--lsdp-lang-pading-top:4px;--lsdp-lang-pading-right:10px;--lsdp-lang-pading-bottom:4px;--lsdp-lang-pading-left:10px;--lsdp-normal-bg-color:#fff;--lsdp-hover-bg-color:#fff;--lsdp-hover-text-color:#333;--lsdp-hover-text-letter-spacing:initial;--lsdp-hover-text-size:16px;--lsdp-hover-bg-mrgn-top:0px;--lsdp-hover-bg-mrgn-bottom:0px;--lsdp-hover-bg-mrgn-left:auto;--lsdp-hover-bg-mrgn-right:auto;--lsdp-hover-bg-pading-top:10px;--lsdp-hover-bg-pading-bottom:10px;--lsdp-hover-bg-pading-left:15px;--lsdp-hover-bg-pading-right:15px;overflow:hidden}.lsdp-wrapper ul{padding:0}.lsdp-wrapper ul li{list-style:none;display:-ms-flexbox;display:flex}.lsdp-wrapper ul li.lsdp_active_lang a,.lsdp-wrapper ul li a{display:-ms-flexbox;display:flex;gap:.5rem;-ms-flex-align:center;align-items:center;background-color:var(--lsdp-normal-bg-color);padding:var(--lsdp-lang-pading-top) var(--lsdp-lang-pading-right) var(--lsdp-lang-pading-bottom) var(--lsdp-lang-pading-left)}.lsdp-wrapper ul li.lsdp_active_lang a div:not(.lsdp-lang-image),.lsdp-wrapper ul li.lsdp_active_lang a span a,.lsdp-wrapper ul li a div:not(.lsdp-lang-image),.lsdp-wrapper ul li a span a{color:var(--lsdp-normal-text-color);font-family:var(--lsdp-normal-text-font);font-weight:var(--lsdp-normal-text-weight);font-size:var(--lsdp-normal-text-size);line-height:var(--lsdp-normal-text-line-height);font-style:var(--lsdp-normal-text-style);text-transform:var(--lsdp-normal-text-transform);letter-spacing:var(--lsdp-normal-text-letter-spacing);-webkit-text-decoration:var(--lsdp-normal-text-decoration);text-decoration:var(--lsdp-normal-text-decoration);-webkit-text-decoration-style:var(--lsdp-normal-text-decoration-style);text-decoration-style:var(--lsdp-normal-text-decoration-style);-webkit-text-decoration-color:var(--lsdp-normal-text-decoration-color);text-decoration-color:var(--lsdp-normal-text-decoration-color)}.lsdp-wrapper.horizontal ul{display:-ms-flexbox;display:flex;gap:1rem;-ms-flex-wrap:wrap;flex-wrap:wrap}.lsdp-wrapper.vertical ul{padding-bottom:1rem}.lsdp-wrapper.dropdown{position:relative;display:-ms-inline-flexbox;display:inline-flex;margin:0 auto;padding:10px 15px;background:var(--lsdp-normal-bg-color);cursor:pointer;outline:none;overflow:visible;-ms-flex-align:center;align-items:center}.lsdp-wrapper.dropdown:after{content:"";width:0;height:0;display:inline-block;margin-left:.5rem;border-width:6px 6px 0;border-style:solid;border-color:gray transparent}.lsdp-wrapper.dropdown span a{display:-ms-flexbox;display:flex;gap:.6rem;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.lsdp-wrapper.dropdown li a{padding:5px 15px}.lsdp-wrapper.dropdown ul{position:absolute;top:100%;left:0;right:0;background:#f5f5f5;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;list-style:none;opacity:0;pointer-events:none;padding:0;z-index:999;display:inline-table;width:100%}.lsdp-wrapper.dropdown ul li{text-decoration:none;display:block}.lsdp-wrapper.dropdown ul li a{color:#333;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;white-space:nowrap}.lsdp-wrapper.dropdown.active:after,.lsdp-wrapper.dropdown:hover:after{border-width:0 6px 6px}.lsdp-wrapper.dropdown.active ul,.lsdp-wrapper.dropdown:hover ul{opacity:1;pointer-events:auto}.lsdp-wrapper .lsdp-lang-image{width:var(--lsdp-flag-width);height:var(--lsdp-flag-height);border-radius:var(--lsdp-flag-radius);aspect-ratio:var(--lsdp-flag-ratio);line-height:0;overflow:hidden}.lsdp-wrapper .lsdp-lang-image a{line-height:0;width:100%;height:100%;display:block}.lsdp-wrapper .lsdp-lang-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}#heateor_sss_error{color:red;margin:7px 0}#heateor_sss_sharing_more_providers .filter svg{position:absolute;left:16px;top:18px}div.heateor_sss_sharing_ul a:link,div.heateor_sss_sharing_ul a:focus{text-decoration:none;background:transparent!important}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#ffffe0;border:1px solid #e6db55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#fafafa;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_mastodon_popup_bg,#heateor_sss_popup_bg{background:url(/wp-content/plugins/sassy-social-share/images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58b8f8!important;border-bottom:1px solid #d7d7d7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#fafafa;border-radius:4px;color:#555;height:auto;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{display:block;margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{padding:0;margin:0 0 0 5px;background:0 0!important;float:left;width:24.1%;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-16px;top:-16px}#heateor_sss_sharing_more_providers .filter input.search{width:96%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 11px;padding:5px 8px 5px 27px!important;border:1px solid #ccc!important;color:#000;background:#fff!important;font-size:16px!important;text-align:left!important;max-width:-webkit-fill-available;line-height:1}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #d7d7d7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:#fff0;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a span{width:51%}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:12px;height:auto;line-height:20px;overflow:hidden;padding:8px 8px 8px 1px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58b8f8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgb(0 0 0 / .4);box-shadow:0 2px 2px rgb(0 0 0 / .4);text-shadow:0 -1px 0 rgb(0 0 0 / .2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}div.heateor_sss_follow_ul,div.heateor_sss_sharing_ul{padding-left:0!important;margin:1px 0!important}#heateor_sss_mastodon_popup_close img,#heateor_sss_sharing_popup_close img{opacity:1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}div.heateor_sss_follow_ul .heateorSssSharingRound,div.heateor_sss_sharing_ul .heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style:normal;font-size:.6em;visibility:hidden}div.heateor_sss_follow_ul a,div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a{float:left;padding:0!important;list-style:none!important;border:none!important;margin:2px}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}div.heateor_sss_follow_ul a:before,div.heateor_sss_sharing_ul a:before{content:none!important}div.heateor_sss_follow_ul a{width:auto}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgb(0 0 0 / .1);box-shadow:0 1px 4px 1px rgb(0 0 0 / .1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share,div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share{width:96px}li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span,li.heateor_sss_facebook_share .fb-share-button span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssTCBackground:hover{border-width:0!important;background-color:#fff0}.heateorSssTCBackground{border-width:0!important;background-color:transparent!important;font-style:normal;word-wrap:normal;color:#666;line-height:1;visibility:hidden}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight:bolder;font-family:sans-serif;padding:0;margin:0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin:0;padding:0;text-align:center}div.heateor_sss_horizontal_sharing li{width:auto}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:91px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share span{vertical-align:text-top!important}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:96px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:108px}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:106px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}}@media screen and (max-width:752px){#heateor_sss_sharing_more_content .all-services ul li{width:32.1%}}@media screen and (max-width:590px){#heateor_sss_sharing_more_content .all-services ul li{width:48.1%}#heateor_sss_sharing_more_providers .filter input.search{width:93%}}@media screen and (max-width:413px){#heateor_sss_sharing_more_content .all-services ul li{width:100%}}div.heateor_sss_bottom_sharing{margin-bottom:0}div.heateor_sss_sharing_container a:before,div.heateor_sss_follow_icons_container a:before{content:none}.heateor_sss_mastodon_popup_button{background:linear-gradient(#ec1b23,#d43116);padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:4px auto;font-weight:bolder;width:35%;cursor:pointer;border-bottom-style:groove;border-bottom-width:5px;border-bottom-color:rgb(0 0 0 / .2)}@media screen and (max-width:783px)#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92.8%}div.heateor_sss_follow_icons_container svg,div.heateor_sss_sharing_container svg{width:100%;height:100%}body,.et_pb_column_1_2 .et_quote_content blockquote cite,.et_pb_column_1_2 .et_link_content a.et_link_main_url,.et_pb_column_1_3 .et_quote_content blockquote cite,.et_pb_column_3_8 .et_quote_content blockquote cite,.et_pb_column_1_4 .et_quote_content blockquote cite,.et_pb_blog_grid .et_quote_content blockquote cite,.et_pb_column_1_3 .et_link_content a.et_link_main_url,.et_pb_column_3_8 .et_link_content a.et_link_main_url,.et_pb_column_1_4 .et_link_content a.et_link_main_url,.et_pb_blog_grid .et_link_content a.et_link_main_url,body .et_pb_bg_layout_light .et_pb_post p,body .et_pb_bg_layout_dark .et_pb_post p{font-size:16px}.et_pb_slide_content,.et_pb_best_value{font-size:18px}body{color:#000}h1,h2,h3,h4,h5,h6{color:#000}#et_search_icon:hover,.mobile_menu_bar:before,.mobile_menu_bar:after,.et_toggle_slide_menu:after,.et-social-icon a:hover,.et_pb_sum,.et_pb_pricing li a,.et_pb_pricing_table_button,.et_overlay:before,.entry-summary p.price ins,.et_pb_member_social_links a:hover,.et_pb_widget li a:hover,.et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active,.et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active,.et_pb_gallery .et_pb_gallery_pagination ul li a.active,.wp-pagenavi span.current,.wp-pagenavi a:hover,.nav-single a,.tagged_as a,.posted_in a{color:#0b0084}.et_pb_contact_submit,.et_password_protected_form .et_submit_button,.et_pb_bg_layout_light .et_pb_newsletter_button,.comment-reply-link,.form-submit .et_pb_button,.et_pb_bg_layout_light .et_pb_promo_button,.et_pb_bg_layout_light .et_pb_more_button,.et_pb_contact p input[type="checkbox"]:checked+label i:before,.et_pb_bg_layout_light.et_pb_module.et_pb_button{color:#0b0084}.footer-widget h4{color:#0b0084}.et-search-form,.nav li ul,.et_mobile_menu,.footer-widget li:before,.et_pb_pricing li:before,blockquote{border-color:#0b0084}.et_pb_counter_amount,.et_pb_featured_table .et_pb_pricing_heading,.et_quote_content,.et_link_content,.et_audio_content,.et_pb_post_slider.et_pb_bg_layout_dark,.et_slide_in_menu_container,.et_pb_contact p input[type="radio"]:checked+label i:before{background-color:#0b0084}a{color:#992300}#main-header,#main-header .nav li ul,.et-search-form,#main-header .et_mobile_menu{background-color:#f7f7f7}.nav li ul{border-color:#7090ae}.et_secondary_nav_enabled #page-container #top-header{background-color:#13347b!important}#et-secondary-nav li ul{background-color:#13347b}.et_header_style_centered .mobile_nav .select_page,.et_header_style_split .mobile_nav .select_page,.et_nav_text_color_light #top-menu>li>a,.et_nav_text_color_dark #top-menu>li>a,#top-menu a,.et_mobile_menu li a,.et_nav_text_color_light .et_mobile_menu li a,.et_nav_text_color_dark .et_mobile_menu li a,#et_search_icon:before,.et_search_form_container input,span.et_close_search_field:after,#et-top-navigation .et-cart-info{color:#082c7a}.et_search_form_container input::-moz-placeholder{color:#082c7a}.et_search_form_container input::-webkit-input-placeholder{color:#082c7a}.et_search_form_container input:-ms-input-placeholder{color:#082c7a}#top-menu li a{font-size:16px}body.et_vertical_nav .container.et_search_form_container .et-search-form input{font-size:16px!important}#top-menu li a,.et_search_form_container input{font-weight:700;font-style:normal;text-transform:uppercase;text-decoration:none}.et_search_form_container input::-moz-placeholder{font-weight:700;font-style:normal;text-transform:uppercase;text-decoration:none}.et_search_form_container input::-webkit-input-placeholder{font-weight:700;font-style:normal;text-transform:uppercase;text-decoration:none}.et_search_form_container input:-ms-input-placeholder{font-weight:700;font-style:normal;text-transform:uppercase;text-decoration:none}#top-menu li.current-menu-ancestor>a,#top-menu li.current-menu-item>a,#top-menu li.current_page_item>a{color:#000021}#main-footer .footer-widget h4,#main-footer .widget_block h1,#main-footer .widget_block h2,#main-footer .widget_block h3,#main-footer .widget_block h4,#main-footer .widget_block h5,#main-footer .widget_block h6{color:#0b0084}.footer-widget li:before{border-color:#0b0084}#footer-widgets .footer-widget li:before{top:10.6px}h1,h2,h3,h4,h5,h6,.et_quote_content blockquote p,.et_pb_slide_description .et_pb_slide_title{line-height:1.3em}body.home-posts #left-area .et_pb_post h2,body.archive #left-area .et_pb_post h2,body.search #left-area .et_pb_post h2,body.single .et_post_meta_wrapper h1{line-height:1.3em}body.home-posts #left-area .et_pb_post h2,body.archive #left-area .et_pb_post h2,body.search #left-area .et_pb_post h2,body.single .et_post_meta_wrapper h1{font-weight:700;font-style:normal;text-transform:none;text-decoration:none}@media only screen and (min-width:981px){.et_header_style_centered.et_hide_primary_logo #main-header:not(.et-fixed-header) .logo_container,.et_header_style_centered.et_hide_fixed_logo #main-header.et-fixed-header .logo_container{height:11.88px}.et_fixed_nav #page-container .et-fixed-header#top-header{background-color:#13347b!important}.et_fixed_nav #page-container .et-fixed-header#top-header #et-secondary-nav li ul{background-color:#13347b}.et-fixed-header #top-menu a,.et-fixed-header #et_search_icon:before,.et-fixed-header #et_top_search .et-search-form input,.et-fixed-header .et_search_form_container input,.et-fixed-header .et_close_search_field:after,.et-fixed-header #et-top-navigation .et-cart-info{color:#082c7a!important}.et-fixed-header .et_search_form_container input::-moz-placeholder{color:#082c7a!important}.et-fixed-header .et_search_form_container input::-webkit-input-placeholder{color:#082c7a!important}.et-fixed-header .et_search_form_container input:-ms-input-placeholder{color:#082c7a!important}.et-fixed-header #top-menu li.current-menu-ancestor>a,.et-fixed-header #top-menu li.current-menu-item>a,.et-fixed-header #top-menu li.current_page_item>a{color:#000021!important}body.home-posts #left-area .et_pb_post h2,body.archive #left-area .et_pb_post h2,body.search #left-area .et_pb_post h2{font-size:18.2px}body.single .et_post_meta_wrapper h1{font-size:21px}}@media only screen and (min-width:1350px){.et_pb_row{padding:27px 0}.et_pb_section{padding:54px 0}.single.et_pb_pagebuilder_layout.et_full_width_page .et_post_meta_wrapper{padding-top:81px}.et_pb_fullwidth_section{padding:0}}h1,h1.et_pb_contact_main_title,.et_pb_title_container h1{font-size:26px}h2,.product .related h2,.et_pb_column_1_2 .et_quote_content blockquote p{font-size:22px}h3{font-size:18px}h4,.et_pb_circle_counter h3,.et_pb_number_counter h3,.et_pb_column_1_3 .et_pb_post h2,.et_pb_column_1_4 .et_pb_post h2,.et_pb_blog_grid h2,.et_pb_column_1_3 .et_quote_content blockquote p,.et_pb_column_3_8 .et_quote_content blockquote p,.et_pb_column_1_4 .et_quote_content blockquote p,.et_pb_blog_grid .et_quote_content blockquote p,.et_pb_column_1_3 .et_link_content h2,.et_pb_column_3_8 .et_link_content h2,.et_pb_column_1_4 .et_link_content h2,.et_pb_blog_grid .et_link_content h2,.et_pb_column_1_3 .et_audio_content h2,.et_pb_column_3_8 .et_audio_content h2,.et_pb_column_1_4 .et_audio_content h2,.et_pb_blog_grid .et_audio_content h2,.et_pb_column_3_8 .et_pb_audio_module_content h2,.et_pb_column_1_3 .et_pb_audio_module_content h2,.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2{font-size:15px}h5{font-size:13px}h6{font-size:12px}.et_pb_slide_description .et_pb_slide_title{font-size:39px}.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2,.et_pb_column_1_4 .et_pb_audio_module_content h2{font-size:13px}h1,h1.et_pb_contact_main_title,.et_pb_title_container h1{font-weight:600}h2,.product .related h2,.et_pb_column_1_2 .et_quote_content blockquote p{font-weight:600}h3{font-weight:600}h4,.et_pb_circle_counter h3,.et_pb_number_counter h3,.et_pb_column_1_3 .et_pb_post h2,.et_pb_column_1_4 .et_pb_post h2,.et_pb_blog_grid h2,.et_pb_column_1_3 .et_quote_content blockquote p,.et_pb_column_3_8 .et_quote_content blockquote p,.et_pb_column_1_4 .et_quote_content blockquote p,.et_pb_blog_grid .et_quote_content blockquote p,.et_pb_column_1_3 .et_link_content h2,.et_pb_column_3_8 .et_link_content h2,.et_pb_column_1_4 .et_link_content h2,.et_pb_blog_grid .et_link_content h2,.et_pb_column_1_3 .et_audio_content h2,.et_pb_column_3_8 .et_audio_content h2,.et_pb_column_1_4 .et_audio_content h2,.et_pb_blog_grid .et_audio_content h2,.et_pb_column_3_8 .et_pb_audio_module_content h2,.et_pb_column_1_3 .et_pb_audio_module_content h2,.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2{font-weight:600}h5{font-weight:600}h6{font-weight:600}.et_pb_slide_description .et_pb_slide_title{font-weight:600}.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2,.et_pb_column_1_4 .et_pb_audio_module_content h2{font-weight:600}@media only screen and (max-width:980px){.et_header_style_centered .mobile_nav .select_page,.et_header_style_split .mobile_nav .select_page,.et_mobile_menu li a,.mobile_menu_bar:before,.et_nav_text_color_light #top-menu>li>a,.et_nav_text_color_dark #top-menu>li>a,#top-menu a,.et_mobile_menu li a,#et_search_icon:before,#et_top_search .et-search-form input,.et_search_form_container input,#et-top-navigation .et-cart-info{color:#2c3368}.et_close_search_field:after{color:#2c3368!important}.et_search_form_container input::-moz-placeholder{color:#2c3368}.et_search_form_container input::-webkit-input-placeholder{color:#2c3368}.et_search_form_container input:-ms-input-placeholder{color:#2c3368}}@media only screen and (max-width:767px){h1{font-size:22px}h2,.product .related h2,.et_pb_column_1_2 .et_quote_content blockquote p{font-size:18px}h3{font-size:16px}h4,.et_pb_circle_counter h3,.et_pb_number_counter h3,.et_pb_column_1_3 .et_pb_post h2,.et_pb_column_1_4 .et_pb_post h2,.et_pb_blog_grid h2,.et_pb_column_1_3 .et_quote_content blockquote p,.et_pb_column_3_8 .et_quote_content blockquote p,.et_pb_column_1_4 .et_quote_content blockquote p,.et_pb_blog_grid .et_quote_content blockquote p,.et_pb_column_1_3 .et_link_content h2,.et_pb_column_3_8 .et_link_content h2,.et_pb_column_1_4 .et_link_content h2,.et_pb_blog_grid .et_link_content h2,.et_pb_column_1_3 .et_audio_content h2,.et_pb_column_3_8 .et_audio_content h2,.et_pb_column_1_4 .et_audio_content h2,.et_pb_blog_grid .et_audio_content h2,.et_pb_column_3_8 .et_pb_audio_module_content h2,.et_pb_column_1_3 .et_pb_audio_module_content h2,.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2{font-size:13px}.et_pb_slider.et_pb_module .et_pb_slides .et_pb_slide_description .et_pb_slide_title{font-size:33px}.et_pb_gallery_grid .et_pb_gallery_item h3,.et_pb_portfolio_grid .et_pb_portfolio_item h2,.et_pb_filterable_portfolio_grid .et_pb_portfolio_item h2,.et_pb_column_1_4 .et_pb_audio_module_content h2{font-size:11px}h5{font-size:11px}h6{font-size:10px}}#main-header,#et-top-navigation{font-family:'Ubuntu',sans-serif}.et_pb_text p{margin-bottom:1.2em}.et_pb_text h2{margin-top:2em;margin-bottom:1em}.et_pb_text h3{margin-top:1.6em;margin-bottom:.8em}.page article table,.single article table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:980px){.page .et_pb_section,.page .et_pb_row,.single .et_pb_section,.single .et_pb_row{overflow-x:hidden}}@media (max-width:767px){.page article table,.single article table{font-size:14px}.page article table td,.page article table th,.single article table td,.single article table th{padding:8px 4px;white-space:normal;word-wrap:break-word}}.et_pb_blog_0 .et_pb_post .entry-title a,.et_pb_blog_0 .not-found-title{border-bottom:none}a:link{font-weight:700;border-bottom:solid 0 #fe8727}a:hover{border-bottom:2px dashed}#top-menu a{border-bottom:none}.yarpp-related h3{font-size:125%;font-weight:700;margin:0;padding:16px 10px 15px!important;text-transform:capitalize}#left-area ul,.entry-content ul,.et-l--body ul,.et-l--footer ul,.et-l--header ul{list-style-type:disc;padding:0 0 23px 1em;line-height:29px}.et_pb_blog_grid h2{font-size:18px;height:90px}.post-content-inner{height:50px}.et_pb_blog_0 .et_pb_post .entry-title{height:72px!important;object-fit:cover}.post-content-inner{height:60px}#commentform input[type="email"],#commentform input[type="text"],#commentform input[type="url"],#commentform textarea{padding:12px;color:#020202}.et_pb_section_0_tb_body.et_pb_section{padding-bottom:0;background-color:#f6f7fb!important}.et_pb_text_0_tb_body h1{font-family:'Montserrat',sans-serif;font-weight:800;font-size:80px;color:#000000!important;letter-spacing:1px;line-height:1.2em}.et_pb_text_0_tb_body{margin-bottom:8px!important}.et_pb_blog_0_tb_body .et_pb_post .entry-title,.et_pb_blog_0_tb_body .not-found-title{line-height:1.3em!important}.et_pb_section_3_tb_body.et_pb_section{background-color:#f6f7fb!important}.et_pb_text_2_tb_body h2{font-family:'Montserrat',sans-serif;font-weight:800;text-transform:uppercase;font-size:40px;color:#000000!important;letter-spacing:1px;line-height:1.2em}.et_pb_text_2_tb_body{margin-bottom:10px!important}.et_pb_blog_1_tb_body .et_pb_post .entry-title,.et_pb_blog_1_tb_body .not-found-title{font-size:17px!important;line-height:1.4em!important}@media only screen and (min-width:981px){.et_pb_blog_1_tb_body .post-content{margin-bottom:100px}}@media only screen and (max-width:980px){.et_pb_text_0_tb_body h1{font-size:40px}.et_pb_text_2_tb_body h2{font-size:32px}.et_pb_blog_1_tb_body .post-content{margin-bottom:150px}}@media only screen and (max-width:767px){.et_pb_text_0_tb_body h1{font-size:24px}.et_pb_text_2_tb_body h2{font-size:20px}.et_pb_blog_1_tb_body .post-content{margin-bottom:150px}}.et_pb_section_0_tb_body.et_pb_section{padding-bottom:0;background-color:#f6f7fb!important}.et_pb_text_0_tb_body h1{font-family:'Montserrat',sans-serif;font-weight:800;font-size:80px;color:#000000!important;letter-spacing:1px;line-height:1.2em}.et_pb_text_0_tb_body{margin-bottom:8px!important}.et_pb_blog_0_tb_body .et_pb_post .entry-title,.et_pb_blog_0_tb_body .not-found-title{line-height:1.3em!important}.et_pb_section_3_tb_body.et_pb_section{background-color:#f6f7fb!important}.et_pb_text_2_tb_body h2{font-family:'Montserrat',sans-serif;font-weight:800;text-transform:uppercase;font-size:40px;color:#000000!important;letter-spacing:1px;line-height:1.2em}.et_pb_text_2_tb_body{margin-bottom:10px!important}.et_pb_blog_1_tb_body .et_pb_post .entry-title,.et_pb_blog_1_tb_body .not-found-title{font-size:17px!important;line-height:1.4em!important}@media only screen and (min-width:981px){.et_pb_blog_1_tb_body .post-content{margin-bottom:100px}}@media only screen and (max-width:980px){.et_pb_text_0_tb_body h1{font-size:40px}.et_pb_text_2_tb_body h2{font-size:32px}.et_pb_blog_1_tb_body .post-content{margin-bottom:150px}}@media only screen and (max-width:767px){.et_pb_text_0_tb_body h1{font-size:24px}.et_pb_text_2_tb_body h2{font-size:20px}.et_pb_blog_1_tb_body .post-content{margin-bottom:150px}}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}