/* =========================================
   ACME LMS Header Styles (Udemy Clone)
   ========================================= */

:root {
    --acme-header-height: 72px;
    --acme-bg-white: #ffffff;
    --acme-text-primary: #2d2f31;
    --acme-text-secondary: #6a6f73;
    --acme-brand-color: #a435f0;
    /* Udemy Purple accent, can change to ACME Brand */
    --acme-border-color: #d1d7dc;
    --acme-btn-hover: #f7f9fa;
    --acme-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    /* Subtle shadow like Udemy */
    --acme-font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    /* Modern stack */
}

/* Base Reset for Header */
.acme-main-header {
    background-color: transparent;
    /* Start Transparent */
    height: var(--acme-header-height);
    /* box-shadow: var(--acme-shadow); REMOVED for transparent state */
    position: fixed;
    /* Sticky/Fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: var(--acme-font-family);
    color: #ffffff;
    /* Default Text White */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* Scrolled State (White Background) */
.acme-main-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.acme-header-container {
    max-width: 1340px;
    /* Aligned with Main Content Grid */
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Logo Left, Nav Right */
    padding: 0 20px;
    /* Aligned with Grid Padding */
    gap: 16px;
    width: 100%;
    /* Ensure full width */
}

/* 1. Mobile Toggle */
.acme-mobile-toggle {
    display: none;
    /* Hidden on Desktop */
    background: transparent !important;
    border: none;
    padding: 12px;
    /* Increased from 8px to 12px for 48x48px total (24px icon + 24px padding) */
    min-width: 48px;
    min-height: 48px;
    cursor: pointer;
    color: var(--acme-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acme-mobile-toggle:hover {
    color: #2271b1 !important;
    background: transparent !important;
}

/* Scrolled State for Mobile Toggle */
.acme-main-header.is-scrolled .acme-mobile-toggle {
    color: #000c29 !important;
    background: transparent !important;
}

.acme-main-header.is-scrolled .acme-mobile-toggle:hover {
    color: #2271b1 !important;
}

/* 2. Logo */
.acme-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.acme-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Dual Logo Logic */
.acme-main-logo {
    display: block;
    max-height: 40px;
    /* Reduced from 48px */
    width: auto;
    transition: opacity 0.3s ease;
}

.acme-sticky-logo {
    display: none;
    /* Hidden by default */
    max-height: 40px;
    /* Reduced from 48px */
    width: auto;
}

/* Scrolled State: Swap Logos */
.acme-main-header.is-scrolled .acme-main-logo {
    display: none;
}

.acme-main-header.is-scrolled .acme-sticky-logo {
    display: block;
    /* IMPORTANT: Since we are using the same white-text logo file for now, 
       we invert it to make it black for the white sticky header. 
       If a separate dark logo file is used, remove this filter. */
    filter: invert(1) brightness(0);
}

.acme-logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    /* Start White */
    line-height: 1;
    transition: color 0.3s ease;
}

/* Scrolled Logo Color (Text Fallback) */
.acme-main-header.is-scrolled .acme-logo-text {
    color: #000c29;
}

.acme-logo-text .highlight {
    /* Optional brand color */
}

/* ===========================
   GLOBAL HIDING (User Requested)
   =========================== */
/* .acme-mobile-toggle, */
.acme-categories-trigger,
.acme-cart-link,
.acme-auth-buttons,
.acme-lang-btn {
    display: none;
    /* Removed !important to allow overrides */
}

/* 3. Categories Link */
.acme-categories-trigger {
    display: none;
    /* User requested removal on desktop */
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--acme-text-primary);
    padding: 0 8px;
    transition: color 0.2s;
}

.acme-categories-trigger:hover {
    color: var(--acme-brand-color);
}

/* 4. Search Trigger (Icon Only - Refined) */
.acme-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    /* Force transparent as requested */
    border: none;
    padding: 8px;
    /* Slightly reduced padding for 'small' feel */
    cursor: pointer;
    color: #ffffff;
    /* Start White on Transparent Header */
    transition: all 0.2s ease;
    border-radius: 50%;
    margin-right: 8px;
}

.acme-search-trigger:hover {
    background: transparent !important;
    /* Ensure no bg on hover */
    transform: scale(1.1);
    color: #2271b1 !important;
    /* User requested color */
}

.acme-search-trigger svg {
    width: 20px;
    height: 20px;
    stroke-width: 3px;
}

/* Scrolled State for Search Trigger (Desktop) */
.acme-main-header.is-scrolled .acme-search-trigger {
    color: #000c29 !important;
}

.acme-main-header.is-scrolled .acme-search-trigger:hover {
    background: transparent !important;
    color: #2271b1 !important;
}

/* 4b. Mobile Search Trigger (Mirrors Hamburger) */
.mobile-search-trigger {
    background: transparent !important;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--acme-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-trigger:hover {
    color: #2271b1 !important;
    background: transparent !important;
}

.acme-main-header.is-scrolled .mobile-search-trigger {
    color: #000c29 !important;
    background: transparent !important;
}

.acme-main-header.is-scrolled .mobile-search-trigger:hover {
    color: #2271b1 !important;
}

/* 5. Desktop Nav (Categories etc) */
.acme-desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto !important;
    /* Force to Right */
}

.acme-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
    /* Increased gap for cleaner look */
}

.acme-nav-list li a {
    text-decoration: none;
    color: #ffffff;
    /* Start White */
    font-size: 15px;
    /* Slightly larger for readability */
    font-weight: 600;
    transition: color 0.2s;
}

/* Hover State (Transparent Header) */
.acme-nav-list li a:hover {
    color: #3f91c6;
}

/* Scrolled State Colors */
.acme-main-header.is-scrolled .acme-nav-list li a {
    color: #000c29;
}

.acme-main-header.is-scrolled .acme-nav-list li a:hover {
    color: #3f91c6;
    /* Keep hover color consistent or change if needed */
}

/* 6. User Actions */
.acme-user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Margin already handled by nav margin-left: auto ??
       Actually if nav is auto, actions are right of nav. */
}

.acme-header-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--acme-text-primary);
    padding: 8px;
    display: flex;
    /* Center SVG */
    transition: color 0.2s;
}

.acme-header-btn:hover {
    color: var(--acme-brand-color);
}

/* ===========================
   DROPDOWN SUBMENU STYLES
   (Matches acmeitcentre.in)
   =========================== */

/* Parent Menu Item Position */
.acme-nav-list li.menu-item-has-children {
    position: relative;
    padding-right: 14px;
    /* Space for arrow */
}

/* Dropdown Arrow Indicator */
/* Dropdown Arrow Indicator (SVG Mask) */
.acme-nav-list li.menu-item-has-children>a:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat center;
    mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0.9;
}

/* The Submenu Container */
.acme-nav-list .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 260px;

    /* Modern Glassmorphism (Very Less Transparency as requested -> High Opacity) */
    /* Dark Glassmorphism (Matches Hero Testimonial) */
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Modern Shadow & Shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    /* Inner padding for floating items */
    margin: 29px 0 0 0;
    list-style: none;
    z-index: 1000;

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.acme-nav-list .sub-menu::before {
    content: "";
    position: absolute;
    top: -29px;
    left: 0;
    width: 100%;
    height: 29px;
    background: transparent;
}

/* Show Submenu on Hover */
.acme-nav-list li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Fix for potential theme interference on UL */
.acme-nav-list ul.sub-menu {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Submenu Items */
.acme-nav-list .sub-menu li {
    width: 100%;
    border-bottom: none;
    /* No borders as requested */
    margin-bottom: 2px;
}

.acme-nav-list .sub-menu li:last-child {
    margin-bottom: 0;
}

/* Submenu Links */
.acme-nav-list .sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    /* Rounded items */
}

/* Hover State for Submenu Items */
.acme-nav-list .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Subtle Brand Tint */
    color: #ffffff !important;
    border: none;
    padding-left: 20px;
    /* Subtle shift */
    transform: translateX(4px);
}

/* Override Header Color Changes for Submenu (Always Keep Dark/Light Blue theme) */
.acme-main-header.is-scrolled .acme-nav-list .sub-menu li a {
    color: rgb(66, 66, 66);
    /* Keep default dark */
}

.acme-main-header.is-scrolled .acme-nav-list .sub-menu li a:hover {
    color: #ffffff;
}

.acme-cart-link {
    display: none;
    /* Hidden on Desktop */
    background: none;
    border: none;
    cursor: pointer;
    color: var(--acme-text-primary);
    padding: 8px;
}

.acme-auth-buttons {
    display: none;
    /* Hidden on Desktop */
}

.acme-lang-btn {
    display: none;
    /* Hidden on Desktop */
}

.acme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid var(--acme-text-primary);
    transition: all 0.2s;
    white-space: nowrap;
}

/* Ghost Button (Log in) */
.acme-btn-ghost {
    background: white;
    color: var(--acme-text-primary);
}

.acme-btn-ghost:hover {
    background-color: var(--acme-btn-hover);
}

/* Primary Button (Sign up) */
.acme-btn-dark {
    background: var(--acme-text-primary);
    color: white;
}

.acme-btn-dark:hover {
    background-color: #000;
    /* Darker black */
}

/* Hidden Utilities */
.visible-mobile-only,
.visible-tablet-only {
    display: none !important;
}

.hidden-mobile {
    /* Standard utility */
}

/* ===========================
   RESPONSIVE: Tablet & Mobile
   =========================== */
@media (max-width: 1024px) {

    .visible-mobile-only,
    .visible-tablet-only {
        display: flex !important;
    }

    .hidden-mobile,
    .hidden-tablet {
        display: none !important;
    }

    /* Breakpoint for Tablet */

    /* Hide Desktop Nav on Mobile/Tablet since we use Drawer now */
    .acme-desktop-nav {
        display: none !important;
    }

    /* Center Logo on Mobile/Tablet */
    .acme-logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
        z-index: 5;
    }

    .acme-header-container {
        position: relative;
        justify-content: space-between;
        padding: 0 16px;
        flex-wrap: nowrap;
        /* Prevent wrapping since logo is absolute */
    }

    /*
    .acme-mobile-toggle {
        display: block;
        /* Show Hamburger */
    /*}

    .acme-categories-trigger,
    .acme-desktop-nav,
    .hidden-mobile,
    .acme-auth-buttons,
    /* Hide auth buttons text on tablet? or Keep them? */
    /*.acme-lang-btn {
        display: none !important;
    }

    /* Restore Cart on Mobile/Tablet if user wants it */
    /*.acme-cart-link {
        display: block;
        /* Or flex if it was flex */
    /*}

    /* Keep Search on Tablet? Usually Udemy hides expansive search and makes it a button on smaller screens.
       Let's hide the big search and show the icon trigger */
    /*.acme-search-wrapper {
        display: none;
    }

    /* Make Search Icon visible */
    .visible-mobile-only {
        display: flex;
    }

    .acme-header-container {
        padding: 0 16px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    /* Ensure only Hamburger, Logo, SearchIcon, Cart are visible */
}

/* Extra Mobile Tweaks (Phones) */
@media (max-width: 600px) {
    :root {
        --acme-header-height: 56px;
    }

    .acme-logo-text {
        font-size: 18px;
        /* Slightly smaller logo */
    }
}


/* ===========================
   MOBILE DRAWER (Side Menu)
   =========================== */
.acme-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 47, 49, 0.8);
    /* Dark Overlay */
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.acme-mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.acme-mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    /* Start off-screen */
    width: 280px;
    height: 100%;
    /* Glassmorphism Dark Blue #000c29 */
    background: rgba(0, 12, 41, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.acme-mobile-drawer.is-active {
    transform: translateX(280px);
    /* Slide in */
}

.acme-drawer-header {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    /* Slightly darker header background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.acme-drawer-welcome-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acme-drawer-close {
    position: absolute;
    top: 16px;
    left: 100%;
    margin-left: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Glassmorphic Style - White per Screenshot */
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;

    color: #000c29;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    /* Animation & Visibility State */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    /* Slide in effect */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2200;
}

/* Show button when drawer is active */
.acme-mobile-drawer.is-active .acme-drawer-close {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.acme-drawer-close:hover {
    background: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.acme-drawer-close svg {
    /* Larger icon size */
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    stroke: #000c29 !important;
    /* Force color visibility */
    color: #000c29 !important;
}

.acme-drawer-close:hover svg {
    stroke: #000c29 !important;
    /* Keep it dark on hover */
    color: #000c29 !important;
}

/* On very small screens, keep existing fail-safe but fix visibility there too */
@media (max-width: 380px) {
    .acme-drawer-close {
        left: auto;
        right: 16px;
        top: 16px;
        margin-left: 0;
        background: rgba(0, 0, 0, 0.05);
        /* Subtle on white */
        color: #333;
    }
}

/* Submenu in Drawer */
.acme-drawer-list .sub-menu {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 5px 0 0 0;
    display: none;
    /* COLLAPSED BY DEFAULT */
    /* border-left: 2px solid rgba(255, 255, 255, 0.2); REMOVED */
}

.acme-drawer-list li.is-open>.sub-menu {
    display: block !important;
    /* Show when parent has is-open */
}

.acme-drawer-list .sub-menu li {
    margin-bottom: 12px;
}

.acme-drawer-list .sub-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Accordion Arrow Animation */
.acme-drawer-submenu-toggle .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.acme-drawer-submenu-toggle .arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.acme-drawer-list li.is-open>a .arrow {
    transform: rotate(90deg);
}

.acme-drawer-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

/* Tablet Drawer Width Fix */
@media (min-width: 600px) and (max-width: 1024px) {
    .acme-mobile-drawer {
        width: 50vw;
        left: -50vw;
    }

    .acme-mobile-drawer.is-active {
        transform: translateX(50vw);
        /* Slide in by 50vw */
    }
}

.acme-drawer-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acme-drawer-auth-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--acme-brand-color);
    text-decoration: none;
}

.acme-drawer-divider {
    border: 0;
    border-top: 1px solid var(--acme-border-color);
    margin: 16px 0;
}

.acme-drawer-section-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.acme-drawer-list li {
    margin-bottom: 16px;
}

.acme-drawer-list li a {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}



.acme-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    text-align: center;
}

.acme-drawer-footer a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.acme-drawer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    line-height: 1.5;
}

/* ===========================
   FULL SCREEN SEARCH OVERLAY
   =========================== */
.acme-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Dark tint */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acme-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.acme-search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    color: #000c29;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.acme-search-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    transition: transform 0.3s ease;
    stroke: #000c29 !important;
    /* Force color */
    color: #000c29 !important;
}

.acme-search-close:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.acme-search-close:hover svg {
    transform: rotate(90deg);
    stroke: #000c29 !important;
    /* Force color on hover */
    color: #000c29 !important;
}

.acme-search-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acme-search-overlay.is-active .acme-search-container {
    transform: translateY(0);
}

.acme-search-hero-form {
    position: relative;
    width: 100%;
}

.acme-search-hero-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    padding: 20px 0;
    outline: none;
    text-align: center;
    transition: border-color 0.3s;
}

.acme-search-hero-input:focus {
    border-color: white;
}

.acme-search-hero-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.acme-search-hero-input.typing-active {
    caret-color: transparent;
}

.acme-search-instruction {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}