/* CMR COOKIE CONSENT — banner condiviso dalle pagine del funnel Rilancio Imprese Edili. */
.cmr-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: #071d31;
  color: #dce6ed;
  font-family: 'Instrument Sans', -apple-system, 'Segoe UI', Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 -12px 30px rgba(4, 18, 35, 0.28);
}
.cmr-cookie-bar p {
  margin: 0;
  flex: 1 1 420px;
  max-width: 760px;
}
.cmr-cookie-bar a {
  color: #f4ad24;
  text-decoration: underline;
}
.cmr-cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}
.cmr-cookie-bar button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.cmr-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.cmr-cookie-accept {
  background: #f4ad24;
  border: 2px solid #f4ad24;
  color: #071d31;
}
@media (max-width: 640px) {
  .cmr-cookie-bar {
    padding: 16px;
  }
  .cmr-cookie-actions {
    width: 100%;
    margin-left: 0;
  }
  .cmr-cookie-actions button {
    flex: 1 1 auto;
  }
}
