#cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  padding: 14px 20px;
  background: rgba(40, 40, 40, 0.94);
  color: #f2f2f2;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

#cookie-consent.is-visible {
  display: flex;
}

#cookie-consent p {
  margin: 0;
  flex: 1 1 auto;
  color: #f2f2f2;
  font-size: 14px;
}

#cookie-consent a {
  color: #fff;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

#cookie-consent a:hover {
  color: #ffb3b5;
  border-bottom-color: #ffb3b5;
}

#cookie-consent__ok {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 22px;
  border: none;
  border-radius: 2px;
  background: #e31e24;
  color: #fff;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

#cookie-consent__ok:hover {
  background: #c4181e;
}

@media (max-width: 640px) {
  #cookie-consent {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
  }

  #cookie-consent__ok {
    width: 100%;
  }
}
