.header img {
  width: 100%;
}

.cookie-alert {
  position: fixed;
  width: 80%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  bottom: -50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: all 500ms ease-out;
  text-align: center;
  box-shadow: -4px 4px 15px 0 rgba(68, 68, 68, 0.4);
  background: #fff;
  padding: 5px 0;
  border-radius: 10px;
}
.cookie-alert.show {
  opacity: 1;
  bottom: -1%;
  transition-delay: 1000ms;
}
.cookie-alert p {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  color: #000;
}
.cookie-alert .card-body {
  width: 80%;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 85% 15%;
}
.cookie-alert .card-body .accept-cookies {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.5s;
}
.cookie-alert .card-body .accept-cookies:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.fb-noscript-pixel {
  display: none;
}

@media screen and (max-width: 962px) {
  .cookie-alert .card-body {
    display: block !important;
  }
  .btn-toolbar {
    margin-top: 20px !important;
  }
  .cookie-alert {
    padding: 15px 0 !important;
  }
}
