/** Shopify CDN: Minification failed

Line 179:17 Expected "}" to go with "{"

**/
/* ============================================================= */
/* FINAL, REUSABLE CSS for all custom policy pages             */
/* Uses the generic class ".custom-policy-page"                */
/* ============================================================= */

/* This hides the default H1 from the template, as we add our own */
.custom-policy-content .page-title {
  display: none; 
}

/* The main container for any custom policy page */
.custom-policy-page {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.custom-policy-page h1 {
  text-align: center;
  color: #009FF0;
  font-size: 2.5em;
  margin-bottom: 1.5rem;
}

/* Style for the introductory paragraph */
.policy-intro {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
  color: #555;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  display: flex;
  align-items: baseline;
  font-size: 1.6em;
  color: #000;
  margin-bottom: 1rem;
}

.clause-number {
  color: #009FF0;
  font-weight: 600;
  margin-right: 1rem;
}

.sub-section {
  margin-top: 1.5rem;
  padding-left: 20px;
  border-left: 3px solid #f0f0f0;
}

.sub-section h3 {
  display: flex;
  align-items: baseline;
  font-size: 1.2em;
  color: #333;
}

.sub-clause {
  color: #555;
  margin-right: 0.75em;
}

/* General content styling */
.custom-policy-page p, .custom-policy-page li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.custom-policy-page ul, .custom-policy-page ol {
  padding-left: 25px;
  margin-top: 1rem;
}

.custom-policy-page strong {
  color: #000;
}

.custom-policy-page a {
  color: #009FF0;
  font-weight: 500;
  text-decoration: underline;
}

.custom-policy-page a:hover {
  color: #007bbd;
}

.custom-policy-page address {
  font-style: normal;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  padding: 15px;
  border-radius: 5px;
  margin: 1rem 0;
  line-height: 1.6;
}
.simple-policy {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  /* This creates the automatic numbering for H2s */
  counter-reset: section-counter;
}

/* Styles the main title of the policy (Heading 1) */
.simple-policy h1 {
  text-align: center;
  color: #009FF0;
  font-size: 2.5em;
  margin-bottom: 2.5rem;
}

/* Automatically numbers and styles each section heading (Heading 2) */
.simple-policy h2 {
  font-size: 1.6em;
  color: #000;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
  counter-increment: section-counter;
}

.simple-policy h2::before {
  content: counter(section-counter) ". ";
  color: #009FF0;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Styles subheadings (Heading 3) */
.simple-policy h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-top: 1.5rem;
}

/* General content styling */
.simple-policy p, .simple-policy li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.simple-policy ul, .simple-policy ol {
  padding-left: 25px;
  margin-top: 1rem;
}

.simple-policy strong {
  color: #000;
}

.simple-policy a {
  color: #009FF0;
  font-weight: 500;
  text-decoration: underline;
}

.simple-policy a:hover {
  color: #007bbd;