/* ==================================================
  ari v1.10.3

  Licensed GPLv3 for open source use

  Copyright 2023 internezzo ag, Kathleen Peschke

  ==================================================
 */
/*
 * wrapper around the image tag
 *
 * Example markup:
 * <div class="img-ari-responsive"
 *     data-ari-params="{'id':'#id#','hash':'#hash#','name':'#filename#','alt':'#text#','title':'#text#','caption':'#text#'}"
 *     style="padding-bottom:60%">
 *     <!-- here goes the img in, loaded with js -->
 * </div>
 */
[data-ari-params] {
  height: auto;
  position: relative;
  vertical-align: top;
  width: 100%; }
  [data-ari-params][data-ari-size-reached='true'] img {
    position: static; }
  [data-ari-params] img {
    /*
		 * Bugfix for IE11
		 * IE11 on retina displays warp images in height
		 */
    height: auto;
    max-width: 100%;
    position: absolute; }
  [data-ari-params] p {
    color: #ccc;
    font-size: 12px;
    margin: 0;
    text-align: center;
    width: 100%; }
