
/* YDP Cookie Consent */
:root{
  --ydp-cookie-navy:#082a46;
  --ydp-cookie-green:#58c83d;
  --ydp-cookie-muted:#607381;
  --ydp-cookie-line:#dbe5ea;
}
.ydp-cookie-banner,
.ydp-cookie-modal{
  font-family:Inter,Arial,sans-serif;
}
.ydp-cookie-banner{
  position:fixed;
  z-index:9999;
  left:18px;
  right:18px;
  bottom:18px;
  max-width:1180px;
  margin:0 auto;
  display:none;
  align-items:center;
  gap:18px;
  padding:17px 18px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  background:rgba(8,42,70,.98);
  color:#fff;
  box-shadow:0 18px 55px rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
}
.ydp-cookie-banner.is-visible{display:flex}
.ydp-cookie-copy{flex:1;min-width:0}
.ydp-cookie-kicker{
  display:block;
  margin-bottom:4px;
  color:#86ee70;
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.ydp-cookie-copy strong{
  display:block;
  margin-bottom:3px;
  font-size:14px;
  line-height:1.35;
}
.ydp-cookie-copy p{
  margin:0;
  color:#d5e1e8;
  font-size:10.5px;
  line-height:1.55;
}
.ydp-cookie-copy a{
  color:#9af385;
  font-weight:800;
  text-decoration:none;
}
.ydp-cookie-actions{
  display:flex;
  gap:8px;
  flex:0 0 auto;
}
.ydp-cookie-btn{
  border:1px solid rgba(255,255,255,.2);
  border-radius:9px;
  padding:10px 13px;
  font:800 10px Inter,Arial,sans-serif;
  cursor:pointer;
}
.ydp-cookie-btn.accept{
  background:var(--ydp-cookie-green);
  border-color:var(--ydp-cookie-green);
  color:#fff;
}
.ydp-cookie-btn.reject,
.ydp-cookie-btn.manage{
  background:#fff;
  color:var(--ydp-cookie-navy);
}
.ydp-cookie-modal-wrap{
  position:fixed;
  z-index:10000;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(3,20,33,.70);
}
.ydp-cookie-modal-wrap.is-visible{display:flex}
.ydp-cookie-modal{
  width:min(560px,100%);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:20px;
  box-shadow:0 24px 80px rgba(0,0,0,.3);
}
.ydp-cookie-modal-head{
  padding:23px 24px 18px;
  background:var(--ydp-cookie-navy);
  color:#fff;
}
.ydp-cookie-modal-head span{
  color:#86ee70;
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.ydp-cookie-modal-head h2{
  margin:5px 0 0;
  color:#fff;
  font-size:23px;
}
.ydp-cookie-modal-body{padding:22px 24px}
.ydp-cookie-modal-body>p{
  margin:0 0 17px;
  color:var(--ydp-cookie-muted);
  font-size:11px;
  line-height:1.6;
}
.ydp-cookie-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:15px 0;
  border-top:1px solid var(--ydp-cookie-line);
}
.ydp-cookie-row:first-of-type{border-top:0}
.ydp-cookie-row strong{
  display:block;
  color:var(--ydp-cookie-navy);
  font-size:12px;
}
.ydp-cookie-row p{
  margin:4px 0 0;
  color:var(--ydp-cookie-muted);
  font-size:10px;
  line-height:1.5;
}
.ydp-cookie-status{
  flex:0 0 auto;
  align-self:center;
  color:#2f9f28;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
}
.ydp-cookie-switch{
  position:relative;
  width:42px;
  height:24px;
  flex:0 0 auto;
  align-self:center;
}
.ydp-cookie-switch input{
  opacity:0;
  width:0;
  height:0;
}
.ydp-cookie-slider{
  position:absolute;
  inset:0;
  border-radius:999px;
  background:#cdd8de;
  cursor:pointer;
  transition:.2s;
}
.ydp-cookie-slider:before{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  left:3px;
  top:3px;
  border-radius:50%;
  background:#fff;
  transition:.2s;
  box-shadow:0 1px 3px rgba(0,0,0,.2);
}
.ydp-cookie-switch input:checked + .ydp-cookie-slider{
  background:var(--ydp-cookie-green);
}
.ydp-cookie-switch input:checked + .ydp-cookie-slider:before{
  transform:translateX(18px);
}
.ydp-cookie-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  padding:17px 24px 22px;
  border-top:1px solid var(--ydp-cookie-line);
}
.ydp-cookie-settings-link{
  background:none;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
  text-decoration:underline;
  cursor:pointer;
}
@media(max-width:760px){
  .ydp-cookie-banner{
    left:10px;right:10px;bottom:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .ydp-cookie-banner.is-visible{display:flex}
  .ydp-cookie-actions{display:grid;grid-template-columns:1fr 1fr}
  .ydp-cookie-btn.accept{grid-column:1/-1}
  .ydp-cookie-modal-actions{display:grid;grid-template-columns:1fr 1fr}
  .ydp-cookie-modal-actions .accept{grid-column:1/-1}
}
