/** Shopify CDN: Minification failed

Line 19:20 Unexpected "{"
Line 19:29 Expected ":"
Line 19:36 Unexpected "{"
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:35 Unexpected "{"
Line 27:20 Unexpected "{"
Line 27:29 Expected ":"
Line 35:20 Unexpected "{"
Line 35:29 Expected ":"
... and 14 more hidden warnings

**/


/* CSS from section stylesheet tags */
.promo-bar-wrapper-{{ section.id }} {
  width: 100%;
  margin: 0;
}
.promo-bar-slider-{{ section.id }} {
  display: flex;
  flex-wrap: nowrap;
}
.promo-bar-wrapper-{{ section.id }} .promo-bar-item {
  flex: 1 0 33.33%;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid #e2e2e2;
  background: var(--bg-color, #f5f5f5);
  color: var(--text-color, #000);
}
.promo-bar-wrapper-{{ section.id }} .promo-bar-item:last-child {
  border-right: none;
}
.promo-bar-wrapper-{{ section.id }} .promo-title-q {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
    letter-spacing: .3px;
    line-height: 18px;
}

.promo-bar-wrapper-{{ section.id }} .promo-desc-q {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .3px;
    line-height: 17px;
}

.promo-bar-wrapper-{{ section.id }} .promo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.promo-bar-wrapper-{{ section.id }} .promo-modal.active {
  display: flex;
}
.promo-bar-wrapper-{{ section.id }} .promo-modal-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
}
.promo-bar-wrapper-{{ section.id }} .promo-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 24px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .pc-display-p {
    display: flex;
  }
}
@media (max-width: 768px) {
  .promo-bar-wrapper-{{ section.id }} .promo-bar-item {
    flex: 0 0 100vw;
    width: 100vw;
    border-right: none;
    padding: 16px 0;
  }
}