figure {
  position: relative;
  overflow: hidden;
}
figure .thumb {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
figure .thumb img {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}
figure .thumb span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
figure .final {
  display: block;
  position: relative;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
figure .final img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
figure.cover .thumb,
figure.cover .final, figure.contain .thumb,
figure.contain .final {
  height: 100%;
  width: 100%;
}
figure.cover .thumb img,
figure.cover .final img, figure.contain .thumb img,
figure.contain .final img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  display: block;
}
figure.cover .thumb img,
figure.cover .final img {
  -o-object-fit: cover;
  object-fit: cover;
}
figure.contain .thumb img,
figure.contain .final img {
  -o-object-fit: contain;
  object-fit: contain;
}
figure.image-loaded .final {
  opacity: 1;
}
figure.image-loaded .thumb {
  z-index: -1;
}
figure.image-loaded .thumb.display-none {
  display: none;
}
figure.is-svg img,
figure.is-svg svg, figure.svg-wrapper img,
figure.svg-wrapper svg {
  width: 100%;
  height: auto;
}
figure.is-svg.cover img,
figure.is-svg.cover svg, figure.svg-wrapper.cover img,
figure.svg-wrapper.cover svg {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
figure.is-svg.contain img,
figure.is-svg.contain svg, figure.svg-wrapper.contain img,
figure.svg-wrapper.contain svg {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*# sourceMappingURL=atk-image.css.map */