.black-friday {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.black-friday .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;
}
.black-friday .banner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #ffec00;
  padding: 10px 20px;
  gap: 10px;
  font-family: sans-serif;
  position: fixed;
  width: 100%;
  top: 0;
  background-image: url("../../images/countdown-timer/bg-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.black-friday .banner .text {
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}
.black-friday .banner .timer {
  display: flex;
  gap: 10px;
  margin: 0 15px;
}
.black-friday .banner .timer .unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.black-friday .banner .timer .unit .box {
  background-color: #ffec00;
  color: black;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}
.black-friday .banner .timer .unit small {
  font-size: 12px;
  color: #ffec00;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .black-friday .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.black-friday .banner .learn-btn {
  background-color: #ffec00;
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.black-friday .banner .close-btn {
  position: absolute;
  right: 19px;
  top: 18px;
  cursor: pointer;
  font-size: 26px;
  opacity: 0.6;
}/*# sourceMappingURL=black-friday.css.map */