/** Shopify CDN: Minification failed

Line 176:18 Unexpected "="

**/
.announcement-bar-popup-content-wrapper {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.announcement-bar-popup-content-wrapper[open] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.announcement-bar-popup-content-inner {
  max-width: 580px;
  position: relative;
  padding: 50px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .announcement-bar-popup-content-inner {
    max-height: 100dvh;
    padding: 50px 0;
    background-color: #fff;
    overflow-y: auto;
  }
}

.announcement-bar-popup-content-inner announcement-bar-popup-trigger {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1;
  cursor: pointer;
  padding: 11px;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
}

@media screen and (max-width: 768px) {
  .announcement-bar-popup-content-inner announcement-bar-popup-trigger {
    top: 10px;
    right: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: ;
  }
}

.announcement-bar-popup-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .announcement-bar-popup-content {
    padding: 10px 16px;
  }
}

.announcement-bar-popup-content h2,
.announcement-bar-popup-content ul,
.announcement-bar-popup-content ul li {
  margin: 0;
  padding: 0;
}

.announcement-bar-popup-content h2 {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: #000;
}

.announcement-bar-popup-content ul {
  margin-top: 20px;
  padding-left: 20px;
  color: #7B7B7B;
}

.announcement-bar-popup-content ul li {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #7B7B7B;
}

.announcement-bar-popup-content ul li strong {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.announcement-bar-popup-content-image {
  max-width: 100%;
  aspect-ratio: 422 / 228;
  object-fit: cover;
}

.announcement-bar-popup-content-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcement-bar-popup-content-form {
  margin-top: 32px;
  width: 100%;
}

.announcement-bar-popup-content-form-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.announcement-bar-popup-content-form-field-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #7B7B7B;
}

.announcement-bar-popup-content .newsletter-form__message {
  text-align: center;
}

.announcement-bar-popup-content .newsletter-form__message--success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
}

.announcement-bar-popup-content:has(.newsletter-form__message--success) h2,
.announcement-bar-popup-content:has(.newsletter-form__message--success) ul {
  display: none;
}

input:aria-invalid="true" {
  border: 1px solid #FF0000;
}