/* ============================================================================
   COMPONENT: header language & currency selectors + WK language text links
   (A10) - STRUCTURE tier - from the global files, original order. BASE-LINKED
   x8 (the selectors render in every header). Migrated 2026-07-06.
   PHASE-A FIDELITY: verbatim relocation.
   ========================================================================= */

.top_dropdown_custom_dropdown_container_box {
	position: relative;
	display: inline-block;
  }

.top_dropdown_custom_dropdown_container_box.open .top_dropdown_menu_list_block {
    display: block;
}

button.top_dropdown_toggle_button_main_style.open {
    background-color: #FFFCF3;
    color: #504943;
    border-radius: 7px 7px 0 0;
}

.side_nav .top_dropdown_toggle_button_main_style {
    color: #3e342a;
}

.top_dropdown_toggle_button_main_style {
    padding: 8px;
    font-size: 14px;
    background-color: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    position: relative;
    display: flex;
    gap:8px;
    align-items: center;
    justify-content: space-between;
}

.top_dropdown_toggle_button_main_style::after {
    content: "\f078"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    transition: transform 0.3s ease;
}

.top_dropdown_toggle_button_main_style.open::after {
    transform: rotate(180deg);
}

.top_dropdown_menu_list_block {
    display: none;
    position: absolute;
    border-radius: 0 7px 7px 7px;
    background: #FFFCF3;
    /* border: 1px solid #ddd; */
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
min-width: 170px;
    padding: 0;
    margin: 0;
    width:fit-content;
}

.topright_side  .top_dropdown_item_button_clickable {
    display: block;
    width: 100%;
    padding: 5px 12px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    color: #504943;
    display: flex;
    align-items: center;
    gap: 10px;
	
}

.top_dropdown_item_button_clickable img {
    width: 25px;
    height: 17px;
}

img.top_dropdown_flag_icon_image_style {
    border-radius: 3px;
}

.top_dropdown_item_button_clickable:hover {
	background: #EDE9DE;
  }

.top_dropdown_custom_dropdown_container_box.open {
	z-index: 1001;
}

/* -- A10 second pass (2026-07-06): the ACTIVE-state class is added conditionally
   in the template ({% if %}), so the census missed it (RULE 13 variant) -- */

.top_dropdown_item_active_selected_style {
	background: #EDE9DE;
  }

