.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px;
  background-color: #1a1b1f;
  border-top: 1px solid #43464d;
  font-family: Lato, sans-serif;
  color: #fff;
}

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

.cookie-consent-text {
  flex: 1 1 420px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-consent-text a {
  display: inline;
  color: #fff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-consent-btn {
  font-family: Orbitron, Verdana, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 12px 20px;
  background-color: transparent;
  color: #fff;
  transition: background-color .3s, color .3s;
}

.cookie-consent-btn:hover {
  background-color: #fff;
  color: #1a1b1f;
}

.cookie-consent-btn.is-primary {
  background-color: #e73645;
  border-color: #e73645;
}

.cookie-consent-btn.is-primary:hover {
  background-color: #c92c39;
  border-color: #c92c39;
  color: #fff;
}

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

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
