/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite linear;
}

[data-theme=dark] .skeleton {
  background: linear-gradient(90deg, #5a5a5a 25%, #6a6a6a 50%, #5a5a5a 75%);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.imgHoverZoom {
  overflow: hidden;
}
.imgHoverZoom img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.imgHoverZoom img:hover {
  transform: scale(1.08);
}

.social {
  font-size: 32px;
  text-align: center;
}
.social i.fa-facebook {
  color: #1877F2;
}
.social i.fa-instagram {
  color: #E4405F;
}
.social i.fa-linkedin {
  color: #0A66C2;
}
.social i.fa-tiktok {
  color: #010101;
}
.social i.fa-youtube {
  color: #FF0000;
}
.social i.fa-globe {
  color: #555555;
}

/*# sourceMappingURL=imageUtility.css.map */
