.custom-bogo-badge {
  display: inline-block;
  background-color: #151b4e;
  color: #ffffff;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 5px;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 999;
}

.b1t1-text {
  font-size: 14px;
  color: #011f7c;
  margin-top: 10px;
  font-weight: 700;
}

.b1t1-accordion {
  border: 1px solid #011f7c;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 25px;
}

.b1t1-accordion.active {
  border: 1px solid #c41e3a;
}

.b1t1-accordion-button {
  background-color: #011f7c;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  text-align: left;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 15px;
  width: 100%;
  position: relative;
}

.b1t1-accordion-button.active {
  background-color: #c41e3a;
}

.b1t1-accordion-button .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #fff;
  content: "";
  transition: transform 0.3s;
}

.b1t1-accordion-button.active .arrow {
  transform: translateY(-50%) rotate(90deg);
}

.b1t1-accordion-content {
  padding: 15px 10px 0 10px;
  font-weight: 400;
  display: block;
  overflow: hidden;
  color: #011f7c;
  background-color: #ffffff;
}

.bogo-countdown {
  background: #151b4e;
  padding: 30px 0;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.bogo-countdown .bogo-label {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
}
.bogo-countdown .bogo-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bogo-countdown .time-box {
  background: #fff;
  font-size: 24px;
  color: #c41e3a;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: bold;
  min-width: 70px;
  text-align: center;
  position: relative;
  transition: transform 0.6s;
  perspective: 1000px;
}
.bogo-countdown .time-box span.label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #c41e3a;
}

@keyframes pageFlip {
  0% {
    transform: rotateX(0);
  }
  50% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0);
  }
}
@media (max-width: 768px) {
  .time-box {
    font-size: 16px !important;
    padding: 5px !important;
    min-width: 50px !important;
  }
  .time-box .label {
    margin-top: 2px !important;
    font-size: 8px !important;
  }
  .bogo-label {
    font-size: 20px !important;
  }
}/*# sourceMappingURL=bogo.css.map */