/* FONT */
@font-face {
  font-family: 'Poppins';
  src: url('/modules/creativeelements/views/fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* BOX PRINCIPALE */
.oer-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f5f7f9; /* box attivo */
  border: none !important; /* niente bordo */
  box-shadow: none !important;
  margin: 1rem 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-align: center;
}

/* RIGA PRINCIPALE */
.oer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap; /* UNA SOLA RIGA */
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  width: 100%;
}

/* ICONA SVG NERA */
.oer-text::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-color: #000;

  -webkit-mask: url('/modules/ordinaentroricevi/Consegna-veloce.svg') no-repeat center;
  mask: url('/modules/ordinaentroricevi/Consegna-veloce.svg') no-repeat center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

/* TESTO */
.oer-label,
.oer-countdown,
.oer-date {
  color: #000 !important;
}

.oer-countdown,
.oer-date {
  font-weight: 700;
}

/* SOTTOTESTO */
.oer-subtext {
  width: 100%;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
  opacity: 0.7;
  text-align: center;
}

/* MOBILE */
@media (max-width: 767px) {
  .oer-banner {
    padding: 10px 12px;
  }

  .oer-text {
    font-size: 14px;
    gap: 8px;
  }

  .oer-text::before {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .oer-subtext {
    font-size: 10px;
  }
}