/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 25:12 Expected identifier but found whitespace
Line 25:14 Unexpected "{"
Line 25:23 Expected ":"
Line 25:50 Expected ":"
Line 26:8 Expected identifier but found whitespace
Line 26:10 Unexpected "{"
Line 26:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.loyalty-tiers-section {
  padding: 40px 20px;
  background-color: {{ section.settings.bg_color }};
}

.loyalty-tiers-section .main-heading {
  text-align: center;
  font-size: {{ section.settings.heading_size }}px;
  color: {{ section.settings.heading_color }};
  margin-bottom: 40px;
}

.loyalty-tier-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.loyalty-tier {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 100%;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.loyalty-tier h3 {
  margin: 0 0 5px;
}

.loyalty-tier small {
  display: block;
  margin-bottom: 15px;
}

.loyalty-tier .points {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 14px;
    margin-top: 0px;
}
.loyalty-tiers-section h2.main-heading {
    font-size: 40px;
}
.loyalty-tier ul {
  padding: 0;
  list-style: none;
  margin: 10px 0 0;
}
.loyalty-tiers-section {
    width: 1095px;
    margin: 0 auto;
}
.loyalty-tier li {
    margin-bottom: 9px;
}
.loyalty-tier .points {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 14px;
    margin-top: 0px;
    border: 1px solid #CC8F82!important;
}
@media screen and (max-width: 768px) {
  .loyalty-tier {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .loyalty-tier {
    flex: 1 1 100%;
  }
  .loyalty-tiers-section {
    width: 100%;
    margin: 0 auto;
    PADDING-TOP: 0;
    PADDING-BOTTOM: 8px;
}
}