.dcmp-cart-notices-wrapper {
  margin: 20px 0px;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.dcmp-cart-notices-wrapper .dcmp-message-box {
  padding: 10px !important;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 70px;
}

.dcmp-cart-notices-wrapper .dcmp-message-box .dcmp-content-main-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dcmp-cart-notices-wrapper .dcmp-message-box.dcmp-threshold-reached {
  background-color: #bff9d0 !important;
  color: #299c77 !important;
}

.dcmp-cart-notices-wrapper .dcmp-message-box button.dcmpfwc-button {
  margin: 0px;
  padding: 10px;
  font-weight: 500;
  line-height: inherit;
  border: none;
}

.dcmp-cart-notices-wrapper .dcmp-message-box button.dcmpfwc-button a {
  text-decoration: none;
}

.dcmp-cart-notices-wrapper .dcmp-message-box button.dcmpfwc-button:hover {
  text-decoration: underline;
}

@media screen and (max-width: 550px) {
  .dcmp-cart-notices-wrapper .dcmp-message-box {
    flex-direction: column;
  }
}

/* ===== SaffireTech - Quick Links Section CSS ===== */

/* Main Container */
.sft-quick-links-section {
  position: fixed;
  z-index: 999999;
  bottom: 50px;
  right: 50px;
}

/* Main Icon */
.sft-quick-links-section button.sft-quick-links-menu-icon {
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
}

.sft-quick-links-section .sft-quick-links-menu-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #9d9d9d;
  background-color: #FFF;
}

/* Quick Links Menu */
.sft-quick-links-menu-items {
  display: none;
  position: absolute;
  bottom: 80px;
  width: 100%;
}

.sft-quick-links-menu-items .sft-quick-links-flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sft-quick-links-menu-items .sft-quick-links-flex-container button {
  padding: 5px !important;
  display: flex;
  border-radius: 50%;
  border: none;
  background-color: #FFF;
  box-shadow: 0px 0px 10px #bdbdbd;
  cursor: pointer;
}

.sft-quick-links-flex-container .sft-quick-links-tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.sft-quick-links-flex-container .sft-quick-links-tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.sft-quick-links-flex-container .sft-quick-links-tooltip-wrapper:hover .sft-quick-links-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ===== Black Friday Sale Notice - Admin Page ===== */

.sft-plugin-sale-notice-black-friday {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background: #1c2227;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sft-plugin-sale-notice-black-friday.notice-warning {
  border-left-color: #D63638;
}

.sft-plugin-sale-notice-black-friday h3 {
  color: #fff !important;
  margin-bottom: 0px;
}

.sft-plugin-sale-notice-black-friday p {
  font-size: 14px;
  margin-bottom: 15px;
}

.sft-plugin-sale-notice-black-friday p b {
  font-size: 16px;
  color: #21cd6d;
}

.sft-plugin-sale-notice-black-friday h4 {
  margin-bottom: 0px !important;
}

.sft-plugin-sale-notice-black-friday a {
  display: inline-block;
}

.sft-plugin-sale-notice-black-friday .sft-plugin-sale-notice-button {
  padding: 12px 20px;
  min-width: 250px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: white;
  background-color: #df1f1f;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.sft-plugin-sale-notice-black-friday .sft-plugin-sale-notice-button:hover {
  transform: scale(1.05);
}

.sft-plugin-sale-notice-black-friday .sft-plugin-sale-notice-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.377);
  box-shadow: 0px 0px 20px 5px #ffffffa1;
  opacity: 0;
  animation: shine_sale_btn 3s infinite;
}

/* Keyframes for the shine animation */
@keyframes shine_sale_btn {
  0% {
    left: -75px;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    left: 160%;
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}


/* ===== BFCM Sale Popup Design CSS ===== */
.sft-quick-links-popup {
  display: none;
  position: absolute;
  background: #000;
  bottom: 80px;
  right: 5px;
  z-index: 9999999;
}

.sft-quick-links-popup .sft-sale-notice-popup-inner {
  padding: 20px;
  height: 340px;
  width: 280px;
}

.sft-quick-links-popup .sft-ql-popup-content img {
  display: block;
  margin: 0 auto;
}

.sft-quick-links-popup .sft-ql-popup-close-container {
  display: flex;
  justify-content: flex-end;
}

.sft-ql-popup-btn-container {
  text-align: center;
}

.sft-sale-popup-heading {
  text-align: center;
  color: #FFF;
  font-size: 20px;
}

.sft-ql-popup-btn-container .sft-ql-popup-deal-btn {
  padding: 12px 25px;
  margin: 20px auto;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white;
  background-color: #df1f1f;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.sft-ql-popup-btn-container .sft-ql-popup-deal-btn:hover {
  transform: scale(1.05);
}

.sft-ql-popup-btn-container .sft-ql-popup-deal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.377);
  box-shadow: 0px 0px 20px 5px #ffffffa1;
  opacity: 0;
  animation: shine_sale_btn 3s infinite;
}

/* Countdown Timer CSS */
#sft-popup-sale-countdown-timer-container {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 250px;
}

.sft-ql-popup-content #sft-popup-sale-countdown-timer-container {
  margin: 0 auto;
}

#sft-popup-sale-countdown-timer-container .sft-sale-popup-countdown-colon {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

#sft-popup-sale-countdown-timer-container .sft-sale-popup-number-container {
  flex: 1;
  padding: 5px 10px;
  border-radius: 5px;
  color: #000;
  background: #FFF;
  text-align: center;
}

.notice #sft-popup-sale-countdown-timer-container .sft-sale-popup-number-container {
  color: #000;
  background-color: #FFF;
}

#sft-popup-sale-countdown-timer-container .sft-sale-popup-number-container .time {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

#sft-popup-sale-countdown-timer-container .sft-sale-popup-number-container .sft-sale-popup-countdown-text {
  font-size: 10px;
}