Search section in Header - to move to the left

I would like to move my search icon/section to the left of my page in the header

www.thebodyshop.ca

datsau

Here is my header code

{%- liquid
  assign animation_name = 'drawer-items-fade'
  assign animation_duration = 500
  assign animation_delay = 0
  assign animation_delay_increment = 50

  assign toolbar_block = section.blocks | where: "type", "toolbar"
  assign toolbar_block = toolbar_block[0]
  assign show_toolbar_socials = false
  assign show_toolbar_gift_card = toolbar_block.settings.show_gift_card | default: false
  assign show_separator_line = section.settings.show_separator_line
  assign border_color = section.settings.header_border_color
  assign show_socials = false

  assign padding_top = section.settings.padding_top
  assign padding_top_medium = padding_top | times: 0.8
  assign padding_top_mobile = padding_top | times: 0.6
  assign padding_bottom = section.settings.padding_bottom
  assign padding_bottom_medium = padding_bottom | times: 0.8
  assign padding_bottom_mobile = padding_bottom | times: 0.6

  assign menu_height_default = 47
  assign menu_height_medium_default = 42
  assign menu_height_mobile_default = 42
  assign header_icons_height = 34
  assign toolbar_height = 0

  assign transparent_header = false
  if template contains 'collection' and collection.image and section.settings.transparent_collection
    assign transparent_header = true
  elsif template contains 'article' and section.settings.transparent_article
    assign transparent_header = true
  elsif template == 'index' and section.settings.transparent_home
    assign transparent_header = true
  elsif template.name == 'page' and section.settings.transparent_page
    assign transparent_header = true
  elsif template.name == 'product' and section.settings.transparent_product_page
    assign transparent_header = true
  endif

  assign main_menu_linklist = section.settings.main_menu_linklist | default: 'main-menu'
  assign mobile_menu_linklist = section.settings.mobile_menu_linklist
  assign secondary_menu_linklist = section.settings.secondary_menu_linklist
  assign tertiary_menu_linklist = section.settings.tertiary_menu_linklist
  assign has_mobile_menu = false
  if mobile_menu_linklist != blank and linklists[mobile_menu_linklist].links.size > 0 and mobile_menu_linklist != main_menu_linklist
    assign has_mobile_menu = true
  endif

  assign logo = section.settings.logo
  assign transparent_logo = section.settings.transparent_logo

  if template.name == 'product' and section.settings.transparent_product_page
    assign transparent_logo = section.settings.transparent_logo_pdp
  endif

  if transparent_logo != blank and logo == blank
    assign logo = transparent_logo
  endif

  assign logo_width = section.settings.logo_max_limit
  assign logo_width_15x = logo_width | times: 1.5 | round
  assign logo_width_2x = logo_width | times: 2 | round
  assign logo_width_mobile = section.settings.logo_max_limit_mobile
  assign logo_width_mobile_15x = logo_width_mobile | times: 1.5 | round
  assign logo_width_mobile_2x = logo_width_mobile | times: 2 | round
  assign logo_sizes = '(min-width: 750px) ' | append: logo_width | append: 'px, (min-width: ' | append: logo_width_mobile_2x | append: 'px) ' | append: logo_width_mobile | append: 'px, calc((100vw - 64px) * 0.5)'
  assign logo_widths = logo_width | append: ',' | append: logo_width_15x | append: ',' | append: logo_width_2x | append: ',' | append: logo_width_mobile | append: ',' | append: logo_width_mobile_15x | append: ',' | append: logo_width_mobile_2x

  if logo != blank
    assign logo_denom = logo.aspect_ratio | default: 1
    assign logo_height = logo_width | divided_by: logo_denom
    assign logo_height_mobile = logo_width_mobile | divided_by: logo_denom
    assign menu_height = logo_height | at_least: menu_height_default
    assign menu_height_medium = logo_height | at_least: menu_height_medium_default
    assign menu_height_mobile = logo_height_mobile | at_least: menu_height_mobile_default
    assign header_height = menu_height | floor | plus: padding_top | plus: padding_bottom
    assign header_height_medium = menu_height_medium | floor | plus: padding_top_medium | plus: padding_bottom_medium
    assign header_height_mobile = menu_height_mobile | floor | plus: padding_top_mobile | plus: padding_bottom_mobile
    assign logo_padding = 1 | divided_by: logo_denom | times: 100 | append: '%'
  else
    assign header_height = menu_height_default | plus: padding_top | plus: padding_bottom
    assign header_height_medium = menu_height_medium_default | plus: padding_top_medium | plus: padding_bottom_medium
    assign header_height_mobile = menu_height_mobile_default | plus: padding_top_mobile | plus: padding_bottom_mobile
    assign logo_width = 'auto'
  endif

  if section.settings.header_style contains 'logo_above'
    assign header_upper_height = logo_height | at_least: header_icons_height
    assign header_upper_height_mobile = logo_height_mobile | at_least: menu_height_mobile_default
    assign header_height = header_upper_height | plus: menu_height_default | plus: padding_top | plus: padding_bottom
    assign header_height_medium = header_upper_height | plus: padding_top_medium | plus: padding_bottom_medium
    assign header_height_mobile = header_upper_height_mobile | plus: padding_top_mobile | plus: padding_bottom_mobile
  endif

  if tertiary_menu_linklist != blank and linklists[tertiary_menu_linklist].links.size > 0
    assign tertiary_menu_height = 0.75 | times: settings.nav_font_size | times: 1.2 | plus: 32
    assign header_height_mobile = header_height_mobile | plus: tertiary_menu_height
  endif

  if toolbar_block
    assign toolbar_height = 2.25 | times: settings.nav_font_size

    assign header_height = header_height | plus: toolbar_height
    assign header_height_medium = header_height_medium | plus: toolbar_height
    assign header_height_mobile = header_height_mobile | plus: toolbar_height
  endif

  assign cart_item_count = cart.item_count
  assign cart_icon_as_circle = section.settings.icon_as_circle

  if cart_item_count > 9
    assign cart_item_count = '9+'
  endif

  assign cart_icon_family = section.settings.cart_icon_family
  assign show_icons = section.settings.show_icons
  assign icon_string_cart = 'icon-' | append: cart_icon_family

  capture navlink_cart_classes
    echo 'navlink--cart'

    if cart_icon_as_circle
      echo ' navlink--cart--circle'
    endif

    if cart_icon_as_circle == false and show_icons
      echo ' navlink--cart--icon'
    elsif cart_icon_as_circle == false and show_icons == false
      echo ' navlink--cart--text'
    endif

    if show_icons == false
      echo ' navlink--toplevel'
    endif
  endcapture

  assign highlight_item = section.settings.highlight_item
  assign highlight_item_color = section.settings.highlight_item_color

  capture highlight_style
    if highlight_item_color != 'rgba(0,0,0,0)' and highlight_item_color != ''
      echo 'style="--highlight: ' | append: highlight_item_color | append: ';"'
    endif
  endcapture
-%}

{%- if section.settings.show_social_icons -%}
  {%- if settings.instagram_link != ''
    or settings.pinterest_link != ''
    or settings.facebook_link != ''
    or settings.twitter_link != ''
    or settings.youtube_link != ''
    or settings.tiktok_link != ''
    or settings.linkedin_link != ''
    or settings.vimeo_link != ''
    or settings.tumblr_link != ''
    or settings.snapchat_link != ''
    or settings.feed_link != '' -%}
    {%- assign show_socials = true -%}
  {%- endif -%}
{%- endif -%}

{%- style -%}
  :root {
    --HEADER-HEIGHT: {{ header_height }}px;
    --HEADER-HEIGHT-MEDIUM: {{ header_height_medium }}px;
    --HEADER-HEIGHT-MOBILE: {{ header_height_mobile }}px;

    {% comment %} --icon-add-cart variable is used on PGI and Product upsell block {% endcomment %}
    {%- if cart_icon_family == 'bag' -%}
      --icon-add-cart: var(--ICON-ADD-BAG);
    {%- else -%}
      --icon-add-cart: var(--ICON-ADD-CART);
    {%- endif -%}
  }

  .theme__header {
    --PT: {{ padding_top }}px;
    --PB: {{ padding_bottom }}px;

    {% if show_separator_line %}
      {% unless border_color.alpha == 0.0 or border_color == blank %}
        --border-color: {{ border_color }};
      {% endunless %}
      --border-opacity: {{ section.settings.separator_opacity | times: 0.01 }};
    {% endif %}
  }

  {%- if logo != blank -%}
    .header__logo__link {
      --logo-padding: {{ logo_padding }};
      --logo-width-desktop: {{ logo_width }}px;
      --logo-width-mobile: {{ logo_width_mobile }}px;
    }
  {%- endif -%}

  {%- unless transparent_header -%}
    .main-content > .shopify-section:first-of-type .backdrop--linear:before { display: none; }
  {%- endunless -%}
{%- endstyle -%}

{%- capture toolbar -%}
  {%- render 'header-toolbar' block: toolbar_block -%}
{%- endcapture -%}

{%- capture logos -%}
  {%- if transparent_header and transparent_logo != blank and logo != blank -%}
    {%- assign has_transparent_logo = true -%}
  {%- endif -%}
  
    
      {%- if logo != blank -%}
        {%- liquid
          assign alt = logo.alt | default: shop.name | strip_html | escape
          render 'image' image: logo, width: logo_width_2x, sizes: logo_sizes, widths: logo_widths, aspect_ratio: logo_denom, alt: alt, modifier: 'logo__img logo__img--color', fetchpriority: 'high', preload: true, show_backfill: false
        -%}
      {%- else -%}
        {%- liquid
          assign classes = ''
          assign title_length = shop.name | size
          assign oneword = true
          if shop.name contains ' ' or shop.name contains '-'
            assign oneword = false
          endif
          if title_length > 15
            assign classes = classes | append: ' header__logo__text--long'
            if oneword
              assign classes = classes | append: ' header__logo__text--break'
            endif
          endif
        -%}
        

          {{ shop.name }}
        

      {%- endif -%}

      {%- liquid
        if has_transparent_logo
          assign alt = transparent_logo.alt | default: shop.name | strip_html | escape
          render 'image' image: transparent_logo, width: logo_width_2x, sizes: logo_sizes, widths: logo_widths, aspect_ratio: transparent_logo.aspect_ratio, alt: alt, modifier: 'logo__img logo__img--transparent', fetchpriority: 'high', preload: true, show_backfill: false
        endif
      -%}
    
  

{%- endcapture -%}

{%- capture cart_status -%}
  
    {{ 'layout.header.cart' | t }}

    
      

      {%- if cart_icon_as_circle == false -%}
        {%- render 'header-icon', filename: icon_string_cart -%}
      {%- endif -%}
    
  

{%- endcapture -%}

{%- capture cta -%}
  {%- if section.settings.button_text != blank -%}
    
      
        {{ section.settings.button_text | escape }}
      
    

  {%- endif -%}
{%- endcapture -%}

{%- liquid
  assign languages = false
  assign countries = false
  assign header_popouts = false

  assign show_locale_selector = section.settings.show_locale_selector
  assign show_locale_selector_toolbar = toolbar_block.settings.show_locale_selector

  assign show_country_selector = section.settings.show_country_selector
  assign show_country_selector_toolbar = toolbar_block.settings.show_country_selector

  assign show_country_name = section.settings.show_country_name
  assign show_country_name_toolbar = toolbar_block.settings.show_country_name

  assign show_country_flag = section.settings.show_country_flag
  assign show_country_flag_toolbar = toolbar_block.settings.show_country_flag

  if show_locale_selector and localization.available_languages.size > 1
    assign languages = true
  endif

  if show_locale_selector_toolbar and localization.available_languages.size > 1
    assign languages_toolbar = true
  endif

  if show_country_selector and localization.available_countries.size > 1
    assign countries = true
  endif

  if show_country_selector_toolbar and localization.available_countries.size > 1
    assign countries_toolbar = true
  endif

  if languages or countries
    assign header_popouts = true
  endif

  if languages or languages_toolbar or countries or countries_toolbar
    assign header_popouts_mobile = true
  endif
-%}

{%- capture minimal -%}

  
  

    
  
    

      
    

    
    {%- if section.settings.enable_search -%}
      
        
      

    {%- endif -%}
  

  {{ logos }}

  
    {{ cta }}

    {%- if header_popouts -%}
      {%- assign unique = section.id | append: '-header-mobile-top' -%}
      

        {%- render 'localization' unique: unique, show_locale_selector: show_locale_selector, show_country_selector: show_country_selector, show_country_flag: show_country_flag, show_country_name: show_country_name, class: 'header', unique: section.id, short_country_name: true -%}
      

    {%- endif -%}

    {%- if shop.customer_accounts_enabled -%}
      
        
          {%- render 'icon-profile-circled' -%}
          {{ 'layout.header.account' | t }}
        
      

    {%- endif -%}
    
      
        {{ cart_status }}
      
    

  

  {%- if tertiary_menu_linklist != blank and linklists[tertiary_menu_linklist].links.size > 0 -%}
    
      
    

  {%- endif -%}
{%- endcapture -%}

{%- capture buttons -%}

{%- if section.settings.enable_search -%}
      
        
      

    {%- endif -%}

  
  
    {%- if section.settings.header_style != 'logo_above' -%}
      {{ cta }}

      {%- if show_socials  -%}
        

          {%- render 'social-icons' -%}
        

      {%- endif -%}
    {%- endif -%}

    {%- if header_popouts -%}
      {%- assign unique = section.id | append: '-header-desktop' -%}

      
        {%- render 'localization' unique: unique, show_locale_selector: show_locale_selector, show_country_selector: show_country_selector, show_country_flag: show_country_flag, show_country_name: show_country_name, class: 'header', short_country_name: true -%}
      

    {%- endif -%}

    {%- if shop.customer_accounts_enabled -%}
      
        
          {%- render 'icon-profile-circled' -%}
          {{ 'layout.header.account' | t }}
        
      

    {%- endif -%}

    

 

{%- render 'icon-location' -%}
 

 

    

    
      
        {{ cart_status }}
      
    

  

{%- endcapture -%}

{%- capture menu -%}
  
{%- endcapture -%}

{%- capture drawer -%}
  
{%- endcapture -%}

{%- if show_toolbar -%}
  
{%- endif -%}

  

  {{ drawer }}

{%- if template.name == 'index' -%}
  {%- assign potential_action_target = shop.url | append: "/search?q={search_term_string}" -%}
  
{%- endif -%}

{% schema %}
{
  "name": "Header",
  "class": "page-header",
  "settings": [
    {
      "type": "checkbox",
      "id": "header_sticky",
      "label": "Enable sticky header",
      "default": false
    },
    {
      "type": "header",
      "content": "Style"
    },
    {
      "type": "select",
      "id": "header_style",
      "label": "Header",
      "default": "logo_beside",
      "options": [
        { "value": "logo_above", "label": "Logo above menu" },
        { "value": "logo_beside", "label": "Logo beside menu" },
        { "value": "drawer", "label": "Mobile drawer menu" },
        { "value": "logo_center_menu_left", "label": "Logo center menu left" }
      ]
    },
    {
      "type": "checkbox",
      "id": "show_separator_line",
      "label": "Show border",
      "default": false
    },
    {
      "type": "color",
      "id": "header_border_color",
      "label": "Border color",
      "info": "Not applied to Transparent headers"
    },
    {
      "type": "range",
      "id": "separator_opacity",
      "label": "Border opacity",
      "unit": "%",
      "min": 0,
      "max": 100,
      "step": 5,
      "default": 50
    },
    {
      "type": "header",
      "content": "Icons"
    },
    {
      "type": "checkbox",
      "id": "show_icons",
      "label": "Show icons",
      "default": true
    },
    {
      "type": "checkbox",
      "id": "icon_as_circle",
      "label": "Show cart icon as circle",
      "default": false
    },
    {
      "type": "select",
      "id": "cart_icon_family",
      "label": "Cart icon",
      "default": "bag",
      "options": [
        { "value": "bag", "label": "Bag" },
        { "value": "cart", "label": "Cart" }
      ]
    },
    {
      "type": "header",
      "content": "Logo"
    },
    {
      "type": "image_picker",
      "id": "logo",
      "label": "Image"
    },
    {
      "type": "header",
      "content": "Layout"
    },
    {
      "type":    "range",
      "id":      "logo_max_limit",
      "min":     30,
      "max":     495,
      "step":    5,
      "unit":    "px",
      "label":   "Desktop width",
      "default": 120
    },
    {
      "type":    "range",
      "id":      "logo_max_limit_mobile",
      "min":     30,
      "max":     250,
      "step":    5,
      "unit":    "px",
      "label":   "Mobile width",
      "default": 120
    },
    {
      "type": "header",
      "content": "Navigation"
    },
    {
      "type": "link_list",
      "label": "Main menu",
      "id": "main_menu_linklist"
    },
    {
      "type": "link_list",
      "label": "Mobile menu",
      "info": "This will be deprecated in the future, please use the new Mobile menu section",
      "id": "mobile_menu_linklist"
    },
    {
      "type": "checkbox",
      "id": "enable_search",
      "default": true,
      "label": "Show search"
    },
    {
      "type": "checkbox",
      "id": "show_social_icons",
      "default": true,
      "label": "Show social icons"
    },
    {
      "type": "header",
      "content": "Call to action"
    },
    {
      "type": "paragraph",
      "content": "Applies to desktop only"
    },
    {
      "type": "text",
      "id": "button_text",
      "label": "Text"
    },
    {
      "type": "url",
      "id": "button_link",
      "label": "Link"
    },
    {
      "type": "select",
      "id": "button_type",
      "label": "Color",
      "default": "btn--primary",
      "options": [
        { "value": "btn--black", "label": "Black" },
        { "value": "btn--white", "label": "White" },
        { "value": "btn--primary", "label": "Primary" },
        { "value": "btn--secondary", "label": "Secondary" }
      ]
    },
    {
      "type": "header",
      "content": "Language selector",
      "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
    },
    {
      "type": "checkbox",
      "id": "show_locale_selector",
      "label": "Show language selector",
      "default": true
    },
    {
      "type": "header",
      "content": "Country/Region selector",
      "info": "To add a country/region, go to your [markets settings](/admin/settings/markets)."
    },
    {
      "type": "checkbox",
      "id": "show_country_selector",
      "label": "Show country/region selector",
      "default": true
    },
    {
      "type": "checkbox",
      "id": "show_country_name",
      "label": "Show country name",
      "default": false
    },
    {
      "type": "checkbox",
      "id": "show_country_flag",
      "label": "Show country flag",
      "default": true
    },
    {
      "type": "header",
      "content": "Highlight link"
    },
    {
      "type": "text",
      "id": "highlight_item",
      "label": "Menu item",
      "default": "Sale"
    },
    {
      "type": "color",
      "id": "highlight_item_color",
      "label": "Color",
      "default": "#D02E2E"
    },
    {
      "type": "header",
      "content": "Transparent header"
    },
    {
      "type": "image_picker",
      "id": "transparent_logo",
      "label": "Logo"
    },
    {
      "type": "checkbox",
      "id": "transparent_home",
      "label": "Enable on Home page",
      "default": false
    },
    {
      "type": "checkbox",
      "id": "transparent_collection",
      "label": "Enable on Collection pages",
      "default": false
    },
    {
      "type": "checkbox",
      "id": "transparent_article",
      "label": "Enable on Article pages",
      "default": false
    },
    {
      "type": "checkbox",
      "id": "transparent_page",
      "label": "Enable on Pages",
      "default": false
    },
    {
      "type": "checkbox",
      "id": "transparent_product_page",
      "label": "Enable on Product pages",
      "info": "Stretch image size recommended. Desktop only",
      "default": false
    },
    {
      "type": "image_picker",
      "id": "transparent_logo_pdp",
      "label": "Product pages logo"
    },
    {
      "type": "header",
      "content": "Mobile menu",
      "info": "These menus won't show dropdown items."
    },
    {
      "type": "link_list",
      "id": "secondary_menu_linklist",
      "label": "Secondary menu",
      "info": "Visible in the hamburger menu."
    },
    {
      "type": "link_list",
      "id": "tertiary_menu_linklist",
      "label": "Navigation menu",
      "info": "Visible on mobile below the header."
    },
    {
      "type": "header",
      "content": "Padding"
    },
    {
      "type": "range",
      "id": "padding_top",
      "min": 5,
      "max": 40,
      "step": 1,
      "unit": "px",
      "label": "Top",
      "default": 15
    },
    {
      "type": "range",
      "id": "padding_bottom",
      "min": 5,
      "max": 40,
      "step": 1,
      "unit": "px",
      "label": "Bottom",
      "default": 15
    }
  ],
  "blocks": [
    {
      "name": "Image",
      "type": "image",
      "settings": [
        {
          "type": "select",
          "id": "position",
          "label": "Link position in main menu",
          "default": "1",
          "options": [
            { "value": "1", "label": "Item 1" },
            { "value": "2", "label": "Item 2" },
            { "value": "3", "label": "Item 3" },
            { "value": "4", "label": "Item 4" },
            { "value": "5", "label": "Item 5" },
            { "value": "6", "label": "Item 6" },
            { "value": "7", "label": "Item 7" },
            { "value": "8", "label": "Item 8" },
            { "value": "9", "label": "Item 9" },
            { "value": "10", "label": "Item 10" }
          ]
        },
        {
          "type": "image_picker",
          "id": "image",
          "label": "Image"
        },
        {
          "type": "range",
          "id": "aspect_ratio",
          "min": 0.5,
          "max": 1.5,
          "step": 0.1,
          "unit": ":1",
          "label": "Image scaling ratio",
          "info": "Wide to tall",
          "default": 0.5
        },
        {
          "type": "checkbox",
          "id": "wide_image",
          "label": "Wide image",
          "default": true
        },
        {
          "type": "header",
          "content": "Overlay"
        },
        {
          "type": "range",
          "id": "overlay_opacity",
          "label": "Overlay opacity",
          "info": "Increase contrast for legible text.",
          "unit": "%",
          "min": 0,
          "max": 100,
          "step": 5,
          "default":0
        },
        {
          "type": "color",
          "id": "overlay_color",
          "label": "Overlay color",
          "default": "#000"
        },
        {
          "type": "header",
          "content": "Typography"
        },
        {
          "type": "text",
          "id": "title",
          "label": "Heading"
        },
        {
          "type": "text",
          "id": "link_text",
          "label": "Text"
        },
        {
          "type": "url",
          "id": "link",
          "label": "Link"
        },
        {
          "type": "select",
          "id": "heading_font_size",
          "label": "Heading size",
          "default": "heading-medium",
          "options": [
            { "value": "heading-mini", "label": "Mini" },
            { "value": "heading-x-small", "label": "Extra small" },
            { "value": "heading-small", "label": "Small" },
            { "value": "heading-medium", "label": "Medium" },
            { "value": "heading-large", "label": "Large" },
            { "value": "heading-x-large", "label": "Extra large" }
          ]
        },
        {
          "type": "select",
          "id": "text_font_size",
          "label": "Text size",
          "info": "Automatically generated by the base size.",
          "default": "body-medium",
          "options": [
            { "value": "body-x-small", "label": "Extra small" },
            { "value": "body-small", "label": "Small" },
            { "value": "body-medium", "label": "Medium" },
            { "value": "body-large", "label": "Large" },
            { "value": "body-x-large", "label": "Extra large" }
          ]
        },
        {
          "type": "header",
          "content": "Color"
        },
        {
          "type": "paragraph",
          "content": "Overrides color scheme. Set to Transparent to revert back to using color schemes."
        },
        {
          "type": "color",
          "id": "text_color",
          "label": "Text"
        }
      ]
    },
    {
      "name": "Toolbar",
      "type": "toolbar",
      "limit": 1,
      "settings": [
        {
          "type": "richtext",
          "id": "text",
          "label": "Text",
          "default": "

Toolbar

"
        },
        {
          "type": "link_list",
          "id": "menu",
          "label": "Menu",
          "info": "These menus won't show dropdown items."
        },
        {
          "type": "checkbox",
          "id": "show_border",
          "label": "Show border",
          "default": false
        },
        {
          "type": "color",
          "id": "border_color",
          "label": "Border color",
          "info": "Not applied to Transparent headers"
        },
        {
          "type": "range",
          "id": "border_opacity",
          "label": "Border opacity",
          "unit": "%",
          "min": 0,
          "max": 100,
          "step": 5,
          "default": 50
        },
        {
          "type": "header",
          "content": "Social media icons"
        },
        {
          "type": "checkbox",
          "id": "show_social_links",
          "label": "Show social icons",
          "info": "Edit your social settings and accounts in [Theme settings](/admin/themes/current/editor?context=theme)",
          "default": false
        },
        {
          "type": "header",
          "content": "Gift card"
        },
        {
          "type": "checkbox",
          "id": "show_gift_card",
          "label": "Show gift card",
          "default": false
        },
        {
          "type": "header",
          "content": "Language selector",
          "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
        },
        {
          "type": "checkbox",
          "id": "show_locale_selector",
          "label": "Show language selector",
          "default": true
        },
        {
          "type": "header",
          "content": "Country/Region selector",
          "info": "To add a country/region, go to your [markets settings](/admin/settings/markets)."
        },
        {
          "type": "checkbox",
          "id": "show_country_selector",
          "label": "Show country/region selector",
          "default": true
        },
        {
          "type": "checkbox",
          "id": "show_country_name",
          "label": "Show country name",
          "default": false
        },
        {
          "type": "checkbox",
          "id": "show_country_flag",
          "label": "Show country flag",
          "default": true
        },
        {
          "type": "header",
          "content": "Colors"
        },
        {
          "type": "color_scheme",
          "id": "color_scheme",
          "default": "scheme_1",
          "label": "Color scheme"
        },
        {
          "type": "header",
          "content": "Padding"
        },
        {
          "type": "range",
          "id": "padding_top",
          "min": 0,
          "max": 15,
          "step": 1,
          "unit": "px",
          "label": "Top",
          "default": 0
        },
        {
          "type": "range",
          "id": "padding_bottom",
          "min": 0,
          "max": 15,
          "step": 1,
          "unit": "px",
          "label": "Bottom",
          "default": 0
        }
      ]
    }
  ],
  "enabled_on": {
    "groups": ["header"]
  }
}
{% endschema %}

Good day @TBS2023 , Could you please send me the collaborator request code? I need it because some modifications are required in this code to achieve the desired result.