@keyframes fade-out{
from{opacity:1}
to{opacity:0}
}
@keyframes fade-in{
from{opacity:0}
to{opacity:1}
}
.block__products-related__products__wrapper{display:grid;grid-template-columns:repeat(var(--products-related-cols-lg,4),minmax(0,1fr));gap:50px;justify-items:center}
@media (max-width:771px){
.block__products-related__products__wrapper{grid-template-columns:repeat(var(--products-related-cols-md,2),minmax(0,1fr))}
}
@media (max-width:400px){
.block__products-related__products__wrapper{grid-template-columns:repeat(var(--products-related-cols-sm,1),minmax(0,1fr))}
}
.block__products-related__title{font-family:erotique,sans-serif;font-weight:700;margin-top:0;margin-bottom:0;width:100%;max-width:100%}