<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* immagini stondate */
.modimage--rounded{
  border-radius: 20px;
  overflow: hidden;
}

{#.modimage.zoom{
  border-radius:50%;
  overflow: hidden;
  position: relative;
}

.modimage.zoom a {
  display:block;
  position: absolute;
  width: 100%;
  height:100%;
}

.modimage.zoom img {
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transform: scale(1);
  transition: all .5s ease-out;
  width: 100%;
  z-index: 1;
  object-fit: cover;
}

.modimage.zoom a:after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .5s ease-out;
    width: 100%;
    z-index: 5;
}

.modimage.zoom a:hover img {
  transform: scale(1.25);
}

.modimage.zoom a:hover:after {
    opacity: .6;
}#}</pre></body></html>