.gb_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.primary-section .social-share {
	margin-right: 10px;
}
.gb_flex .search {
	margin-left: 10px; 
}



{% if module.top_section_copy.social_icons.include_social_share %}
	<!-- HTML to show when checked -->
{% endif %}
{% for item in module.top_section_copy.social_icons.social_item %}
	
	{% if item.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% icon
		name=""
		style=""
		unicode=""
		icon_set=""
	%}
	{% set href = item.link_field.url.href %}
	{% if item.link_field.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.link_field.url.type is equalto "CALL_TO_ACTION"  %}
	    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
	  {% else %}
	    href=""
	  {% endif %}
	  {% if item.link_field.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.link_field.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
{% endfor %}
{% if module.top_section_copy.social_icons.hide_at_desktop %}
	<!-- HTML to show when checked -->
{% endif %}
{% if module.top_section_copy.social_icons.hide_at_mobile %}
	<!-- HTML to show when checked -->
{% endif %}