.cookie-consent {
  background-color: #000;
  bottom: 0;
  box-sizing: border-box;
  border: 1px solid #fff;
  color: #fff;
  display: none;
  padding: 20px;
  position: fixed;
  width: 90%;
  height: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  max-width: 900px;
  margin: 0 auto;
}
.cookie-consent * {
  box-sizing: border-box;
}
.cookie-consent-container {
  max-width: 1920px;
  margin: 0 auto;
}
.cookie-consent-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.cookie-consent-col-text {
  flex: 0 0 100%;
  padding: 12px;
  width: 100%;
}
.cookie-consent-col-text p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.cookie-consent-col-button {
  flex: 0 0 100%;
  padding: 12px;
  width: 100%;
}
.cookie-consent-col-button-inner > :not([hidden]) ~ :not([hidden]) {
  margin-bottom: 0;
  margin-top: 16px;
}
.cookie-consent-button {
  background-color: #ededaa;
  border: 1px solid #ededaa;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 12px;
  text-align: center;
  transition-duration: 300ms;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.cookie-consent-button:hover {
  background-color: transparent;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .cookie-consent {
    padding: 30px 50px;
 }
  .cookie-consent-col-button {
    flex: 0 0 auto;
    width: 100%;
 }
  .cookie-consent-col-button-inner {
    display: flex;
    gap: 25px;
    justify-content: center;
 }
  .cookie-consent-col-button-inner > :not([hidden]) ~ :not([hidden]) {
    margin: auto 0;
 }
  .cookie-consent-button {
    width: auto;
    min-width: 255px;
 }
}
