.bg-yellow {background-color: yellow !important;}
.bg-done {background-color: #858585;}

.bb-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bb-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.bb-success-box {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transform: translateY(30px) scale(0.92);
  transition: all 0.35s ease;
  border-top: 6px solid #f59e0b;
}

.bb-success-modal.active .bb-success-box {
  transform: translateY(0) scale(1);
}

.bb-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f59e0b;
  color: #111;
  font-size: 42px;
  font-weight: 800;
  line-height: 72px;
}

.bb-success-box h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #111;
}

.bb-success-box p {
  margin: 0 0 24px;
  color: #666;
  font-size: 15px;
}

.bb-success-box button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}