{% set settings = pimcore_website_config('Settings',null, app.request.locale) %}
{% if settings %}
{% set button_design = settings.buttons %}
{% set swiper_points = settings.gallerieNavigation %}
{% set color_swatches = settings.colorSwatches%}
{# google search console #}
{# <meta name="google-site-verification" content=""> #}
<style>
:root {
{% for color in settings.colors %}
--{{ color.key | lower}}:{{ color.color }};
{% endfor %}
--white: #fff;
--black: #000;
}
{% if button_design == "square" %}
.buttons-row a.btn.primary {
border-radius: 0;
}
{% endif %}
{% if swiper_points == "lines" %}
.swiper-pagination-clickable .swiper-pagination-bullet {
width: 47px;
border-radius: 0;
height: 3px;
}
{% endif %}
{% if color_swatches == "square" %}
.bild-text23.bild-text23-half .container .element.drittel.color-swatches .item-wrapper .item .circle-color {
border-radius: 0;
}
{% endif %}
{% if color_swatches == "shape" %}
.bild-text23.bild-text23-half .container .element.drittel.color-swatches .item-wrapper .item .circle-color {
border-left: 6vw solid white;
border-right: 6vw solid white;
border-bottom: 12vw solid;
border-radius: 0;
width: 0;
height: 0;
}
{% endif %}
.buttons-row a.btn.primary {
border: 1px solid {{ settings.buttonColor }};
}
.buttons-row a.btn.primary:hover {
background-color: {{ settings.buttonColor }};
}
.buttons-row a.btn.primary.icon span.download {
color: {{ settings.buttonColor }};
}
</style>
{% if settings.gutter == "with_gutter" %}
<link href="{{ asset('assets/css/gutters.css') }}" media="screen" rel="stylesheet" type="text/css" />
{% endif %}
{% endif %}