/* Image Gallery iDevice (export CSS) */

.imageGallery-IDevice .imageGallery-body {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  overflow: auto;
}

.imageGallery-IDevice .imageContainer {
  height: 128px;
  width: 128px;
  padding: 5px;
  margin: 15px;
  display: inline-block;
}

.imageGallery-IDevice .imageContainer a.imageLink {
  width: 128px;
  height: 128px;
}

.imageGallery-IDevice .imageContainer .imageLink .imageElement {
  width: 128px;
  height: 128px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius:var(--radius);
}

.imageGallery-IDevice .imageContainer .imageLink .imageElement:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.imageGallery-IDevice .imageContainer .imageLink .imageElement img {
  max-height: 128px;
  max-width: 128px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.imageGallery-IDevice .imageContainer .imageLink .title {
  display: none;
}
