/** Shopify CDN: Minification failed

Line 176:13 Expected ")" to end URL token

**/
#shopify-buyer-consent {
  display: none !important;
}
.custom-color-link {
  animation: customColorChange 5s linear infinite;
}
.menu-link-important {
  color: var(--primary-btn-color);
}
.mega-menu__column .mega-menu__title {
  color: #43b3ae;
}
.mega-menu__image-push,
.mega-menu__heading {
  text-align: left;
}
.rc-popup-inner .button {
  background-color: #52dfd1;
  color: #fff;
}
.rc-popup-inner .rc-discountCode {
  border: dashed 3px #ff74ad;
  max-width: 260px;
  margin: 0 auto;
  background-color: #ffeaf3;
  padding: 5px;
}
.rc-popup-inner .rc-copyButton svg {
  stroke: #ff74ad;
}

@keyframes customColorChange {
  0% {
    color: rgb(241, 71, 71);
  }
  12.5% {
    color: rgb(223, 142, 36);
  }
  25% {
    color: rgb(225, 228, 52);
  }
  37.5% {
    color: rgb(107, 230, 107);
  }
  50% {
    color: rgb(53, 182, 182);
  }
  62.5% {
    color: rgb(75, 90, 224);
  }
  75% {
    color: rgb(132, 36, 161);
  }
  87.5% {
    color: rgb(241, 181, 191);
  }
  100% {
    color: rgb(241, 71, 71);
  }
}

.gift-toast {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.gift-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* recharge gifting */

.rc_gifting_container .field {
  display: flex;
  width: 100%;
  flex-direction: column-reverse;
}
.rc_gifting_container .field:nth-child(4) {
  display: flex;
}
.rc_gifting_container .rc_gift_field {
  width: 100%;
  border-radius: 5px;
  padding: 8px 8px 8px 20px;
  border: 1px solid grey;
}
.rc_gifting_container .rc_gifting_recipient_block legend {
  margin-bottom: 10px;
  font-size: 20px;
  color: black;
}
.rc_gifting_container .rc_gifting_recipient_block {
  padding-bottom: 0 !important;
}
.rc_gifting_container input::placeholder {
  color: transparent;
}
.rc_gifting_container .text-area {
  resize: none;
}
.rc_gifting_container .text-area::placeholder {
  color: transparent;
}
.rc_gifting_container label.field__label {
  margin-bottom: 10px;
  margin-left: 5px;
}

/* BOGOS Gift Modal */
.brand-mark span {
  display: none !important;
}
.brand-mark {
  background-color: transparent !important;
}
.gift-original-url img {
  border-radius: 5px;
}
.glider-contain .btn-add-to-cart {
  background-color: #dfff00 !important;
  color: black !important;
}
#sca-gift-icon img {
  display: none !important;
}
.freegifts-main-container a.gift-original-url .product-item-thumbnail {
  max-height: 200px !important;
}
p.product-title {
  display: flex;
  margin-left: 9px;
  margin-bottom: 0px;
  font-size: 14px !important;
}
p.product-title.variant-title {
  margin-top: 5px;
  margin-bottom: 5px !important;
}
.freegifts-main-container .d-flex.price-section {
  justify-content: flex-start !important;
  gap: 10px !important;
  margin-left: 9px !important;
  font-size: 13px !important;
}

.promotion-block .product-item__info {
  text-align: center;
}

.article__nav {
  display: none !important;
}

@font-face {
  font-family: "Harrington";
  src: url({{"HARRINGT"|asset_url}}) format("woff2");
}

.filepond--panel-bottom.filepond--item-panel {
  box-shadow: none !important;
}

.featured-collections .product-item__cta.button {
  width: 100% !important;
  line-height: 20px !important;
  padding: 10px 5px !important;
}

.cl-upload--error {
  color: red !important;
}

/* Loading Screen */

.load-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 180px);
  width: 100%;
}
.load-screen .spinner {
  width: 50px;
  height: 50px;
  color: #ff74ad;
}
.omniflow-load-screen {
  background-color: #ffeaf3;
  min-height: 100vh;
}
.load-screen.hidden {
  display: none;
}
.spinner-rotate {
  transform-origin: 12px 12px;
  animation: rotate 2s linear infinite;
}
.spinner-circle {
  stroke-dasharray: 0 150;
  stroke-dashoffset: 0;
  animation: dash 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 0 150;
    stroke-dashoffset: 0;
  }
  47.5% {
    stroke-dasharray: 42 150;
    stroke-dashoffset: -16;
  }
  95% {
    stroke-dasharray: 42 150;
    stroke-dashoffset: -59;
  }
  100% {
    stroke-dasharray: 42 150;
    stroke-dashoffset: -59;
  }
}