<!-- Share CSS -->
<style>
.sf-minitoolbar {
display:none!important;
}
.share {
position:fixed;
bottom:0;
width:100%;
height:auto;
display:flex;
z-index:100;
opacity:0;
transition: opacity 0.3s ease-in-out;
animation:1s;
}
.share a {
display:flex;
justify-content: center;
align-items: center;
width:25%;
height:32px;
}
.share a i {
font-size:19px;
color:white;
}
.share a:nth-child(1) {
background-color:#6f6f6f;
color:#00e5e5;
font-weight:700;
text-transform:uppercase;
letter-spacing:0.75px;
}
.share a:nth-child(2) {
background-color: #3b5999;
}
.share a:nth-child(3) {
background-color: #0077b5;
}
.share a:nth-child(4) {
background-color: #38b000;
}
@media screen and (min-width:768px) {
.share {
flex-direction: column;
top:calc(45% - 48px);
left:calc(100% - 48px);
}
.share a {
width :48px;
height:48px;
}
}
</style>
<!-- Share HTML -->
<div class="share">
{% set currentLocale = app.request.locale %}
{% for locale in locales %}
{% if locale != currentLocale %}
<a href="{{ path('app_' ~ locale) }}">
{{ locale }}
</a>
{% endif %}
{% endfor %}
<a><i class="fas fa-share-alt"></i></a>
<a><i class="fab fa-linkedin-in"></i></a>
<a href="tel:0550505050"><i class="fas fa-phone"></i></a>
</div>
<!-- Share JS -->
<script>
{#% include "appTemplates/layout/share/element.js" %#}
</script>