/** Shopify CDN: Minification failed

Line 32:19 Expected identifier but found whitespace
Line 32:21 Unexpected "{"
Line 32:30 Expected ":"
Line 33:10 Expected identifier but found whitespace
Line 33:12 Unexpected "{"
Line 33:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.ripple-container {
  position: relative;
  display: block;
  overflow: hidden;
}

.ripple-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-bnr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: {{ section.settings.overlay_color }}; /* This will dynamically inject the overlay color */
  opacity: {{ section.settings.overlay_opacity }}; /* This will dynamically inject the opacity */
  z-index: 1;
  pointer-events: none;
      display: block !important;
}

.ripple-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  z-index: 2;
  pointer-events: none;
}

.ripple-container canvas {
  z-index: 3 !important;
  display: block !important;
}
/* Add your CSS styles here */
.revy-custom-content-section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px;
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}