/** Shopify CDN: Minification failed

Line 71:8 Expected identifier but found whitespace
Line 71:10 Unexpected "{"
Line 71:19 Expected ":"
Line 86:8 Expected identifier but found whitespace
Line 86:10 Unexpected "{"
Line 86:19 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Pinnacle normal container */
.page-width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Sitemap flex container inside normal container */
.sitemap-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px; /* negate padding for gutters */
}

.sitemap-column {
  padding: 0 15px;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

/* Pinnacle-like column widths inside container */
.sitemap-column--small {
  flex: 0 0 25%;
  max-width: 25%;
}

.sitemap-column--medium {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.sitemap-column--large {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Mobile - full width columns */
@media screen and (max-width: 767px) {
  .sitemap-column,
  .sitemap-column--small,
  .sitemap-column--medium,
  .sitemap-column--large {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.sitemap-column__heading {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25rem;
}

.sitemap-column__heading a {
  color: {{ section.settings.link_color }};
  text-decoration: none;
}

.sitemap-column__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.sitemap-column__item {
  margin-bottom: 0.35rem;
}

.sitemap-column__item a {
  color: {{ section.settings.link_color }};
  text-decoration: none;
  font-size: 0.9375rem;
}

.sitemap-column__item a:hover {
  text-decoration: underline;
}