/** Shopify CDN: Minification failed

Line 118:10 Unexpected "{"
Line 118:19 Expected ":"
Line 119:14 Expected identifier but found whitespace
Line 119:16 Unexpected "{"
Line 119:25 Expected ":"
Line 119:51 Expected ":"
Line 120:17 Expected identifier but found whitespace
Line 120:19 Unexpected "{"
Line 120:28 Expected ":"
Line 120:57 Expected ":"

**/
.bies-usage-modes {
  padding: 0 1.5rem;
}

.bies-usage-modes__container {
  max-width: var(--page-width);
  margin: 0 auto;
}

.bies-usage-modes__heading {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

.bies-usage-modes__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bies-usage-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(45, 90, 61, 0.04);
  border: 1px solid rgba(45, 90, 61, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 100px;
}

.bies-usage-mode:hover {
  background: rgba(45, 90, 61, 0.08);
  border-color: rgba(45, 90, 61, 0.2);
  transform: translateY(-2px);
}

.bies-usage-mode__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bies-usage-mode__icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.bies-usage-mode__title {
  font-size: 14px;
  font-weight: 600;
  color: #2d5a3d;
  text-align: center;
}

@media screen and (max-width: 749px) {
  .bies-usage-modes__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .bies-usage-modes__grid::-webkit-scrollbar {
    display: none;
  }

  .bies-usage-mode {
    flex-shrink: 0;
    padding: 16px 20px;
    min-width: 90px;
  }

  .bies-usage-mode__icon {
    width: 44px;
    height: 44px;
  }

  .bies-usage-mode__icon svg {
    width: 22px;
    height: 22px;
  }

  .bies-usage-mode__title {
    font-size: 13px;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}
