/** Shopify CDN: Minification failed

Line 79:6 Expected identifier but found whitespace
Line 79:8 Unexpected "{"
Line 79:17 Expected ":"
Line 79:60 Expected ":"

**/


/* CSS from section stylesheet tags */
.steps-wrapper {
  display: flex;
  justify-content: center;
}
.steps-column {
  flex: 1;
  max-width: 400px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.column-icon {
  max-width: 60px;
  margin: 0 auto 10px;
  display: block;
}
.column-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}
.step-line {
  position: absolute;
  top: 30px;
  left: 15px;
  width: 2px;
  height: calc(100% - 30px);
  z-index: 1;
}
.step-content {
  flex: 1;
}
.step-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.step-header img {
  max-width: 20px;
  max-height: 20px;
  margin-left: 8px;
}

.steps-wrapper {
  display: flex;
  gap: {{ section.settings.column_spacing | default: 40 }}px;
  justify-content: center;
}

/* Mobile swipe layout */
@media (max-width: 768px) {
  .steps-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  .steps-column {
    flex: 0 0 100%;
    scroll-snap-align: start;
    max-width: 100%;
    padding: 0 20px;
  }
}