/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 54:0 Unexpected "<"

**/
<style>
.custom-image-wrapper {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.custom-image {
  display: inline-block;
  position: relative;
  left: var(--horizontal-position);
  top: var(--vertical-position);
  width: var(--image-width);
  max-width: 100%;
  transition: all 0.3s ease;
}

.custom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overlap {
  margin-top: -70px;
  margin-bottom: -70px;
}

@media screen and (max-width: 767px) {
  .custom-image {
    left: var(--mobile-horizontal-position);
    top: var(--mobile-vertical-position);
    width: var(--mobile-image-width);
  }

  .custom-image[data-mobile-alignment="left"] {
    text-align: left;
  }

  .custom-image[data-mobile-alignment="center"] {
    text-align: center;
  }

  .custom-image[data-mobile-alignment="right"] {
    text-align: right;
  }
}
</style>