/* ==========================================================================
   Orbital Theme - App Sidebar Navigation Layout
   ========================================================================== */

:root {
    --sidebar-width: 250px;
    --sidebar-bg: #ffffff;
    --sidebar-border: #f1f2f6;
    --color-primary-purple: #7c3aed;
    --color-primary-purple-hover: #6d28d9;
    --color-purple-light: #f5f3ff;
    --color-purple-active: #ede9fe;
    --color-text-dark: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --radius-pill: 12px;
    --radius-btn: 10px;
}

/* Site Layout Wrapper */
.app-site-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    position: relative;
    box-sizing: border-box;
}

/* Main Content Area 100% Full Width */
.app-main-wrapper {
    flex: 1 1 0%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
}

.app-main-wrapper > main.site-main,
.app-main-wrapper > .site-main,
.app-main-wrapper #content {
    flex: 1 0 auto;
    width: 100% !important;
    max-width: 100% !important;
}

/* Full-width content container inside App Layout */
.app-main-wrapper .container,
.app-main-wrapper .container-fluid,
.app-main-wrapper #content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 1.5rem 2.5rem !important;
    box-sizing: border-box !important;
}

.app-main-wrapper .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
}

.app-main-wrapper .flex-fluid {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.app-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px 16px 24px 20px;
    box-sizing: border-box;
    z-index: 1000;
    overflow-y: auto;
    scrollbar-width: thin;
}

.app-sidebar::-webkit-scrollbar {
    width: 5px;
}
.app-sidebar::-webkit-scrollbar-thumb {
    background-color: #e5e7eb;
    border-radius: 10px;
}

/* Sidebar Brand / Logo */
.app-sidebar .sidebar-brand {
    margin-bottom: 28px;
    padding: 0 4px;
}

.app-sidebar .sidebar-brand a {
    display: inline-block;
    text-decoration: none;
    line-height: 1.25;
}

.app-sidebar .sidebar-brand .brand-text {
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary-purple);
    font-family: inherit;
}

.app-sidebar .sidebar-brand .brand-text span {
    color: #0284c7;
    display: block;
}

.app-sidebar .sidebar-brand img,
.app-sidebar .sidebar-brand .custom-logo,
.app-sidebar .sidebar-brand a img {
    max-width: 100%;
    width: auto;
    max-height: 80px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Sidebar Section Title (e.g. MENÚ) */
.sidebar-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 0 0 10px 6px;
    user-select: none;
}

/* Sidebar Search Box - Vibrant Modern Design */
.sidebar-search-wrap {
    margin-bottom: 16px;
    padding: 0 2px;
}

.sidebar-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #c084fc; /* Morado llamativo */
    border-radius: var(--radius-pill);
    padding: 4px 10px 4px 6px;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: text;
}

.sidebar-search-box:hover {
    border-color: #9333ea;
    box-shadow: 0 4px 14px rgba(147, 51, 234, 0.2);
    transform: translateY(-1px);
}

.sidebar-search-box:focus-within {
    background: #ffffff;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.2), 0 4px 14px rgba(124, 58, 237, 0.18);
    transform: translateY(-1px);
}

.search-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.sidebar-search-box:hover .search-icon-circle,
.sidebar-search-box:focus-within .search-icon-circle {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    transform: scale(1.05);
}

.sidebar-search-box .search-svg-icon {
    transition: stroke 0.2s ease;
}

.sidebar-search-box:hover .search-svg-icon,
.sidebar-search-box:focus-within .search-svg-icon {
    stroke: #ffffff !important;
}

.sidebar-search-input {
    width: 100%;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 6px 0 !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    font-family: inherit;
    box-shadow: none !important;
}

.sidebar-search-input::placeholder {
    color: #8b5cf6;
    opacity: 0.75;
    font-weight: 500;
}

.sidebar-search-box:focus-within .sidebar-search-input::placeholder {
    opacity: 0.45;
}

.sidebar-search-clear {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.15s;
}

.sidebar-search-clear:hover {
    color: var(--color-text-dark);
}

/* Hide any legacy or duplicate search form inside sidebar */
.app-sidebar .orbital-search-container,
.app-sidebar .mcptp-search-container,
.app-sidebar .widget_search,
.app-sidebar .site-search {
    display: none !important;
}

/* Navigation List */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-menu > li {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.18s ease-in-out;
    background: transparent;
    line-height: 1.4;
}

.sidebar-menu > li > a:hover {
    background-color: #f8fafc;
    color: var(--color-text-dark);
}

/* Active State */
.sidebar-menu > li.current-menu-item > a,
.sidebar-menu > li.current_page_item > a,
.sidebar-menu > li.current-menu-ancestor > a,
.sidebar-menu > li.active > a {
    background-color: var(--color-purple-active);
    color: var(--color-primary-purple);
    font-weight: 700;
}

/* Menu item with submenus */
.sidebar-menu .menu-item-has-children {
    position: relative;
}

.sidebar-menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 14px;
    cursor: pointer;
}

/* Dropdown chevron arrow */
.sidebar-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transform: rotate(45deg);
    transition: transform 0.22s ease, border-color 0.22s ease;
    margin-left: auto;
    margin-right: 2px;
}

.sidebar-menu .menu-item-has-children > a:hover::after {
    border-color: var(--color-primary-purple);
}

/* Arrow rotated when open */
.sidebar-menu .menu-item-has-children.is-open > a::after,
.sidebar-menu .menu-item-has-children.current-menu-ancestor > a::after,
.sidebar-menu .menu-item-has-children.current_page_ancestor > a::after {
    transform: rotate(-135deg);
    border-color: var(--color-primary-purple);
}

/* Submenu Dropdown in Sidebar - Collapsed by default */
.sidebar-menu .sub-menu {
    list-style: none;
    margin: 4px 0 6px 14px;
    padding: 0 0 0 10px;
    border-left: 2px solid #f1f2f6;
    display: none;
    flex-direction: column;
    gap: 2px;
}

/* Submenu shown when open or when active ancestor */
.sidebar-menu .menu-item-has-children.is-open > .sub-menu,
.sidebar-menu .menu-item-has-children.current-menu-ancestor > .sub-menu,
.sidebar-menu .menu-item-has-children.current_page_ancestor > .sub-menu {
    display: flex;
}

.sidebar-menu .sub-menu li a {
    display: block;
    padding: 6px 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.sidebar-menu .sub-menu li a:hover {
    color: var(--color-primary-purple);
    background-color: var(--color-purple-light);
}

.sidebar-menu .sub-menu li.current-menu-item a {
    color: var(--color-primary-purple);
    font-weight: 700;
    background-color: var(--color-purple-light);
}

/* Action Button: + CREAR */
.sidebar-action-wrap {
    margin-top: 12px;
    padding: 0 2px;
}

.btn-sidebar-create {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary-purple);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 12px 20px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.32);
    transition: all 0.2s ease-in-out;
    width: 100%;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
}

.btn-sidebar-create:hover {
    background: var(--color-primary-purple-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.btn-sidebar-create:active {
    transform: translateY(0);
}

.btn-sidebar-create .btn-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Main Content Area Header Compact Styling */
.app-main-wrapper .default-header {
    padding: 1.5rem 2.5rem 0.25rem 2.5rem !important;
    max-width: 100%;
}

.app-main-wrapper .default-header .container {
    padding: 0 !important;
}

.app-main-wrapper .default-header .category,
.app-main-wrapper .default-header .meta,
.app-main-wrapper .default-header .posted-on,
.app-main-wrapper .default-header .byline {
    display: none !important;
}

.app-main-wrapper .default-header .title,
.app-main-wrapper h1.title,
.app-main-wrapper .site-main h1 {
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0 !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.25;
}

.app-main-wrapper .default-header .subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Compact Content Spacing */
.app-main-wrapper #content-wrapper {
    padding-top: 0.75rem !important;
}

.app-main-wrapper .entry-content > p:first-child,
.app-main-wrapper .entry-content > p:first-of-type {
    margin-top: 0 !important;
}

.app-main-wrapper .entry-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Hide date, category, excerpt, author and read more on cards */
.entry-item .entry-date,
.entry-item .entry-category,
.entry-item .entry-author,
.entry-item .entry-meta,
.entry-item .entry-excerpt,
.entry-item .entry-read-more,
.entry-item a.read-more,
.entry-item a.more-link {
    display: none !important;
}

/* Hide Featured Thumbnail on Pages & Single Content */
.post-thumbnail,
.site-thumbnail,
.entry-content > .post-thumbnail,
.entry-content > .site-thumbnail,
.site-main .post-thumbnail {
    display: none !important;
}

/* ==========================================================================
   Compact Cards Grid (Estilo Referencia)
   ========================================================================== */

/* Grid General para Clusters y Archivos */
.app-main-wrapper .flex.flex-fluid,
.orbital-cluster .flex.flex-fluid,
.entry-content .flex.flex-fluid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    gap: 16px !important;
    margin: 1.25rem 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Entradas Relacionadas - 1 Sola Fila de 8 Tarjetas */
.entry-related .flex.flex-fluid {
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 1.25rem 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

@media screen and (max-width: 1200px) {
    .entry-related .flex.flex-fluid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media screen and (max-width: 680px) {
    .entry-related .flex.flex-fluid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

.app-main-wrapper .entry-item,
.entry-related .entry-item,
.orbital-cluster .entry-item {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: auto !important;
    padding: 8px !important;
    background: #ffffff !important;
    border: 1px solid #edf0f5 !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.22s ease-in-out !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
}

.app-main-wrapper .entry-item:hover,
.entry-related .entry-item:hover,
.orbital-cluster .entry-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09) !important;
    border-color: #ddd6fe !important;
}

.app-main-wrapper .entry-item .entry-header,
.entry-related .entry-item a,
.app-main-wrapper .entry-item a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.app-main-wrapper .entry-item img,
.entry-related .entry-item img,
.orbital-cluster .entry-item img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1.38 !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
    margin: 0 auto !important;
}

.app-main-wrapper .entry-item .entry-title,
.entry-related .entry-item .entry-title,
.orbital-cluster .entry-item .entry-title {
    font-size: 0.83rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 8px 2px 2px 2px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
}

.app-main-wrapper .entry-item:hover .entry-title,
.entry-related .entry-item:hover .entry-title {
    color: #7c3aed !important;
}

/* Mobile Topbar and Drawer Handling */
.app-mobile-topbar {
    display: none;
}

.sidebar-close-btn {
    display: none;
}

.app-sidebar-overlay {
    display: none;
}

/* Responsive Media Queries (< 1024px) */
@media screen and (max-width: 1023px) {
    .app-site-layout {
        flex-direction: column;
    }

    .app-mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: #ffffff;
        border-bottom: 1px solid var(--sidebar-border);
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .app-mobile-topbar .mobile-brand a {
        font-size: 1.18rem;
        font-weight: 800;
        color: var(--color-primary-purple);
        text-decoration: none;
    }

    .app-mobile-topbar .mobile-brand img {
        max-height: 40px;
        width: auto;
    }

    .mobile-nav-toggle {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        outline: none;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background-color: var(--color-text-dark);
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .app-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        z-index: 10000;
        box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #ffffff;
    }

    .app-sidebar.is-open {
        left: 0;
    }

    .sidebar-close-btn {
        display: block;
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 1.6rem;
        color: var(--color-text-light);
        cursor: pointer;
        padding: 4px 8px;
        margin-bottom: 10px;
        line-height: 1;
    }

    .sidebar-close-btn:hover {
        color: var(--color-text-dark);
    }

    .app-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        backdrop-filter: blur(2px);
    }

    .app-sidebar-overlay.is-open {
        display: block;
    }

    .app-main-wrapper .container,
    .app-main-wrapper #content-wrapper {
        padding: 1rem !important;
    }
}

/* ==========================================================================
   Flyout Search Drawer (Estilo Canva / Lateral)
   ========================================================================== */

.app-search-drawer {
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    width: 360px;
    max-width: calc(100vw - var(--sidebar-width));
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #eef0f4;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    transform: translateX(calc(-100% - var(--sidebar-width) - 20px));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.app-search-drawer.is-open {
    transform: translateX(0);
}

/* Header inside drawer */
.search-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f2f6;
    background: #ffffff;
}

.search-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-drawer-title h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.search-drawer-close {
    background: #f1f5f9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
}

.search-drawer-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.05);
}

/* Drawer Toggle Tab (Boton flecha estilo Canva a la derecha) */
.search-drawer-toggle-tab {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: none;
    border-radius: 0 10px 10px 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    z-index: 10;
}

.search-drawer-toggle-tab:hover {
    background: #f8fafc;
    color: var(--color-primary-purple);
}

/* Body of drawer */
.search-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    overscroll-behavior: contain;
}

.search-drawer-status {
    padding: 20px 10px;
    text-align: center;
}

.search-drawer-hint {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

.drawer-search-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.88rem;
}

.drawer-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--color-primary-purple);
    border-radius: 50%;
    animation: drawerSpin 0.7s linear infinite;
}

@keyframes drawerSpin {
    to { transform: rotate(360deg); }
}

.drawer-empty-state {
    padding: 30px 10px;
    text-align: center;
}

.drawer-empty-state .empty-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}

.drawer-empty-state h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #334155;
}

.drawer-empty-state p {
    font-size: 0.84rem;
    color: #94a3b8;
    margin: 0;
}

/* 2-Column Results Grid */
.search-drawer-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.drawer-result-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    padding: 6px;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.drawer-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #ddd6fe;
}

.drawer-card-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.drawer-card-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.38;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.drawer-card-cat {
    display: none !important;
}

.drawer-card-title {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 6px 2px 2px 2px !important;
    line-height: 1.25 !important;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-result-card:hover .drawer-card-title {
    color: var(--color-primary-purple) !important;
}

/* Search Backdrop Overlay - Transparent (No Darkening / No Blur) */
.app-search-backdrop {
    display: none !important;
}

/* Mobile Adjustments for Search Drawer (< 1024px) */
@media screen and (max-width: 1023px) {
    .app-search-drawer {
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        z-index: 10050;
    }

    .app-search-drawer.is-open {
        transform: translateY(0);
    }

    .search-drawer-toggle-tab {
        display: none;
    }
}

