.custom-alerts {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  width: calc(100vw - 16px);
  max-width: 520px;
}
@media (min-width: 568px) {
  .custom-alerts {
    top: 20px;
    right: 20px;
    left: inherit;
    transform: inherit;
  }
}
.custom-alerts > div {
  max-height: calc(100vh - 16px);
  overflow-y: auto;
}
.custom-alerts > div + div {
  margin-top: 20px;
}
.custom-alerts .info-alert {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 12px;
  width: 100%;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  border-right: 5px solid #721c24;
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.33);
}
.custom-alerts .info-alert > .icon-content {
  position: absolute;
  opacity: 0.09;
  left: -30px;
  top: 50%;
  transform: translateY(-35%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.custom-alerts .info-alert > .icon-content svg {
  width: 110px;
}
.custom-alerts .info-alert > .alert-content {
  flex: 1;
}
.custom-alerts .info-alert > .alert-content span.close {
  color: rgba(114, 28, 36, 0.8);
}
.custom-alerts .info-alert > .alert-content .alert-heading {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 24px;
  color: #721c24;
}
@media (min-width: 568px) {
  .custom-alerts .info-alert > .alert-content .alert-heading {
    text-align: left;
  }
}
.custom-alerts .info-alert > .alert-content .alert-body p {
  margin: 0;
  text-align: justify;
}
.custom-alerts .promo-alert {
  position: relative;
  padding: 12px;
  width: 100%;
  background-color: #eee;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid var(--color-secondary);
  border-radius: 4px;
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.33);
}
.custom-alerts .promo-alert .alert-heading {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 24px;
  color: var(--color-primary);
}
@media (min-width: 568px) {
  .custom-alerts .promo-alert .alert-heading {
    text-align: left;
  }
}
.custom-alerts .promo-alert .countdown-container .countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.custom-alerts .promo-alert .countdown-container .countdown > .countdown-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 6px);
  padding: 16px;
  margin: 0 0 12px 0;
  background-color: var(--color-primary);
  color: var(--text-color-primary);
  border-radius: 6px;
  text-align: center;
}
@media (min-width: 568px) {
  .custom-alerts .promo-alert .countdown-container .countdown > .countdown-item {
    width: calc(25% - 16px);
  }
}
.custom-alerts .promo-alert .countdown-container .countdown > .countdown-item > .countdown-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-secondary);
}
.custom-alerts .promo-alert .alert-body p {
  margin: 0;
  text-align: justify;
}/*# sourceMappingURL=index.css.map */