/** Shopify CDN: Minification failed

Line 98:1 Expected "}" to go with "{"

**/
p, h4, h5 {
  margin: 0;
}

h5 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.policy-popup {
  display: none;
}
.policy-popup.open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.policy-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.policy-popup__modal {
  position: relative;
  background: #fff;
  border-radius: 8px;
  max-width: 90vw;
  max-height: 90vh;
  min-height: 90vh;
  width: 600px;
  margin: auto;
  top: 5vh;
  overflow: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.policy-popup__close {
position: fixed;
top: 12px;
right: 12px;
background: transparent;
border: 1px solid white;
font-size: 1.5rem;
color: white;
cursor: pointer;
height: 2rem;
width: 2rem;
}
/* Tabs slider */
.policy-popup__tabs {
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
  border-bottom: 1px solid #ddd;
  padding-left: 1rem;
  position: sticky;
  top: 0px;
  background-color: white;
}
.policy-popup__tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.policy-popup__tabs li {
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}
.policy-popup__tabs li.active {
  border-bottom: 2px solid #000;
}
.policy-popup__contents {
  padding: 1.5rem;
}
.policy-popup__content {
  display: none;
}
.policy-popup__content.active {
  display: block;
}
@media screen and (max-width: 600px) {
  .policy-popup__modal { width: 95vw; }
  /* Keep tabs horizontal scroll on mobile too */

.policy-popup__close {
  top: 0px;
  right: 0px;
  border: none;
}