#nf-cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11000;
  width: min(960px, calc(100% - 20px));
  border-radius: 10px;
  padding: 12px 14px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

#nf-cookie-banner.nf-open {
  display: flex;
}

#nf-cookie-banner.nf-pos-bottom {
  bottom: 14px;
}

#nf-cookie-banner.nf-pos-top {
  top: 14px;
}

#nf-cookie-banner.nf-style-dark {
  background: #121212;
  color: #f7f7f7;
}

#nf-cookie-banner.nf-style-light {
  background: #ffffff;
  color: #222222;
  border: 1px solid #d0d0d0;
}

#nf-cookie-banner.nf-style-charcoal {
  background: #222222;
  color: #d0a35c;
  border: 1px solid #7d653a;
}

#nf-cookie-banner button {
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}

#nf-cookie-banner.nf-style-light button {
  background: #1f2937;
  color: #fff;
}

#nf-cookie-banner.nf-style-dark button,
#nf-cookie-banner.nf-style-charcoal button {
  background: #d0a35c;
  color: #161616;
}

@media (max-width: 680px) {
  #nf-cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  #nf-cookie-banner button {
    margin-left: 0;
  }
}
