/** Shopify CDN: Minification failed

Line 47:10 Unexpected "{"
Line 47:19 Expected ":"
Line 50:9 Expected identifier but found whitespace
Line 50:11 Unexpected "{"
Line 50:20 Expected ":"
Line 50:49 Expected ":"
Line 54:13 Expected identifier but found whitespace
Line 54:15 Unexpected "{"
Line 54:24 Expected ":"
Line 57:10 Unexpected "{"
... and 9 more hidden warnings

**/


/* CSS from section stylesheet tags */
.image-with-text-custom-html {
  padding: 40px 20px;
  border-radius: 10px;
}
.image-with-text-custom-html .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}
.image-with-text-custom-html .image-block {
  flex: 1 1 300px;
  text-align: center;
}
.image-with-text-custom-html .image-block img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 8px;
}
.image-with-text-custom-html .image-caption {
  margin-top: 10px;
  font-size: 14px;
}
.image-with-text-custom-html .html-content {
  flex: 1 1 300px;
}
.section-{{ section.id }}.custom-marquee {
  display: flex;
  align-items: center;
  height: {{ section.settings.marquee_height }}px;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  background: {{ section.settings.colorBackground }};
}

.section-{{ section.id }}.custom-marquee .track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.section-{{ section.id }}.custom-marquee .marquee-image {
  margin-right: 40px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 1px solid #7b7a7e;
  padding-right: 40px;
}

.section-{{ section.id }}.custom-marquee .marquee-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  max-height: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slideshow-new {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: {{ section.settings.slide_height | default: 400 }}px;
}

.slideshow-new__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  box-sizing: border-box;
}

.slideshow-new__slide--active {
  opacity: 1;
  position: relative;
}

.slideshow-new__content {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  
}

.slideshow-new__html-block {
  /* custom code block container */
}

.slideshow-new__button {
  display: inline-block;
  margin-top: 10px;
  background-color: #ffa30e;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  width: fit-content;
}

@media (max-width: 767px) {
  .slideshow-new__slide {
    justify-content: center !important;
    padding-left: 0 !important;
  }
  .slideshow-new__content {
    max-width: 90%;
    text-align: left;
    border-radius: 10px;
    background: white;
    padding: 15px;
  }
}