/*__FILE_VERSION__: 1__*/
.ef-consent-banner,
.ef-consent-modal-overlay,
.ef-consent-manage{
  font-family:Arial, Helvetica, sans-serif;
}
.ef-consent-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9998;
  border-radius:22px;
  background:#11181c;
  color:#eef6f4;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 24px 60px rgba(0,0,0,0.28);
  padding:18px;
}
.ef-consent-banner[hidden],
.ef-consent-modal-overlay[hidden],
.ef-consent-manage[hidden]{
  display:none !important;
}
.ef-consent-title{
  font-size:18px;
  line-height:1.2;
  margin-bottom:8px;
  font-weight:700;
}
.ef-consent-text{
  color:#d2dcda;
  font-size:14px;
  line-height:1.55;
}
.ef-consent-text a{
  color:#93fff0;
}
.ef-consent-actions{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}
.ef-consent-btn{
  appearance:none;
  border:1px solid #7ce3d1;
  background:#1d2a2d;
  color:#eef6f4;
  padding:12px 14px;
  border-radius:14px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  min-height:48px;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.ef-consent-btn:hover{
  transform:translateY(-1px);
  background:#233337;
}
.ef-consent-btn:focus-visible{
  outline:2px solid #7ce3d1;
  outline-offset:2px;
}
.ef-consent-btn-primary{
  background:#7ce3d1;
  color:#0f1718;
}
.ef-consent-btn-primary:hover{
  background:#90f1e0;
}
.ef-consent-manage{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:9997;
  appearance:none;
  border:1px solid rgba(255,255,255,0.2);
  background:#11181c;
  color:#eef6f4;
  border-radius:999px;
  padding:12px 16px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,0.2);
}
.ef-consent-modal-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(7,11,13,0.72);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  backdrop-filter:blur(6px);
}
.ef-consent-modal{
  width:min(900px,100%);
  max-height:min(86vh,920px);
  overflow:auto;
  background:#11181c;
  color:#eef6f4;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 24px 60px rgba(0,0,0,0.34);
  padding:22px;
}
.ef-consent-modal h2{
  font-size:24px;
  margin-bottom:10px;
}
.ef-consent-modal p{
  color:#d2dcda;
  line-height:1.6;
}
.ef-consent-modal-top,
.ef-consent-modal-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.ef-consent-categories{
  display:grid;
  gap:14px;
  margin:18px 0;
}
.ef-consent-category{
  border:1px solid rgba(255,255,255,0.1);
  border-radius:18px;
  padding:16px;
  background:rgba(255,255,255,0.03);
}
.ef-consent-category-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.ef-consent-category-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:4px;
}
.ef-consent-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.ef-consent-meta div{
  background:rgba(255,255,255,0.05);
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  line-height:1.45;
}
.ef-switch{
  position:relative;
  width:56px;
  min-width:56px;
  height:32px;
}
.ef-switch input{
  appearance:none;
  width:56px;
  height:32px;
  margin:0;
  border-radius:999px;
  background:#4c6166;
  cursor:pointer;
  transition:background .2s ease;
}
.ef-switch input:checked{
  background:#7ce3d1;
}
.ef-switch input:disabled{
  opacity:1;
  cursor:not-allowed;
  background:#7ce3d1;
}
.ef-switch span{
  position:absolute;
  top:4px;
  left:4px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#ffffff;
  pointer-events:none;
  transition:transform .2s ease;
}
.ef-switch input:checked + span{
  transform:translateX(24px);
}
.ef-consent-note{
  font-size:13px;
  color:#b8c8c5;
  margin-top:4px;
}
.ef-consent-resource-block{
  border:1px dashed rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.04);
  border-radius:18px;
  padding:18px;
  color:#eef6f4;
}
.ef-consent-resource-block p{
  margin-bottom:12px;
}
.ef-consent-resource-block button{
  appearance:none;
  border:1px solid #7ce3d1;
  background:transparent;
  color:#eef6f4;
  border-radius:999px;
  padding:10px 14px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
@media (max-width: 768px){
  .ef-consent-banner{
    left:10px;
    right:10px;
    bottom:10px;
    padding:16px;
    border-radius:18px;
  }
  .ef-consent-actions{
    grid-template-columns:1fr;
  }
  .ef-consent-manage{
    left:10px;
    right:10px;
    bottom:10px;
    border-radius:16px;
  }
  .ef-consent-modal{
    padding:16px;
    border-radius:20px;
  }
  .ef-consent-modal h2{
    font-size:21px;
  }
  .ef-consent-meta{
    grid-template-columns:1fr;
  }
}
