/* CAFEX Subscribe v2 */
.cafex-subscribe-form .error-message{display:block;color:#ff4d4f;font-size:13px;margin:6px 0 10px}
.cafex-subscribe-form .sent-message{display:block;margin-top:14px;padding:14px 16px;border-radius:10px;background:rgba(25,135,84,.12);color:#198754;font-weight:700}
.cafex-hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.cafex-consent-check{display:flex;align-items:flex-start;gap:10px;margin:10px 0;font-size:13px;line-height:1.35;color:inherit}
.cafex-consent-check input{margin-top:3px;flex:0 0 auto;accent-color:#ff7002}
.cafex-consent-check a{color:var(--accent-color,#ff7002);text-decoration:underline;text-underline-offset:3px}
.cafex-subscribe-form-cta .cafex-subscribe-input-group{display:flex;flex-direction:row;gap:10px}
.cafex-subscribe-form-cta .cafex-subscribe-email{min-height:46px;border-radius:10px!important}
.cafex-subscribe-form-cta .cafex-subscribe-button{min-height:46px;border-radius:10px!important;white-space:nowrap}
@media(max-width:575px){.cafex-subscribe-form-cta .cafex-subscribe-input-group{flex-direction:column}.cafex-subscribe-form-cta .cafex-subscribe-button,.cafex-subscribe-form-cta .cafex-subscribe-email{width:100%}}
.footer-newsletter .cafex-subscribe-form-footer{margin-top:18px;width:100%;max-width:100%}
.footer-newsletter .cafex-footer-subscribe-stack{display:flex!important;flex-direction:column!important;gap:10px!important;width:100%!important}
.footer-newsletter .cafex-subscribe-form-footer .cafex-subscribe-email{display:block!important;visibility:visible!important;opacity:1!important;width:100%!important;min-width:0!important;max-width:100%!important;height:46px!important;padding:10px 14px!important;border-radius:10px!important;box-sizing:border-box!important}
.footer-newsletter .cafex-subscribe-form-footer .cafex-subscribe-button{display:flex!important;align-items:center;justify-content:center;width:100%!important;height:46px!important;margin:0!important;padding:0 18px!important;border-radius:10px!important;white-space:nowrap;font-weight:700}
.footer-newsletter .cafex-subscribe-form-footer .cafex-consent-check{color:rgba(255,255,255,.72);font-size:12px;line-height:1.38;margin:10px 0}
.footer-newsletter .cafex-subscribe-form-footer .sent-message{background:rgba(255,112,2,.13);color:#fff;border:1px solid rgba(255,112,2,.36);border-radius:12px}
.footer-newsletter .cafex-newsletter-note{margin-top:14px;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.76);font-size:13px;line-height:1.4}
.footer-newsletter .cafex-newsletter-note i{color:#ff7002;margin-right:6px}
.footer-newsletter .cafex-newsletter-note strong{color:#fff;font-weight:800}

/* --- FIX: footer submit button was position:absolute (from main.css .footer .footer-newsletter form button),
   overlapping and hiding the e-mail input. Return it to normal flow in the stacked footer form. --- */
.footer-newsletter .cafex-subscribe-form-footer { position: static; }
.footer-newsletter .cafex-subscribe-form-footer .cafex-subscribe-button {
  position: static !important;
  top: auto !important;
  right: auto !important;
}
.footer-newsletter .cafex-subscribe-form-footer .cafex-subscribe-email {
  position: relative;
  z-index: 1;
}

/* AJAX loading indicator: hidden by default and shown only during the October CMS request. */
.cafex-subscribe-form .cafex-subscribe-loading{
  display:none;
  margin:10px 0 0;
  font-size:13px;
  line-height:1.4;
  font-weight:600;
  color:var(--default-color,currentColor);
}
.cafex-subscribe-form .cafex-subscribe-loading::before{
  content:"";
  display:inline-block;
  width:16px;
  height:16px;
  margin:0 8px -3px 0;
  border:2px solid rgba(255,112,2,.28);
  border-top-color:var(--accent-color,#ff7002);
  border-radius:50%;
  animation:cafex-subscribe-spin .75s linear infinite;
}
@keyframes cafex-subscribe-spin{to{transform:rotate(360deg)}}
