.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  z-index: 999999;
  width: 100%;
  padding: 18px;
  color: #ffffff;
  background: rgba(33, 24, 22, .96);
  box-shadow: 0 -10px 35px rgba(0, 0, 0, .25);
  font-family: 'Montserrat', Arial, sans-serif;
}

.cookie-consent *,
.cookie-consent *:before,
.cookie-consent *:after {
  box-sizing: border-box;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cookie-consent__title {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-consent__text {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent__button {
  max-width: 100%;
  min-height: 42px;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
  outline: none;
  color: #ae1710;
  background: #ffffff;
  border-color: #ffffff;
}

.cookie-consent__button--primary {
  border-color: #ae1710;
  background: #ae1710;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus {
  color: #ae1710;
  background: #ffffff;
  border-color: #ffffff;
}

.cookie-consent__settings {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.cookie-consent__settings[hidden] {
  display: none;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__option input {
  margin-top: 4px;
}

.cookie-consent__option strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.cookie-consent__option span {
  display: block;
  color: rgba(255, 255, 255, .76);
}

.cookie-consent__settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.js-cookie-consent-open {
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-consent__actions,
  .cookie-consent__settings-actions {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .cookie-consent {
    padding: 14px;
  }

  .cookie-consent__inner {
    gap: 14px;
  }

  .cookie-consent__actions,
  .cookie-consent__settings-actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 100%;
  }
}
