{% sw_extends '@Storefront/storefront/block/cms-block-gallery-buybox.html.twig' %}
{% block block_gallery_buybox %}
{% if theme_config('atl-product-detail-layout') == '75' %}
{% set colGallery = 'col-lg-7' %}
{% set colBuyBox = 'col-lg-5' %}
{% elseif theme_config('atl-product-detail-layout') == '66' %}
{% set colGallery = 'col-lg-6' %}
{% set colBuyBox = 'col-lg-6' %}
{% endif %}
{% block block_gallery_buybox_column_left %}
{% set element = block.slots.getSlot('left') %}
{% set config = element.fieldConfig.elements %}
<div class="{{ colGallery }} product-detail-media" data-cms-element-id="{{ element.id }}">
{% block block_gallery_buybox_column_left_inner %}
{{ parent() }}
{% endblock %}
</div>
{% endblock %}
{% block block_gallery_buybox_column_right %}
{% set element = block.slots.getSlot('right') %}
<div class="{{ colBuyBox }} product-detail-buy" data-cms-element-id="{{ element.id }}">
{% block block_gallery_buybox_column_right_inner %}
{{ parent() }}
{% endblock %}
</div>
{% endblock %}
{% endblock %}