/* Согласие на обработку ПДн (чекбоксы в формах) */
.consent_line { margin: 12px 0 4px; width: 100%; }
.consent_label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; line-height: 1.4; color: #555; font-weight: 400; }
.consent_label input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: #ea2223; cursor: pointer; }
.consent_label a { color: #ea2223; text-decoration: underline; }
.consent_label a:hover { text-decoration: none; }

/* Cookie-баннер */
#cookie_banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 99999; background: #1f1f1f; color: #fff; padding: 16px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.25); font-size: 14px; line-height: 1.45; }
#cookie_banner .cookie_inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
#cookie_banner .cookie_text { flex: 1 1 500px; }
#cookie_banner .cookie_text a { color: #fff; text-decoration: underline; }
#cookie_banner .cookie_btn { flex: 0 0 auto; background: #ea2223; color: #fff; border: 0; border-radius: 6px; padding: 11px 26px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; }
#cookie_banner .cookie_btn:hover { background: #c81b1c; }
@media (max-width: 767px) {
    #cookie_banner { padding: 14px 16px; font-size: 13px; }
    #cookie_banner .cookie_btn { width: 100%; }
}
