/* =========================================
   ASH KT HEADER CONTROLS
========================================= */

.ashkt-night-mode,
.ashkt-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #D3DEE8;
    border-radius: 10px;

    background: #F8FAFC;
    color: #1F2937;

    cursor: pointer;
    box-sizing: border-box;
}

/* =========================================================
   ASH KT — SEARCH BUTTON
   ========================================================= */

.ashkt-search-toggle {
    width: 44px;
    height: 44px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #abb7c3;
    border-radius: 50px;

    

    background: var(--ashkt-white);
    color: var(--ashkt-heading);

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.ashkt-search-icon {
    font-size: 20px;
    line-height: 1;
}

.ashkt-search-toggle:hover {
    background: var(--ashkt-primary);
    color: var(--ashkt-white);
}


/* =========================================================
   ASH KT — SEARCH BOX
   ========================================================= */

.ashkt-search-box {
    display: none;

    width: 200px;
}

.ashkt-search-box form {
    display: flex;
    align-items: stretch;

    width: 100%;
}

.ashkt-search-box input[type="search"] {
    flex: 1;

    min-width: 0;

    height: 42px;

    padding: 0 14px;

    color: var(--ashkt-heading);

    border: 1px solid var(--ashkt-border);
    border-right: 0;

    border-radius: 50px;

    outline: none;
}

.ashkt-search-box input[type="search"]::placeholder {
    color: var(--ashkt-text);
}

.ashkt-search-box form > button {
    width: 42px;

    border: 1px solid var(--ashkt-primary);

    background: var(--ashkt-primary);
    color: var(--ashkt-white);

    cursor: pointer;
}

.ashkt-search-submit-icon {
    font-size: 18px;
}


/* =========================================
   HEADER CONTROLS
========================================= */

.ashkt-header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   NIGHT MODE ICON
========================================= */

.ashkt-night-mode .ashkt-night-icon {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;
}

/* =========================================
   MENU ICON
========================================= */

.ashkt-menu-icon {
    width: 20px;
    height: 18px;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
}

.ashkt-menu-icon i {
    display: block;

    width: 15px;
    height: 2px;
    min-width: 15px;
    max-width: 15px;
    min-height: 2px;
    max-height: 2px;

    padding: 0;
    margin: 0;

    background: currentColor;

    border: 0;
    border-radius: 2px;

    box-sizing: border-box;

    flex: 0 0 1px;
}