/* Cookie consent bar. External file because the CSP forbids inline style.
   Accept and Reject are given identical size and weight on purpose: consent is only
   valid under GDPR if refusing is as easy as agreeing. */
.bm-consent{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:#12253a;color:#e8eef5;
	font:14px/1.55 Arial,Helvetica,sans-serif;box-shadow:0 -2px 14px rgba(0,0,0,.35);padding:16px 18px}
.bm-consent__inner{max-width:1120px;margin:0 auto;display:flex;flex-wrap:wrap;gap:16px;
	align-items:center;justify-content:space-between}
.bm-consent__text{flex:1 1 430px;margin:0}
.bm-consent__text a{color:#7fc0ff;text-decoration:underline}
.bm-consent__text a:hover{color:#a8d4ff}
.bm-consent__actions{display:flex;gap:10px;flex-shrink:0}
.bm-consent__btn{font:bold 14px/1 Arial,Helvetica,sans-serif;padding:12px 24px;border-radius:3px;
	border:1px solid transparent;cursor:pointer;min-width:132px}
.bm-consent__btn--accept{background:#1c7ed6;color:#fff}
.bm-consent__btn--reject{background:transparent;color:#e8eef5;border-color:#5a7591}
.bm-consent__btn:hover{opacity:.88}
.bm-consent__btn:focus-visible{outline:2px solid #7fc0ff;outline-offset:2px}
@media (max-width:620px){
	.bm-consent__actions{width:100%}
	.bm-consent__btn{flex:1 1 0;min-width:0;padding:12px 10px}
}
