/* ==========================================================
   BEORGANIC Commerce Motivation
   Gift progress, low stock notice and sale countdown.
   ========================================================== */

.bo-gift-progress {
  display: block;
  width: 100%;
  margin: 16px 0;
  padding: 16px 18px;
  border: 1px solid rgba(120, 137, 116, 0.22);
  border-radius: 10px;
  box-sizing: border-box;
  background: #f7f5f0;
  color: #2f332d;
  font-family: inherit;
}

.bo-gift-progress strong {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.bo-gift-progress span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.bo-gift-progress-bar {
  display: block;
  width: 100%;
  height: 7px;
  margin: 12px 0 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(120, 137, 116, 0.18);
}

.bo-gift-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #788974;
  transition: width 180ms ease;
}

.bo-stock-alert,
.bo-stock-alert-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  background: #fff4e4;
  color: #8a4a18;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.bo-stock-alert {
  margin: 6px auto 0;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.25;
}

.bo-stock-alert-detail {
  margin: 10px 0 12px;
  padding: 8px 13px;
  font-size: 14px;
  line-height: 1.25;
}

.bo-sale-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  background: #f4eee5;
  color: #6f432c;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.bo-sale-countdown-card {
  margin: 6px auto 0;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.25;
}

.bo-sale-countdown-detail {
  margin: 8px 0 10px;
  padding: 8px 13px;
  font-size: 14px;
  line-height: 1.25;
}

.bo-countdown-source {
  display: none !important;
}

@media (max-width: 768px) {
  .bo-gift-progress {
    margin: 14px 0;
    padding: 14px;
  }

  .bo-stock-alert,
  .bo-sale-countdown-card {
    font-size: 11px;
    padding: 5px 8px;
  }
}
