.image-bubble {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 30px;
  transition: transform 300ms; }
  .image-bubble > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 300ms;
    opacity: 0.85; }
  .image-bubble > data.info-holder {
    display: none;
    visibility: collapse; }

.image-bubble:hover {
  transform: scale(1.05); }
  .image-bubble:hover > img {
    opacity: 1; }

.image-bubble::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 24px 2px white, 0px 0px 12px rgba(255, 255, 255, 0.4);
  content: "";
  transition: opacity 300ms; }

.image-bubble:hover::after {
  opacity: 0.5; }

.modal-image-view.show {
  visibility: visible;
  opacity: 1; }

.modal-image-view {
  pointer-events: none;
  box-sizing: border-box;
  visibility: collapse;
  opacity: 0;
  transform: all 300ms;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  color: white;
  text-shadow: 0 0 8px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100; }
  .modal-image-view > .close-button {
    transition: all 300ms;
    position: absolute;
    right: 0;
    top: 0;
    margin: 12px;
    pointer-events: auto;
    opacity: 0.5;
    box-sizing: border-box;
    padding: 8px; }
    .modal-image-view > .close-button > img {
      width: 40px;
      height: 40px; }
  .modal-image-view > .close-button:hover {
    opacity: 1; }
  .modal-image-view > .lazy-image {
    pointer-events: auto;
    position: relative;
    flex-grow: 1;
    width: 100%; }
    .modal-image-view > .lazy-image > img.artwork {
      object-fit: contain;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      filter: drop-shadow(0 0 10px black); }
    .modal-image-view > .lazy-image > .loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .modal-image-view > .artwork-info {
    pointer-events: auto;
    margin: 20px 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .modal-image-view > .artwork-info > .title {
      font-size: 1.8em;
      font-weight: bold;
      text-decoration: underline; }
    .modal-image-view > .artwork-info > .caption {
      margin-top: 12px;
      margin-bottom: 0px; }
