/** Shopify CDN: Minification failed

Line 206:0 Unexpected "}"
Line 236:2 Unexpected "/"

**/
.announcement-promo__row {
    padding: 10px;
    position: relative;
}
.announcement-promo__slider  {
    overflow: hidden;
}
.announcement-promo__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}
.announcement-promo__popup .form-control {
    width: 100%;
}
.announcement-promo__popup.is-active .promo-popup__inner {
    grid-template-rows: 1fr;
}
.promo-popup-anim {
    overflow: hidden;
}

@media screen and (min-width: 1000px) {
    .announcement-promo__popup-btn,
    .announcement-promo__popup {
        display: none;
    }
}
@media screen and (max-width: 999px) {
    .announcement-promo {
        position: relative;
    }
    .announcement-promo {
        padding-top: 64px;
    }
    .announcement-promo__popup {
        position: absolute;
        top: 100%;
        left: 0;
        height: 100dvh;
        width: 100%;
        z-index: 9;
        background-color: #0000006e;
        opacity: 0;
        visibility: hidden;
    }
    .announcement-promo__popup.is-active {
        opacity: 1;
        visibility: visible;
    }
    .promo-popup__inner {
        position: relative;
        padding-bottom: 16px;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 4px 12px rgba(254, 101, 168, 0.35);
        display: grid;
        grid-template-rows: 0fr;
        transition: all 0.4s ease;
    }
    .promo-popup__col {
    padding: 14px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 75vh;
    background-color: #fff;
}
    }
    .announcement-promo__popup-btn {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        top: 100%;
        cursor: pointer;
        z-index: 1;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 12px rgba(254, 101, 168, 0.35);
        padding: 2px 18px 6px;
    }
    .announcement-promo__popup-btn svg {
        width: 14px;
        height: 14px;
    }
    .promo-popup__close-btn {
        padding: 6px;
        background-color: #fff;
        position: absolute;
        top: 106%;
        left: 50%;
        transform: translate(-50%);
        z-index: 2;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        cursor: pointer;
    }
    .promo-popup__close-btn svg {
        width: 100%;
        height: 100%;
        display: block;
    }
    .promo-popup__data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 14px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        border-radius: 7px;
        margin-top: 14px;
    }
    .promo-popup__meta {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 1;
    }
    .promo-popup__image {
        max-width: 35px;
        flex: 35px;
    }
    .promo-popup__image img {
        width: 100%;
        height: 100%;
        display: block;
    }
    .promo-popup__sub-title p {
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
        flex: 1;
    }
    .promo-popup__icon {
        max-width: 16px;
        flex:16px;
    }
    .promo-popup__icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }
    .promo-popup__top {
        border-radius: 0.5em;
        overflow: hidden;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
    .promo-popup__title {
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        margin: 0;
        padding: 12px 14px;
        line-height: 1.2;
    }
    .promo-popup__sign-up {
        padding: 14px;
    }
    .promo-popup__text {
        font-size: 14px;
        text-align: center;
        max-width: 274px;
        margin: 0 auto 20px;
        font-weight: 500;
    }
    .promo-popup__text-bottom {
        margin-top: 10px;
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
        text-align: center;
    }
    .announcement-promo .form {
        display: flex;
        border-radius: 9999px;
        background-color: #ededed;
        position: relative;
    }
     .announcement-promo .form .form-control input {
        padding: 10px 40px 10px 22px;
       border: none;
       font-size: 14px;
    }
    .announcement-promo .align-self-start {
       padding: 6px 44px 6px 10px;
    }
    .announcement-promo .button {
        position: absolute;
        top: 3px;
        right: 4px;
        padding: 0;
        font-size: 14px;
        text-transform: capitalize;
        letter-spacing: 0;
        border: none;
        width: 100%;
        max-width: 38px;
        height: 38px;
    }
    
}/* =========================================================
   FIX — Announcement bar dropdown arrow (popup button) missing
   Cause: overflow clipping / stacking on mobile
   ========================================================= */

@media screen and (max-width: 999px){

  /* stop the slider/wrappers from clipping the popup button */
  .announcement-promo,
  .announcement-promo__row,
  .announcement-promo__slider,
  .promo-popup-anim{
    overflow: visible !important;
  }

  /* ensure the down-arrow button is actually visible + above content */
  .announcement-promo__popup-btn{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
  }

  .announcement-promo__popup-btn svg{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}*/