.customer-site-notices {
  position: relative;
  z-index: 1040;
}

.customer-site-notice-banner {
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.customer-site-notice-banner.is-normal {
  color: #1e3a8a;
  background: #eff6ff;
}

.customer-site-notice-banner.is-important {
  color: #854d0e;
  background: #fefce8;
}

.customer-site-notice-banner.is-urgent {
  color: #991b1b;
  background: #fef2f2;
}

.customer-site-notice-inner {
  display: grid;
  max-width: 1320px;
  min-height: 44px;
  padding: 9px 24px;
  margin: 0 auto;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.customer-site-notice-inner > i {
  font-size: 17px;
}

.customer-site-notice-inner strong,
.customer-site-notice-inner span {
  display: block;
}

.customer-site-notice-inner strong {
  font-size: 12px;
  font-weight: 850;
}

.customer-site-notice-inner span {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
}

.customer-site-notice-close {
  padding: 4px;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: 16px;
}

.customer-site-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: none;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.customer-site-notice-modal.is-open {
  display: flex;
}

.customer-site-notice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .52);
}

.customer-site-notice-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .24);
  text-align: center;
}

.customer-site-notice-modal-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.customer-site-notice-modal-icon.is-normal {
  color: #1d4ed8;
  background: #eff6ff;
}

.customer-site-notice-modal-icon.is-important {
  color: #a16207;
  background: #fefce8;
}

.customer-site-notice-modal-icon.is-urgent {
  color: #dc2626;
  background: #fef2f2;
}

.customer-site-notice-modal-dialog h2 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 20px;
}

.customer-site-notice-modal-message {
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .customer-site-notice-inner {
    padding: 9px 14px;
  }

  .customer-site-notice-inner strong {
    font-size: 11px;
  }

  .customer-site-notice-inner span {
    font-size: 10px;
  }
}

