/** Shopify CDN: Minification failed

Line 68:1 Expected "}" to go with "{"

**/
.single-image {
  padding: 0 15px;
  max-width: 2500px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; 
    object-fit: fill;  
}

@media only screen and (min-width: 768px) {
  .single-image {
    padding: 0 50px; 
  } 
}

.single-image.full-width--true {
  max-width: none;
  padding: 0; 
}

.single-image--mobile {
  display: block; 
}

@media only screen and (min-width: 768px) {
  .single-image--mobile {
    display: none; 
  } 
}

.single-image--desktop {
  display: none; 
}

@media only screen and (min-width: 768px) {
  .single-image--desktop {
    display: block; 
  } 
}

.single-image img,
.single-image svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  object-fit: fill;

@media only screen and (min-width: 768px) {
  .single-image img,
  .single-image svg {
   width: 100%;
    height: 400px;       
  }
}
.single-image:not(:has(img)) {
  display: none;
}
.single-image:has(img[src=""]),
.single-image:has(img:not([src])) {
  display: none;
}