.cm-banner{
  position:fixed;
  left:0; right:0;
  z-index:9999;
  background:#fff;
  border-top:1px solid #ddd;
  box-shadow:0 -8px 28px rgba(0,0,0,.12);
  padding:16px 20px;
  font-family: Arial, sans-serif;
  color:#333;
}
.cm-top{ top:0; border-top:0; border-bottom:1px solid #ddd; box-shadow:0 4px 14px rgba(0,0,0,.08); }
.cm-bottom{ bottom:0; }

.cm-box{ max-width:760px; margin:16px auto; border:1px solid #ddd; border-radius:10px; }
.cm-bar{ border-radius:0; }

.cm-content{ max-width:960px; margin:0 auto; }
.cm-title{ font-weight:700; margin-bottom:6px; font-size:16px; }
.cm-message{ font-size:14px; line-height:1.5; }
.cm-policy a{ color:#144c8c; text-decoration:underline; font-size:13px; }

.cm-actions{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
.cm-btn{ border:1px solid #ccc; background:#fff; padding:8px 14px; cursor:pointer; border-radius:6px; font-weight:600; }
.cm-btn:hover{ background:#444; color:#fff; border-color:#444; }
.cm-accept{ background:#fa9403; border-color:#fa9403; color:#fff; }
.cm-decline{ background:#cf3d01; border-color:#cf3d01; color:#fff; }


.cm-btn {
	border: 1px solid #ccc;
	background: #fff;
	padding: 8px 14px;
	cursor: pointer;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}
.cm-btn:hover{
	opacity:0.8;
}
.cm-title {
	font-weight: 700;
	margin-bottom: 1px;
	font-size: 16px;
}

.cm-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cm-content{
  flex:1;
}

.cm-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  margin-left:auto;
}

.cm-policy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:200px;
}
.cm-policy-btn:hover{
	text-decoration: none;	
}
.cm-btn.cm-policy-btn {
	height: 18px;
}




@media (min-width: 980px){
  .cm-bar .cm-content{ display:flex; align-items:center; gap:16px; }
  .cm-bar .cm-actions{ margin-top:0; }
}

@media (max-width: 700px){
  .cm-actions{ width:100%; }
  .cm-btn{ width:100%; }
}


