.special-offer-banner .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  gap: 10px;
  font-family: sans-serif;
  position: fixed;
  width: 100%;
  bottom: 0;
}
@media (max-width: 768px) {
  .special-offer-banner .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.special-offer-banner .banner p {
  text-align: center;
}
.special-offer-banner .banner p .text {
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}
.special-offer-banner .banner .timer {
  display: flex;
  gap: 10px;
  margin: 0 15px;
}
.special-offer-banner .banner .timer .unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.special-offer-banner .banner .timer .unit .box {
  background-color: #ffec00;
  color: black;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}
.special-offer-banner .banner .timer .unit small {
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}
.special-offer-banner .banner .learn-btn {
  background-color: rgb(255, 111, 27);
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 2px;
  font-weight: bold;
  cursor: pointer;
}
.special-offer-banner .banner .close-btn {
  position: absolute;
  right: 19px;
  top: 18px;
  cursor: pointer;
  font-size: 26px;
  opacity: 0.6;
}

.unit .note-box {
  background-color: #f9f9f9;
  color: #555;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 20px auto;
}/*# sourceMappingURL=special-offer-banner.css.map */