.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--wowwood-blue-dark);
  color: #fff;
  padding: 1rem 5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}
.cookie-consent__inner {
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-consent__text {
  margin-right: 1rem;
  color: #fff;
}
.cookie-consent__text a {
  color: #fff;
  font-weight: 600;
}
.cookie-consent__btn {
  cursor: pointer;
  border: 0;
  /*border-radius: 0.5rem;*/
  padding: 0.6rem 1rem;
  font-weight: 600;
  background: #fff;
  color: var(--wowwood-blue-dark);
  white-space: nowrap;
}
.cookie-consent__btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 767.98px) {

  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__btn {
    width: 100%;
  }
}
