/* Nikolo Garden cookie consent */
:root{
  --ngc-green:#123f2d;
  --ngc-deep:#0a2c20;
  --ngc-lime:#a8d54a;
  --ngc-cream:#f4f1e8;
  --ngc-orange:#d95a2b;
  --ngc-ink:#17221d;
  --ngc-muted:#68736c;
}
#ng-cookie-banner[hidden],#ng-cookie-modal[hidden]{display:none!important}
#ng-cookie-banner,#ng-cookie-modal{
  font-family:Arial,Helvetica,sans-serif;
}
#ng-cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:2147483645;
  width:min(1160px,calc(100% - 32px));
  margin:auto;
  padding:18px 20px;
  background:rgba(244,241,232,.98);
  color:var(--ngc-ink);
  border:1px solid rgba(18,63,45,.22);
  border-left:5px solid var(--ngc-orange);
  box-shadow:0 18px 60px rgba(18,63,45,.20);
  backdrop-filter:blur(12px);
}
.ngc-grid{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:26px;
}
.ngc-title{
  margin:0 0 6px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:22px;
  font-weight:400;
  color:var(--ngc-green);
}
.ngc-copy{
  margin:0;
  max-width:760px;
  font-size:13px;
  line-height:1.6;
  color:var(--ngc-muted);
}
.ngc-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.ngc-btn{
  appearance:none;
  border:1px solid rgba(18,63,45,.24);
  background:transparent;
  color:var(--ngc-green);
  padding:12px 16px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:.2s ease;
}
.ngc-btn:hover{transform:translateY(-1px);border-color:var(--ngc-green)}
.ngc-btn-primary{
  background:var(--ngc-orange);
  border-color:var(--ngc-orange);
  color:white;
}
.ngc-btn-primary:hover{background:#bd4720;border-color:#bd4720}
.ngc-btn-green{
  background:var(--ngc-green);
  border-color:var(--ngc-green);
  color:white;
}

#ng-cookie-modal{
  position:fixed;
  inset:0;
  z-index:2147483646;
  background:rgba(7,30,22,.78);
  display:grid;
  place-items:center;
  padding:18px;
}
.ngc-dialog{
  width:min(700px,100%);
  max-height:90vh;
  overflow:auto;
  background:var(--ngc-cream);
  color:var(--ngc-ink);
  box-shadow:0 24px 90px rgba(0,0,0,.35);
}
.ngc-head{
  padding:24px;
  background:var(--ngc-green);
  color:white;
}
.ngc-head h2{
  margin:0 0 6px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:30px;
  font-weight:400;
}
.ngc-head p{
  margin:0;
  color:#dbe6df;
  font-size:13px;
  line-height:1.55;
}
.ngc-body{padding:6px 24px}
.ngc-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  padding:20px 0;
  border-bottom:1px solid rgba(18,63,45,.16);
}
.ngc-row:last-of-type{border-bottom:0}
.ngc-row h3{
  margin:0 0 5px;
  font-family:Georgia,'Times New Roman',serif;
  font-size:19px;
  font-weight:400;
  color:var(--ngc-green);
}
.ngc-row p{
  margin:0;
  font-size:12.5px;
  line-height:1.55;
  color:var(--ngc-muted);
}
.ngc-foot{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  flex-wrap:wrap;
  padding:18px 24px;
  background:#ebe7dc;
  border-top:1px solid rgba(18,63,45,.14);
}
.ngc-switch{
  position:relative;
  width:48px;
  height:27px;
  display:inline-block;
}
.ngc-switch input{opacity:0;width:0;height:0}
.ngc-slider{
  position:absolute;
  inset:0;
  border-radius:999px;
  background:#aaa;
  cursor:pointer;
  transition:.2s;
}
.ngc-slider:before{
  content:"";
  position:absolute;
  width:19px;
  height:19px;
  left:4px;
  top:4px;
  border-radius:50%;
  background:white;
  transition:.2s;
}
.ngc-switch input:checked+.ngc-slider{background:var(--ngc-green)}
.ngc-switch input:checked+.ngc-slider:before{transform:translateX(21px)}
.ngc-switch input:disabled+.ngc-slider{opacity:.6;cursor:not-allowed}
.ngc-note{
  margin:4px 0 20px;
  font-size:11px;
  color:#7d857f;
}
.ng-cookie-footer-link{
  appearance:none;
  border:0;
  background:none;
  padding:0;
  color:inherit;
  cursor:pointer;
  font:inherit;
}
.ng-cookie-footer-link:hover{color:white}

@media(max-width:760px){
  #ng-cookie-banner{
    left:10px;
    right:10px;
    bottom:10px;
    width:calc(100% - 20px);
    padding:16px;
  }
  .ngc-grid{grid-template-columns:1fr}
  .ngc-actions{justify-content:stretch}
  .ngc-actions .ngc-btn{flex:1 1 100%}
  .ngc-foot .ngc-btn{flex:1 1 100%}
}
